From 1217b7df39a9040d0c579727fa9d15ebb78cff4a Mon Sep 17 00:00:00 2001 From: renatofilho Date: Thu, 16 Sep 2010 14:15:12 -0300 Subject: 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 Luciano Wolf --- tests/signals/bug_312.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'tests/signals') 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() -- cgit v1.2.3