aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-09-16 14:15:12 -0300
committerrenatofilho <renato.filho@openbossa.org>2010-09-16 17:12:34 -0300
commit1217b7df39a9040d0c579727fa9d15ebb78cff4a (patch)
treeacc11ab2c9305efa8af50d9fe8755add66f35fa2 /tests/signals
parent551f6b9c7240d1f68e50edcec0fc41969beaef1d (diff)
Update unit test for bug 312.
Now the test verify if is possible connect more then 500 signals, if the signals was disconnected. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/signals')
-rw-r--r--tests/signals/bug_312.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/signals/bug_312.py b/tests/signals/bug_312.py
index 223b4e143..46b64fa10 100644
--- a/tests/signals/bug_312.py
+++ b/tests/signals/bug_312.py
@@ -2,8 +2,16 @@
# -*- coding: utf-8 -*-
import unittest
+import sys
from PySide.QtCore import QObject, SIGNAL
+class Dummy(object):
+ def __init__(self, parent):
+ self._parent = parent
+
+ def callback(self):
+ self._called = True
+
class MultipleSlots(unittest.TestCase):
def myCB(self):
self._count += 1
@@ -17,6 +25,21 @@ class MultipleSlots(unittest.TestCase):
o.emit(SIGNAL("fire()"))
self.assertEqual(self._count, 200)
+ def testDisconnectCleanup(self):
+ for c in range(5):
+ self._count = 0
+ self._senders = []
+ for i in range(200):
+ o = QObject()
+ QObject.connect(o, SIGNAL("fire()"), lambda: self.myCB())
+ self._senders.append(o)
+ o.emit(SIGNAL("fire()"))
+
+ self.assertEqual(self._count, 200)
+
+ #delete all senders will disconnect the signals
+ self._senders = []
+
if __name__ == '__main__':
unittest.main()