From a2f3e249bc0543b522c7d0e516dd07326e3ea7de Mon Sep 17 00:00:00 2001 From: Renato Filho Date: Thu, 26 Aug 2010 15:23:23 -0300 Subject: Fixed slot singature parse function to keep compatibility with QSignal. Fixes bug #319 Reviewer: Luciano Wolf Hugo Parente Lima --- tests/signals/CMakeLists.txt | 1 + tests/signals/bug_319.py | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/signals/bug_319.py (limited to 'tests/signals') diff --git a/tests/signals/CMakeLists.txt b/tests/signals/CMakeLists.txt index a69aa0610..5849dc55c 100644 --- a/tests/signals/CMakeLists.txt +++ b/tests/signals/CMakeLists.txt @@ -1,5 +1,6 @@ PYSIDE_TEST(args_dont_match_test.py) PYSIDE_TEST(bug_311.py) +PYSIDE_TEST(bug_319.py) PYSIDE_TEST(decorators_test.py) PYSIDE_TEST(invalid_callback_test.py) PYSIDE_TEST(lambda_gui_test.py) diff --git a/tests/signals/bug_319.py b/tests/signals/bug_319.py new file mode 100644 index 000000000..692b1bff7 --- /dev/null +++ b/tests/signals/bug_319.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import unittest +from PySide import QtCore +from helper import UsesQCoreApplication + +class Listener(QtCore.QObject): + def __init__(self): + QtCore.QObject.__init__(self, None) + self._phrase = [] + + @QtCore.Slot(tuple) + def listen(self, words): + for w in words: + self._phrase.append(w) + +class Communicate(QtCore.QObject): + # create a new signal on the fly and name it 'speak' + speak = QtCore.Signal(tuple) + +class SignaltoSignalTest(UsesQCoreApplication): + def testBug(self): + someone = Communicate() + someone2 = Listener() + # connect signal and slot + someone.speak.connect(someone2.listen) + # emit 'speak' signal + talk = ("one","two","three") + someone.speak.emit(talk) + self.assertEqual(someone2._phrase, list(talk)) + +if __name__ == '__main__': + unittest.main() + -- cgit v1.2.3