diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:35:42 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:35:43 +0900 |
commit | ee96b8b4ed303ec374e37237f86555754cf2ae60 (patch) | |
tree | 6ad8344f0cf7f15b105be722ca87f77f16ee4c31 /tests/test_gobject.py | |
parent | f29005349e245e146d416b2dc7a8f8a89a2e8a61 (diff) | |
download | pygobject2-ee96b8b4ed303ec374e37237f86555754cf2ae60.tar.gz pygobject2-ee96b8b4ed303ec374e37237f86555754cf2ae60.tar.bz2 pygobject2-ee96b8b4ed303ec374e37237f86555754cf2ae60.zip |
Imported Upstream version 2.27.90
Change-Id: I23ecc791685b18ea66500f2af94287da6bec1436
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'tests/test_gobject.py')
-rw-r--r-- | tests/test_gobject.py | 158 |
1 files changed, 157 insertions, 1 deletions
diff --git a/tests/test_gobject.py b/tests/test_gobject.py index f3cdf29..d628b0e 100644 --- a/tests/test_gobject.py +++ b/tests/test_gobject.py @@ -3,6 +3,7 @@ import unittest import gobject +import sys import testhelper @@ -11,10 +12,16 @@ class TestGObjectAPI(unittest.TestCase): obj = gobject.GObject() self.assertEquals(obj.__module__, 'gobject._gobject') + + +class TestReferenceCounting(unittest.TestCase): + def testRegularObject(self): + obj = gobject.GObject() self.assertEquals(obj.__grefcount__, 1) + obj = gobject.new(gobject.GObject) + self.assertEquals(obj.__grefcount__, 1) -class TestFloating(unittest.TestCase): def testFloatingWithSinkFunc(self): obj = testhelper.FloatingWithSinkFunc() self.assertEquals(obj.__grefcount__, 1) @@ -28,3 +35,152 @@ class TestFloating(unittest.TestCase): obj = gobject.new(testhelper.FloatingWithoutSinkFunc) self.assertEquals(obj.__grefcount__, 1) + + def testOwnedByLibrary(self): + # Upon creation, the refcount of the object should be 2: + # - someone already has a reference on the new object. + # - the python wrapper should hold its own reference. + obj = testhelper.OwnedByLibrary() + self.assertEquals(obj.__grefcount__, 2) + + # We ask the library to release its reference, so the only + # remaining ref should be our wrapper's. Once the wrapper + # will run out of scope, the object will get finalized. + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testOwnedByLibraryOutOfScope(self): + obj = testhelper.OwnedByLibrary() + self.assertEquals(obj.__grefcount__, 2) + + # We are manually taking the object out of scope. This means + # that our wrapper has been freed, and its reference dropped. We + # cannot check it but the refcount should now be 1 (the ref held + # by the library is still there, we didn't call release() + obj = None + + # When we get the object back from the lib, the wrapper is + # re-created, so our refcount will be 2 once again. + obj = testhelper.owned_by_library_get_instance_list()[0] + self.assertEquals(obj.__grefcount__, 2) + + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testOwnedByLibraryUsingGObjectNew(self): + # Upon creation, the refcount of the object should be 2: + # - someone already has a reference on the new object. + # - the python wrapper should hold its own reference. + obj = gobject.new(testhelper.OwnedByLibrary) + self.assertEquals(obj.__grefcount__, 2) + + # We ask the library to release its reference, so the only + # remaining ref should be our wrapper's. Once the wrapper + # will run out of scope, the object will get finalized. + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testOwnedByLibraryOutOfScopeUsingGobjectNew(self): + obj = gobject.new(testhelper.OwnedByLibrary) + self.assertEquals(obj.__grefcount__, 2) + + # We are manually taking the object out of scope. This means + # that our wrapper has been freed, and its reference dropped. We + # cannot check it but the refcount should now be 1 (the ref held + # by the library is still there, we didn't call release() + obj = None + + # When we get the object back from the lib, the wrapper is + # re-created, so our refcount will be 2 once again. + obj = testhelper.owned_by_library_get_instance_list()[0] + self.assertEquals(obj.__grefcount__, 2) + + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testFloatingAndSunk(self): + # Upon creation, the refcount of the object should be 2: + # - someone already has a reference on the new object. + # - the python wrapper should hold its own reference. + obj = testhelper.FloatingAndSunk() + self.assertEquals(obj.__grefcount__, 2) + + # We ask the library to release its reference, so the only + # remaining ref should be our wrapper's. Once the wrapper + # will run out of scope, the object will get finalized. + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testFloatingAndSunkOutOfScope(self): + obj = testhelper.FloatingAndSunk() + self.assertEquals(obj.__grefcount__, 2) + + # We are manually taking the object out of scope. This means + # that our wrapper has been freed, and its reference dropped. We + # cannot check it but the refcount should now be 1 (the ref held + # by the library is still there, we didn't call release() + obj = None + + # When we get the object back from the lib, the wrapper is + # re-created, so our refcount will be 2 once again. + obj = testhelper.floating_and_sunk_get_instance_list()[0] + self.assertEquals(obj.__grefcount__, 2) + + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + + def testFloatingAndSunkUsingGObjectNew(self): + # Upon creation, the refcount of the object should be 2: + # - someone already has a reference on the new object. + # - the python wrapper should hold its own reference. + obj = gobject.new(testhelper.FloatingAndSunk) + self.assertEquals(obj.__grefcount__, 2) + + # We ask the library to release its reference, so the only + # remaining ref should be our wrapper's. Once the wrapper + # will run out of scope, the object will get finalized. + obj.release() + self.assertEquals(obj.__grefcount__, 1) + + def testFloatingAndSunkOutOfScopeUsingGObjectNew(self): + obj = gobject.new(testhelper.FloatingAndSunk) + self.assertEquals(obj.__grefcount__, 2) + + # We are manually taking the object out of scope. This means + # that our wrapper has been freed, and its reference dropped. We + # cannot check it but the refcount should now be 1 (the ref held + # by the library is still there, we didn't call release() + obj = None + + # When we get the object back from the lib, the wrapper is + # re-created, so our refcount will be 2 once again. + obj = testhelper.floating_and_sunk_get_instance_list()[0] + self.assertEquals(obj.__grefcount__, 2) + + obj.release() + self.assertEquals(obj.__grefcount__, 1) + +class A(gobject.GObject): + def __init__(self): + super(A, self).__init__() + +class TestPythonReferenceCounting(unittest.TestCase): + # Newly created instances should alwayshave two references: one for + # the GC, and one for the bound variable in the local scope. + + def testNewInstanceHasTwoRefs(self): + obj = gobject.GObject() + self.assertEquals(sys.getrefcount(obj), 2) + + def testNewInstanceHasTwoRefsUsingGObjectNew(self): + obj = gobject.new(gobject.GObject) + self.assertEquals(sys.getrefcount(obj), 2) + + def testNewSubclassInstanceHasTwoRefs(self): + obj = A() + self.assertEquals(sys.getrefcount(obj), 2) + + def testNewSubclassInstanceHasTwoRefsUsingGObjectNew(self): + obj = gobject.new(A) + self.assertEquals(sys.getrefcount(obj), 2) |