aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/pointerholder_test.py
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-11-24 19:28:00 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-11-24 20:10:05 -0300
commita7ad5fdfc6cef168d538605ee0dec0e14f55f7d1 (patch)
tree82758e57c91efee1e447d716a004caeba5e7a923 /tests/samplebinding/pointerholder_test.py
parentb8db6d3d44eb4e7bdb1e680acb51b91dba64bbc6 (diff)
Added an PyObject* specialization to the Conversion template to
avoid problems when converting PyObjects to C++. Tests where also added for this. Reviewed by Lauro Neto <lauro.neto@openbossa.org>
Diffstat (limited to 'tests/samplebinding/pointerholder_test.py')
-rwxr-xr-xtests/samplebinding/pointerholder_test.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/samplebinding/pointerholder_test.py b/tests/samplebinding/pointerholder_test.py
new file mode 100755
index 000000000..23d901efd
--- /dev/null
+++ b/tests/samplebinding/pointerholder_test.py
@@ -0,0 +1,54 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of the Shiboken Python Bindings Generator project.
+#
+# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+#
+# Contact: PySide team <contact@pyside.org>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public License
+# version 2.1 as published by the Free Software Foundation. Please
+# review the following information to ensure the GNU Lesser General
+# Public License version 2.1 requirements will be met:
+# http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+# #
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA
+
+'''Test cases for a class that holds an arbitraty pointer and is modified to hold an PyObject.'''
+
+import sys
+import unittest
+
+from sample import PointerHolder
+
+class TestPointerHolder(unittest.TestCase):
+ '''Test cases for a class that holds an arbitraty pointer and is modified to hold an PyObject.'''
+
+ def testStoringAndRetrievingPointer(self):
+ ph = PointerHolder('Hello')
+ self.assertEqual(ph.pointer(), 'Hello')
+ a = (1, 2, 3)
+ ph = PointerHolder(a)
+ self.assertEqual(ph.pointer(), a)
+
+ def testReferenceCounting(self):
+ '''Test reference counting when retrieving data with PointerHolder.pointer().'''
+ a = (1, 2, 3)
+ refcnt = sys.getrefcount(a)
+ ph = PointerHolder(a)
+ ptr = ph.pointer()
+ self.assertEqual(sys.getrefcount(a), refcnt + 1)
+
+if __name__ == '__main__':
+ unittest.main()
+