From 4e17f2620f10677e09b9cb93c7ba8efa703b158b Mon Sep 17 00:00:00 2001 From: Hugo Parente Lima Date: Fri, 16 Sep 2011 14:29:25 -0300 Subject: Revert "Implements PSEP-0106 and fixes bug 902 - "Expose Shiboken functionality through a Python module"." This reverts commit bc8448d7fb91733ff08c2a6a3a878702c14a24e0. The PSEP didn't reach the final version yet, so this commit can't be released. --- tests/shibokenmodule/module_test.py | 70 ------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 tests/shibokenmodule/module_test.py (limited to 'tests/shibokenmodule/module_test.py') diff --git a/tests/shibokenmodule/module_test.py b/tests/shibokenmodule/module_test.py deleted file mode 100644 index 565e985aa..000000000 --- a/tests/shibokenmodule/module_test.py +++ /dev/null @@ -1,70 +0,0 @@ -import shiboken -import unittest -from sample import * - -class MultipleInherited (ObjectType, Point): - def __init__(self): - ObjectType.__init__(self) - Point.__init__(self) - -class TestShiboken(unittest.TestCase): - def testIsValid(self): - self.assertTrue(shiboken.isValid(object())) - self.assertTrue(shiboken.isValid(None)) - - bb = BlackBox() - item = ObjectType() - ticket = bb.keepObjectType(item) - bb.disposeObjectType(ticket) - self.assertFalse(shiboken.isValid(item)) - - def testWrapInstance(self): - addr = ObjectType.createObjectType() - obj = shiboken.wrapInstance(addr, ObjectType) - self.assertFalse(shiboken.wasCreatedByPython(obj)) - obj.setObjectName("obj") - self.assertEqual(obj.objectName(), "obj") - self.assertEqual(addr, obj.identifier()) - self.assertFalse(shiboken.wasCreatedByPython(obj)) - - # avoid mem leak =] - bb = BlackBox() - self.assertTrue(shiboken.wasCreatedByPython(bb)) - bb.disposeObjectType(bb.keepObjectType(obj)) - - def testIsOwnedByPython(self): - obj = ObjectType() - self.assertTrue(shiboken.isOwnedByPython(obj)) - p = ObjectType() - obj.setParent(p) - self.assertFalse(shiboken.isOwnedByPython(obj)) - - def testDump(self): - """Just check if dump doesn't crash on certain use cases""" - p = ObjectType() - obj = ObjectType(p) - obj2 = ObjectType(obj) - obj3 = ObjectType(obj) - self.assertEqual(shiboken.dump(None), "Ordinary Python type.") - shiboken.dump(obj) - - model = ObjectModel(p) - v = ObjectView(model, p) - shiboken.dump(v) - - m = MultipleInherited() - shiboken.dump(m) - self.assertEqual(len(shiboken.getCppPointer(m)), 2) - - def testDelete(self): - obj = ObjectType() - child = ObjectType(obj) - self.assertTrue(shiboken.isValid(obj)) - self.assertTrue(shiboken.isValid(child)) - # Note: this test doesn't assure that the object dtor was really called - shiboken.delete(obj) - self.assertFalse(shiboken.isValid(obj)) - self.assertFalse(shiboken.isValid(child)) - -if __name__ == '__main__': - unittest.main() -- cgit v1.2.3