@@ -1,457 +1,465 | |||||
1 | /* |
|
1 | /* | |
2 | * |
|
2 | * | |
3 | * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved. |
|
3 | * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved. | |
4 | * |
|
4 | * | |
5 | * This library is free software; you can redistribute it and/or |
|
5 | * This library is free software; you can redistribute it and/or | |
6 | * modify it under the terms of the GNU Lesser General Public |
|
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either |
|
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2.1 of the License, or (at your option) any later version. |
|
8 | * version 2.1 of the License, or (at your option) any later version. | |
9 | * |
|
9 | * | |
10 | * This library is distributed in the hope that it will be useful, |
|
10 | * This library is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. |
|
13 | * Lesser General Public License for more details. | |
14 | * |
|
14 | * | |
15 | * Further, this software is distributed without any warranty that it is |
|
15 | * Further, this software is distributed without any warranty that it is | |
16 | * free of the rightful claim of any third person regarding infringement |
|
16 | * free of the rightful claim of any third person regarding infringement | |
17 | * or the like. Any license provided herein, whether implied or |
|
17 | * or the like. Any license provided herein, whether implied or | |
18 | * otherwise, applies only to this software file. Patent licenses, if |
|
18 | * otherwise, applies only to this software file. Patent licenses, if | |
19 | * any, provided herein do not apply to combinations of this program with |
|
19 | * any, provided herein do not apply to combinations of this program with | |
20 | * other software, or any other product whatsoever. |
|
20 | * other software, or any other product whatsoever. | |
21 | * |
|
21 | * | |
22 | * You should have received a copy of the GNU Lesser General Public |
|
22 | * You should have received a copy of the GNU Lesser General Public | |
23 | * License along with this library; if not, write to the Free Software |
|
23 | * License along with this library; if not, write to the Free Software | |
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
25 | * |
|
25 | * | |
26 | * Contact information: MeVis Research GmbH, Universitaetsallee 29, |
|
26 | * Contact information: MeVis Research GmbH, Universitaetsallee 29, | |
27 | * 28359 Bremen, Germany or: |
|
27 | * 28359 Bremen, Germany or: | |
28 | * |
|
28 | * | |
29 | * http://www.mevis.de |
|
29 | * http://www.mevis.de | |
30 | * |
|
30 | * | |
31 | */ |
|
31 | */ | |
32 |
|
32 | |||
33 | //---------------------------------------------------------------------------------- |
|
33 | //---------------------------------------------------------------------------------- | |
34 | /*! |
|
34 | /*! | |
35 | // \file PythonQtTests.cpp |
|
35 | // \file PythonQtTests.cpp | |
36 | // \author Florian Link |
|
36 | // \author Florian Link | |
37 | // \author Last changed by $Author: florian $ |
|
37 | // \author Last changed by $Author: florian $ | |
38 | // \date 2006-05 |
|
38 | // \date 2006-05 | |
39 | */ |
|
39 | */ | |
40 | //---------------------------------------------------------------------------------- |
|
40 | //---------------------------------------------------------------------------------- | |
41 |
|
41 | |||
42 | #include "PythonQtTests.h" |
|
42 | #include "PythonQtTests.h" | |
43 |
|
43 | |||
44 | void PythonQtTestSlotCalling::initTestCase() |
|
44 | void PythonQtTestSlotCalling::initTestCase() | |
45 | { |
|
45 | { | |
46 | _helper = new PythonQtTestSlotCallingHelper(this); |
|
46 | _helper = new PythonQtTestSlotCallingHelper(this); | |
47 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); |
|
47 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); | |
48 | main.evalScript("import PythonQt"); |
|
48 | main.evalScript("import PythonQt"); | |
49 | PythonQt::self()->addObject(main, "obj", _helper); |
|
49 | PythonQt::self()->addObject(main, "obj", _helper); | |
50 | } |
|
50 | } | |
51 |
|
51 | |||
52 | void PythonQtTestSlotCalling::init() { |
|
52 | void PythonQtTestSlotCalling::init() { | |
53 |
|
53 | |||
54 | } |
|
54 | } | |
55 |
|
55 | |||
56 | void* polymorphic_ClassB_Handler(const void* ptr, char** className) { |
|
56 | void* polymorphic_ClassB_Handler(const void* ptr, char** className) { | |
57 | ClassB* o = (ClassB*)ptr; |
|
57 | ClassB* o = (ClassB*)ptr; | |
58 | if (o->type()==2) { |
|
58 | if (o->type()==2) { | |
59 | *className = "ClassB"; |
|
59 | *className = "ClassB"; | |
60 | return (ClassB*)o; |
|
60 | return (ClassB*)o; | |
61 | } |
|
61 | } | |
62 | if (o->type()==3) { |
|
62 | if (o->type()==3) { | |
63 | *className = "ClassC"; |
|
63 | *className = "ClassC"; | |
64 | return (ClassC*)o; |
|
64 | return (ClassC*)o; | |
65 | } |
|
65 | } | |
66 | if (o->type()==4) { |
|
66 | if (o->type()==4) { | |
67 | *className = "ClassD"; |
|
67 | *className = "ClassD"; | |
68 | return (ClassD*)o; |
|
68 | return (ClassD*)o; | |
69 | } |
|
69 | } | |
70 | return NULL; |
|
70 | return NULL; | |
71 | } |
|
71 | } | |
72 |
|
72 | |||
73 | void PythonQtTestSlotCalling::testInheritance() { |
|
73 | void PythonQtTestSlotCalling::testInheritance() { | |
74 | PythonQt::self()->registerCPPClass("ClassA",NULL,NULL, PythonQtCreateObject<ClassAWrapper>); |
|
74 | PythonQt::self()->registerCPPClass("ClassA",NULL,NULL, PythonQtCreateObject<ClassAWrapper>); | |
75 | PythonQt::self()->registerCPPClass("ClassB",NULL,NULL, PythonQtCreateObject<ClassBWrapper>); |
|
75 | PythonQt::self()->registerCPPClass("ClassB",NULL,NULL, PythonQtCreateObject<ClassBWrapper>); | |
76 | PythonQt::self()->registerCPPClass("ClassC",NULL,NULL, PythonQtCreateObject<ClassCWrapper>); |
|
76 | PythonQt::self()->registerCPPClass("ClassC",NULL,NULL, PythonQtCreateObject<ClassCWrapper>); | |
77 | PythonQt::self()->addParentClass("ClassC", "ClassA", PythonQtUpcastingOffset<ClassC,ClassA>()); |
|
77 | PythonQt::self()->addParentClass("ClassC", "ClassA", PythonQtUpcastingOffset<ClassC,ClassA>()); | |
78 | PythonQt::self()->addParentClass("ClassC", "ClassB", PythonQtUpcastingOffset<ClassC,ClassB>()); |
|
78 | PythonQt::self()->addParentClass("ClassC", "ClassB", PythonQtUpcastingOffset<ClassC,ClassB>()); | |
79 | PythonQt::self()->registerClass(&ClassD::staticMetaObject, NULL, PythonQtCreateObject<ClassDWrapper>); |
|
79 | PythonQt::self()->registerClass(&ClassD::staticMetaObject, NULL, PythonQtCreateObject<ClassDWrapper>); | |
80 | PythonQt::self()->addParentClass("ClassD", "ClassA", PythonQtUpcastingOffset<ClassD,ClassA>()); |
|
80 | PythonQt::self()->addParentClass("ClassD", "ClassA", PythonQtUpcastingOffset<ClassD,ClassA>()); | |
81 | PythonQt::self()->addParentClass("ClassD", "ClassB", PythonQtUpcastingOffset<ClassD,ClassB>()); |
|
81 | PythonQt::self()->addParentClass("ClassD", "ClassB", PythonQtUpcastingOffset<ClassD,ClassB>()); | |
82 |
|
82 | |||
83 | PythonQtObjectPtr classA = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassA"); |
|
83 | PythonQtObjectPtr classA = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassA"); | |
84 | PythonQtObjectPtr classB = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassB"); |
|
84 | PythonQtObjectPtr classB = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassB"); | |
85 | PythonQtObjectPtr classC = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassC"); |
|
85 | PythonQtObjectPtr classC = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassC"); | |
86 | PythonQtObjectPtr classD = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassD"); |
|
86 | PythonQtObjectPtr classD = PythonQt::self()->getMainModule().getVariable("PythonQt.ClassD"); | |
87 | QVERIFY(classA); |
|
87 | QVERIFY(classA); | |
88 | QVERIFY(classB); |
|
88 | QVERIFY(classB); | |
89 | QVERIFY(classC); |
|
89 | QVERIFY(classC); | |
90 | QVERIFY(classD); |
|
90 | QVERIFY(classD); | |
91 |
|
91 | |||
92 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); |
|
92 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); | |
93 | QEXPECT_FAIL("", "ClassB can not be converted to ClassA", Continue); |
|
93 | QEXPECT_FAIL("", "ClassB can not be converted to ClassA", Continue); | |
94 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); |
|
94 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); | |
95 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); |
|
95 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); | |
96 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); |
|
96 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassAPtr(a).getX()==1: obj.setPassed();\n")); | |
97 |
|
97 | |||
98 | QEXPECT_FAIL("", "ClassA can not be converted to ClassB", Continue); |
|
98 | QEXPECT_FAIL("", "ClassA can not be converted to ClassB", Continue); | |
99 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); |
|
99 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); | |
100 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); |
|
100 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); | |
101 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); |
|
101 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); | |
102 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); |
|
102 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassBPtr(a).getY()==2: obj.setPassed();\n")); | |
103 |
|
103 | |||
104 | QEXPECT_FAIL("", "ClassA can not be converted to ClassC", Continue); |
|
104 | QEXPECT_FAIL("", "ClassA can not be converted to ClassC", Continue); | |
105 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); |
|
105 | QVERIFY(_helper->runScript("a = PythonQt.ClassA();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); | |
106 | QEXPECT_FAIL("", "ClassB can not be converted to ClassC", Continue); |
|
106 | QEXPECT_FAIL("", "ClassB can not be converted to ClassC", Continue); | |
107 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); |
|
107 | QVERIFY(_helper->runScript("a = PythonQt.ClassB();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); | |
108 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); |
|
108 | QVERIFY(_helper->runScript("a = PythonQt.ClassC();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); | |
109 | QEXPECT_FAIL("", "ClassD can not be converted to ClassC", Continue); |
|
109 | QEXPECT_FAIL("", "ClassD can not be converted to ClassC", Continue); | |
110 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); |
|
110 | QVERIFY(_helper->runScript("a = PythonQt.ClassD();\nif obj.getClassCPtr(a).getX()==1: obj.setPassed();\n")); | |
111 |
|
111 | |||
112 | QVERIFY(_helper->runScript("if type(obj.createClassA())==PythonQt.ClassA: obj.setPassed();\n")); |
|
112 | QVERIFY(_helper->runScript("if type(obj.createClassA())==PythonQt.ClassA: obj.setPassed();\n")); | |
113 | QVERIFY(_helper->runScript("if type(obj.createClassB())==PythonQt.ClassB: obj.setPassed();\n")); |
|
113 | QVERIFY(_helper->runScript("if type(obj.createClassB())==PythonQt.ClassB: obj.setPassed();\n")); | |
114 | QVERIFY(_helper->runScript("if type(obj.createClassCAsA())==PythonQt.ClassA: obj.setPassed();\n")); |
|
114 | QVERIFY(_helper->runScript("if type(obj.createClassCAsA())==PythonQt.ClassA: obj.setPassed();\n")); | |
115 | QVERIFY(_helper->runScript("if type(obj.createClassCAsB())==PythonQt.ClassB: obj.setPassed();\n")); |
|
115 | QVERIFY(_helper->runScript("if type(obj.createClassCAsB())==PythonQt.ClassB: obj.setPassed();\n")); | |
116 | QVERIFY(_helper->runScript("if type(obj.createClassD())==PythonQt.ClassD: obj.setPassed();\n")); |
|
116 | QVERIFY(_helper->runScript("if type(obj.createClassD())==PythonQt.ClassD: obj.setPassed();\n")); | |
117 | QVERIFY(_helper->runScript("if type(obj.createClassDAsA())==PythonQt.ClassA: obj.setPassed();\n")); |
|
117 | QVERIFY(_helper->runScript("if type(obj.createClassDAsA())==PythonQt.ClassA: obj.setPassed();\n")); | |
118 | QVERIFY(_helper->runScript("if type(obj.createClassDAsB())==PythonQt.ClassB: obj.setPassed();\n")); |
|
118 | QVERIFY(_helper->runScript("if type(obj.createClassDAsB())==PythonQt.ClassB: obj.setPassed();\n")); | |
119 |
|
119 | |||
120 | PythonQt::self()->addPolymorphicHandler("ClassB", polymorphic_ClassB_Handler); |
|
120 | PythonQt::self()->addPolymorphicHandler("ClassB", polymorphic_ClassB_Handler); | |
121 |
|
121 | |||
122 | QVERIFY(_helper->runScript("if type(obj.getClassBPtr(obj.createClassB()))==PythonQt.ClassB: obj.setPassed();\n")); |
|
122 | QVERIFY(_helper->runScript("if type(obj.getClassBPtr(obj.createClassB()))==PythonQt.ClassB: obj.setPassed();\n")); | |
123 | QVERIFY(_helper->runScript("if type(obj.createClassCAsB())==PythonQt.ClassC: obj.setPassed();\n")); |
|
123 | QVERIFY(_helper->runScript("if type(obj.createClassCAsB())==PythonQt.ClassC: obj.setPassed();\n")); | |
124 | QVERIFY(_helper->runScript("if type(obj.createClassDAsB())==PythonQt.ClassD: obj.setPassed();\n")); |
|
124 | QVERIFY(_helper->runScript("if type(obj.createClassDAsB())==PythonQt.ClassD: obj.setPassed();\n")); | |
125 |
|
125 | |||
126 | } |
|
126 | } | |
127 |
|
127 | |||
128 | void PythonQtTestSlotCalling::testNoArgSlotCall() |
|
128 | void PythonQtTestSlotCalling::testNoArgSlotCall() | |
129 | { |
|
129 | { | |
130 | QVERIFY(_helper->runScript("obj.testNoArg(); obj.setPassed();\n")); |
|
130 | QVERIFY(_helper->runScript("obj.testNoArg(); obj.setPassed();\n")); | |
131 | } |
|
131 | } | |
132 |
|
132 | |||
133 | void PythonQtTestSlotCalling::testOverloadedCall() |
|
133 | void PythonQtTestSlotCalling::testOverloadedCall() | |
134 | { |
|
134 | { | |
135 | QVERIFY(_helper->runScript("obj.overload(False); obj.setPassed();\n", 0)); |
|
135 | QVERIFY(_helper->runScript("obj.overload(False); obj.setPassed();\n", 0)); | |
136 | QVERIFY(_helper->runScript("obj.overload(True); obj.setPassed();\n", 0)); |
|
136 | QVERIFY(_helper->runScript("obj.overload(True); obj.setPassed();\n", 0)); | |
137 | QVERIFY(_helper->runScript("obj.overload(12.5); obj.setPassed();\n", 1)); |
|
137 | QVERIFY(_helper->runScript("obj.overload(12.5); obj.setPassed();\n", 1)); | |
138 | QVERIFY(_helper->runScript("obj.overload(12); obj.setPassed();\n", 2)); |
|
138 | QVERIFY(_helper->runScript("obj.overload(12); obj.setPassed();\n", 2)); | |
139 | QVERIFY(_helper->runScript("obj.overload('test'); obj.setPassed();\n", 3)); |
|
139 | QVERIFY(_helper->runScript("obj.overload('test'); obj.setPassed();\n", 3)); | |
140 | QVERIFY(_helper->runScript("obj.overload(u'test'); obj.setPassed();\n", 3)); |
|
140 | QVERIFY(_helper->runScript("obj.overload(u'test'); obj.setPassed();\n", 3)); | |
141 | QVERIFY(_helper->runScript("obj.overload(('test','test2')); obj.setPassed();\n", 4)); |
|
141 | QVERIFY(_helper->runScript("obj.overload(('test','test2')); obj.setPassed();\n", 4)); | |
142 | QVERIFY(_helper->runScript("obj.overload(obj); obj.setPassed();\n", 5)); |
|
142 | QVERIFY(_helper->runScript("obj.overload(obj); obj.setPassed();\n", 5)); | |
143 | QVERIFY(_helper->runScript("obj.overload(12,13); obj.setPassed();\n", 6)); |
|
143 | QVERIFY(_helper->runScript("obj.overload(12,13); obj.setPassed();\n", 6)); | |
144 | } |
|
144 | } | |
145 |
|
145 | |||
146 | void PythonQtTestSlotCalling::testPyObjectSlotCall() |
|
146 | void PythonQtTestSlotCalling::testPyObjectSlotCall() | |
147 | { |
|
147 | { | |
148 | QVERIFY(_helper->runScript("if obj.getPyObject(PythonQt)==PythonQt: obj.setPassed();\n")); |
|
148 | QVERIFY(_helper->runScript("if obj.getPyObject(PythonQt)==PythonQt: obj.setPassed();\n")); | |
149 | QVERIFY(_helper->runScript("if obj.getPyObject('Hello')=='Hello': obj.setPassed();\n")); |
|
149 | QVERIFY(_helper->runScript("if obj.getPyObject('Hello')=='Hello': obj.setPassed();\n")); | |
150 | QVERIFY(_helper->runScript("if obj.getPyObjectFromVariant(PythonQt)==PythonQt: obj.setPassed();\n")); |
|
150 | QVERIFY(_helper->runScript("if obj.getPyObjectFromVariant(PythonQt)==PythonQt: obj.setPassed();\n")); | |
151 | QVERIFY(_helper->runScript("if obj.getPyObjectFromVariant2(PythonQt)==PythonQt: obj.setPassed();\n")); |
|
151 | QVERIFY(_helper->runScript("if obj.getPyObjectFromVariant2(PythonQt)==PythonQt: obj.setPassed();\n")); | |
152 | // QVERIFY(_helper->runScript("if obj.getPyObjectFromPtr(PythonQt)==PythonQt: obj.setPassed();\n")); |
|
152 | // QVERIFY(_helper->runScript("if obj.getPyObjectFromPtr(PythonQt)==PythonQt: obj.setPassed();\n")); | |
153 | } |
|
153 | } | |
154 |
|
154 | |||
155 | void PythonQtTestSlotCalling::testCPPSlotCalls() |
|
155 | void PythonQtTestSlotCalling::testCPPSlotCalls() | |
156 | { |
|
156 | { | |
157 | // test QColor compare operation |
|
157 | // test QColor compare operation | |
158 | QVERIFY(_helper->runScript("if PythonQt.QtGui.QColor(1,2,3)==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();obj.testNoArg()\n")); |
|
158 | QVERIFY(_helper->runScript("if PythonQt.QtGui.QColor(1,2,3)==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();obj.testNoArg()\n")); | |
159 | QVERIFY(_helper->runScript("if PythonQt.QtGui.QColor(1,2,3)!=PythonQt.QtGui.QColor(3,2,1): obj.setPassed();obj.testNoArg()\n")); |
|
159 | QVERIFY(_helper->runScript("if PythonQt.QtGui.QColor(1,2,3)!=PythonQt.QtGui.QColor(3,2,1): obj.setPassed();obj.testNoArg()\n")); | |
160 |
|
160 | |||
161 | // test passing/returning QColors |
|
161 | // test passing/returning QColors | |
162 | QVERIFY(_helper->runScript("if obj.getQColor1(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); |
|
162 | QVERIFY(_helper->runScript("if obj.getQColor1(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); | |
163 | QVERIFY(_helper->runScript("if obj.getQColor2(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); |
|
163 | QVERIFY(_helper->runScript("if obj.getQColor2(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); | |
164 | QVERIFY(_helper->runScript("if obj.getQColor3(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); |
|
164 | QVERIFY(_helper->runScript("if obj.getQColor3(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); | |
165 | QVERIFY(_helper->runScript("if obj.getQColor4(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); |
|
165 | QVERIFY(_helper->runScript("if obj.getQColor4(PythonQt.QtGui.QColor(1,2,3))==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); | |
166 | QVERIFY(_helper->runScript("if obj.getQColor5()==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); |
|
166 | QVERIFY(_helper->runScript("if obj.getQColor5()==PythonQt.QtGui.QColor(1,2,3): obj.setPassed();\n")); | |
167 | } |
|
167 | } | |
168 |
|
168 | |||
169 | void PythonQtTestSlotCalling::testPODSlotCalls() |
|
169 | void PythonQtTestSlotCalling::testPODSlotCalls() | |
170 | { |
|
170 | { | |
171 | QVERIFY(_helper->runScript("if obj.getBool(False)==False: obj.setPassed();\n")); |
|
171 | QVERIFY(_helper->runScript("if obj.getBool(False)==False: obj.setPassed();\n")); | |
172 | QVERIFY(_helper->runScript("if obj.getBool(True)==True: obj.setPassed();\n")); |
|
172 | QVERIFY(_helper->runScript("if obj.getBool(True)==True: obj.setPassed();\n")); | |
173 | QVERIFY(_helper->runScript("if obj.getInt(-42)==-42: obj.setPassed();\n")); |
|
173 | QVERIFY(_helper->runScript("if obj.getInt(-42)==-42: obj.setPassed();\n")); | |
174 | QVERIFY(_helper->runScript("if obj.getUInt(42)==42: obj.setPassed();\n")); |
|
174 | QVERIFY(_helper->runScript("if obj.getUInt(42)==42: obj.setPassed();\n")); | |
175 | QVERIFY(_helper->runScript("if obj.getShort(-43)==-43: obj.setPassed();\n")); |
|
175 | QVERIFY(_helper->runScript("if obj.getShort(-43)==-43: obj.setPassed();\n")); | |
176 | QVERIFY(_helper->runScript("if obj.getUShort(43)==43: obj.setPassed();\n")); |
|
176 | QVERIFY(_helper->runScript("if obj.getUShort(43)==43: obj.setPassed();\n")); | |
177 | QVERIFY(_helper->runScript("if obj.getChar(-12)==-12: obj.setPassed();\n")); |
|
177 | QVERIFY(_helper->runScript("if obj.getChar(-12)==-12: obj.setPassed();\n")); | |
178 | QVERIFY(_helper->runScript("if obj.getUChar(12)==12: obj.setPassed();\n")); |
|
178 | QVERIFY(_helper->runScript("if obj.getUChar(12)==12: obj.setPassed();\n")); | |
179 | QVERIFY(_helper->runScript("if obj.getLong(-256*256*256)==-256*256*256: obj.setPassed();\n")); |
|
179 | QVERIFY(_helper->runScript("if obj.getLong(-256*256*256)==-256*256*256: obj.setPassed();\n")); | |
180 | QVERIFY(_helper->runScript("if obj.getULong(256*256*256)==256*256*256: obj.setPassed();\n")); |
|
180 | QVERIFY(_helper->runScript("if obj.getULong(256*256*256)==256*256*256: obj.setPassed();\n")); | |
181 | QVERIFY(_helper->runScript("if obj.getLongLong(-42)==-42: obj.setPassed();\n")); |
|
181 | QVERIFY(_helper->runScript("if obj.getLongLong(-42)==-42: obj.setPassed();\n")); | |
182 | QVERIFY(_helper->runScript("if obj.getULongLong(42)==42: obj.setPassed();\n")); |
|
182 | QVERIFY(_helper->runScript("if obj.getULongLong(42)==42: obj.setPassed();\n")); | |
183 | QVERIFY(_helper->runScript("if obj.getQChar(4096)==4096: obj.setPassed();\n")); |
|
183 | QVERIFY(_helper->runScript("if obj.getQChar(4096)==4096: obj.setPassed();\n")); | |
184 | QVERIFY(_helper->runScript("if obj.getDouble(47.12)==47.12: obj.setPassed();\n")); |
|
184 | QVERIFY(_helper->runScript("if obj.getDouble(47.12)==47.12: obj.setPassed();\n")); | |
185 | QVERIFY(_helper->runScript("if abs(obj.getFloat(47.11)-47.11)<0.01: obj.setPassed();\n")); |
|
185 | QVERIFY(_helper->runScript("if abs(obj.getFloat(47.11)-47.11)<0.01: obj.setPassed();\n")); | |
186 | QVERIFY(_helper->runScript("if obj.getQString('testStr')=='testStr': obj.setPassed();\n")); |
|
186 | QVERIFY(_helper->runScript("if obj.getQString('testStr')=='testStr': obj.setPassed();\n")); | |
187 | QVERIFY(_helper->runScript("if obj.getQString('')=='': obj.setPassed();\n")); |
|
187 | QVERIFY(_helper->runScript("if obj.getQString('')=='': obj.setPassed();\n")); | |
188 | QVERIFY(_helper->runScript("if obj.getQStringList(('test','test2'))==('test','test2'): obj.setPassed();\n")); |
|
188 | QVERIFY(_helper->runScript("if obj.getQStringList(('test','test2'))==('test','test2'): obj.setPassed();\n")); | |
189 | } |
|
189 | } | |
190 |
|
190 | |||
191 | void PythonQtTestSlotCalling::testQVariantSlotCalls() |
|
191 | void PythonQtTestSlotCalling::testQVariantSlotCalls() | |
192 | { |
|
192 | { | |
193 | QVERIFY(_helper->runScript("if obj.getQVariant(-42)==-42: obj.setPassed();\n")); |
|
193 | QVERIFY(_helper->runScript("if obj.getQVariant(-42)==-42: obj.setPassed();\n")); | |
194 | QVERIFY(_helper->runScript("if obj.getQVariant('testStr')=='testStr': obj.setPassed();\n")); |
|
194 | QVERIFY(_helper->runScript("if obj.getQVariant('testStr')=='testStr': obj.setPassed();\n")); | |
195 | QVERIFY(_helper->runScript("if obj.getQVariant(('test','test2'))==('test','test2'): obj.setPassed();\n")); |
|
195 | QVERIFY(_helper->runScript("if obj.getQVariant(('test','test2'))==('test','test2'): obj.setPassed();\n")); | |
196 | QVERIFY(_helper->runScript("if obj.getQVariant(('test',12, 47.11))==('test',12, 47.11): obj.setPassed();\n")); |
|
196 | QVERIFY(_helper->runScript("if obj.getQVariant(('test',12, 47.11))==('test',12, 47.11): obj.setPassed();\n")); | |
197 | QVERIFY(_helper->runScript("if obj.getQVariant({'test':'bla','test2':47.11})=={'test':'bla','test2':47.11}: obj.setPassed();\n")); |
|
197 | QVERIFY(_helper->runScript("if obj.getQVariant({'test':'bla','test2':47.11})=={'test':'bla','test2':47.11}: obj.setPassed();\n")); | |
198 | QEXPECT_FAIL("", "Testing to pass a map and compare with a different map", Continue); |
|
198 | QEXPECT_FAIL("", "Testing to pass a map and compare with a different map", Continue); | |
199 | QVERIFY(_helper->runScript("if obj.getQVariant({'test':'bla2','test2':47.11})=={'test':'bla','test2':47.11}: obj.setPassed();\n")); |
|
199 | QVERIFY(_helper->runScript("if obj.getQVariant({'test':'bla2','test2':47.11})=={'test':'bla','test2':47.11}: obj.setPassed();\n")); | |
200 | QVERIFY(_helper->runScript("if obj.getQVariant(obj)==obj: obj.setPassed();\n")); |
|
200 | QVERIFY(_helper->runScript("if obj.getQVariant(obj)==obj: obj.setPassed();\n")); | |
201 | } |
|
201 | } | |
202 |
|
202 | |||
203 | void PythonQtTestSlotCalling::testObjectSlotCalls() |
|
203 | void PythonQtTestSlotCalling::testObjectSlotCalls() | |
204 | { |
|
204 | { | |
205 | QVERIFY(_helper->runScript("if obj.getQObject(obj)==obj: obj.setPassed();\n")); |
|
205 | QVERIFY(_helper->runScript("if obj.getQObject(obj)==obj: obj.setPassed();\n")); | |
206 | QVERIFY(_helper->runScript("if obj.getTestObject(obj)==obj: obj.setPassed();\n")); |
|
206 | QVERIFY(_helper->runScript("if obj.getTestObject(obj)==obj: obj.setPassed();\n")); | |
207 | QVERIFY(_helper->runScript("if obj.getNewObject().className()=='PythonQtTestSlotCallingHelper': obj.setPassed();\n")); |
|
207 | QVERIFY(_helper->runScript("if obj.getNewObject().className()=='PythonQtTestSlotCallingHelper': obj.setPassed();\n")); | |
208 | QEXPECT_FAIL("", "Testing to pass a QObject when another object was expected", Continue); |
|
208 | QEXPECT_FAIL("", "Testing to pass a QObject when another object was expected", Continue); | |
209 | QVERIFY(_helper->runScript("if obj.getQWidget(obj)==obj: obj.setPassed();\n")); |
|
209 | QVERIFY(_helper->runScript("if obj.getQWidget(obj)==obj: obj.setPassed();\n")); | |
210 | } |
|
210 | } | |
211 |
|
211 | |||
212 | void PythonQtTestSlotCalling::testCppFactory() |
|
212 | void PythonQtTestSlotCalling::testCppFactory() | |
213 | { |
|
213 | { | |
214 | PythonQtTestCppFactory* f = new PythonQtTestCppFactory; |
|
214 | PythonQtTestCppFactory* f = new PythonQtTestCppFactory; | |
215 | PythonQt::self()->addInstanceDecorators(new PQCppObjectDecorator); |
|
215 | PythonQt::self()->addInstanceDecorators(new PQCppObjectDecorator); | |
216 |
PythonQt::self()->add |
|
216 | PythonQt::self()->addDecorators(new PQCppObjectNoWrapDecorator); | |
217 |
|
217 | |||
218 | PythonQt::self()->addWrapperFactory(f); |
|
218 | PythonQt::self()->addWrapperFactory(f); | |
219 | QVERIFY(_helper->runScript("if obj.createPQCppObject(12).getHeight()==12: obj.setPassed();\n")); |
|
219 | QVERIFY(_helper->runScript("if obj.createPQCppObject(12).getHeight()==12: obj.setPassed();\n")); | |
220 | QVERIFY(_helper->runScript("if obj.createPQCppObject(12).getH()==12: obj.setPassed();\n")); |
|
220 | QVERIFY(_helper->runScript("if obj.createPQCppObject(12).getH()==12: obj.setPassed();\n")); | |
221 | QVERIFY(_helper->runScript("pq1 = obj.createPQCppObject(12);\n" |
|
221 | QVERIFY(_helper->runScript("pq1 = obj.createPQCppObject(12);\n" | |
222 | "pq2 = obj.createPQCppObject(13);\n" |
|
222 | "pq2 = obj.createPQCppObject(13);\n" | |
223 | "pq3 = obj.getPQCppObject(pq1);\n" |
|
223 | "pq3 = obj.getPQCppObject(pq1);\n" | |
224 | "pq4 = obj.getPQCppObject(pq2);\n" |
|
224 | "pq4 = obj.getPQCppObject(pq2);\n" | |
225 | "if pq3.getHeight()==12 and pq4.getHeight()==13: obj.setPassed();\n" |
|
225 | "if pq3.getHeight()==12 and pq4.getHeight()==13: obj.setPassed();\n" | |
226 | )); |
|
226 | )); | |
227 |
|
227 | |||
228 | QVERIFY(_helper->runScript("if obj.createPQCppObjectNoWrap(12).getH()==12: obj.setPassed();\n")); |
|
228 | QVERIFY(_helper->runScript("if obj.createPQCppObjectNoWrap(12).getH()==12: obj.setPassed();\n")); | |
|
229 | ||||
|
230 | ||||
|
231 | // expect to get strict call to double overload | |||
|
232 | QVERIFY(_helper->runScript("obj.testNoArg()\nfrom PythonQt import PQCppObjectNoWrap\na = PQCppObjectNoWrap(22.2)\nif a.getH()==2: obj.setPassed();\n")); | |||
|
233 | // expect to get un-strict call to double overload | |||
|
234 | QVERIFY(_helper->runScript("obj.testNoArg()\nfrom PythonQt import PQCppObjectNoWrap\na = PQCppObjectNoWrap(22)\nif a.getH()==2: obj.setPassed();\n")); | |||
|
235 | // expect to get strict call to copy constructor overload | |||
|
236 | QVERIFY(_helper->runScript("obj.testNoArg()\nfrom PythonQt import PQCppObjectNoWrap\na = PQCppObjectNoWrap(PQCppObjectNoWrap())\nprint a.getH()\nif a.getH()==1: obj.setPassed();\n")); | |||
229 | } |
|
237 | } | |
230 |
|
238 | |||
231 |
|
239 | |||
232 | void PythonQtTestSlotCalling::testMultiArgsSlotCall() |
|
240 | void PythonQtTestSlotCalling::testMultiArgsSlotCall() | |
233 | { |
|
241 | { | |
234 | QVERIFY(_helper->runScript("if obj.getMultiArgs(12,47.11,'test')==(12,47.11,'test'): obj.setPassed();\n")); |
|
242 | QVERIFY(_helper->runScript("if obj.getMultiArgs(12,47.11,'test')==(12,47.11,'test'): obj.setPassed();\n")); | |
235 | } |
|
243 | } | |
236 |
|
244 | |||
237 | bool PythonQtTestSlotCallingHelper::runScript(const char* script, int expectedOverload) |
|
245 | bool PythonQtTestSlotCallingHelper::runScript(const char* script, int expectedOverload) | |
238 | { |
|
246 | { | |
239 | _called = false; |
|
247 | _called = false; | |
240 | _passed = false; |
|
248 | _passed = false; | |
241 | _calledOverload = -1; |
|
249 | _calledOverload = -1; | |
242 | PyRun_SimpleString(script); |
|
250 | PyRun_SimpleString(script); | |
243 | return _called && _passed && _calledOverload==expectedOverload; |
|
251 | return _called && _passed && _calledOverload==expectedOverload; | |
244 | } |
|
252 | } | |
245 |
|
253 | |||
246 |
|
254 | |||
247 | void PythonQtTestSignalHandler::initTestCase() |
|
255 | void PythonQtTestSignalHandler::initTestCase() | |
248 | { |
|
256 | { | |
249 | _helper = new PythonQtTestSignalHandlerHelper(this); |
|
257 | _helper = new PythonQtTestSignalHandlerHelper(this); | |
250 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); |
|
258 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); | |
251 | PythonQt::self()->addObject(main, "obj", _helper); |
|
259 | PythonQt::self()->addObject(main, "obj", _helper); | |
252 | } |
|
260 | } | |
253 |
|
261 | |||
254 | void PythonQtTestSignalHandler::testSignalHandler() |
|
262 | void PythonQtTestSignalHandler::testSignalHandler() | |
255 | { |
|
263 | { | |
256 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); |
|
264 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); | |
257 | PyRun_SimpleString("def testIntSignal(a):\n if a==12: obj.setPassed();\n"); |
|
265 | PyRun_SimpleString("def testIntSignal(a):\n if a==12: obj.setPassed();\n"); | |
258 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(intSignal(int)), main, "testIntSignal")); |
|
266 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(intSignal(int)), main, "testIntSignal")); | |
259 | QVERIFY(_helper->emitIntSignal(12)); |
|
267 | QVERIFY(_helper->emitIntSignal(12)); | |
260 |
|
268 | |||
261 | PyRun_SimpleString("def testFloatSignal(a):\n if a==12: obj.setPassed();\n"); |
|
269 | PyRun_SimpleString("def testFloatSignal(a):\n if a==12: obj.setPassed();\n"); | |
262 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(floatSignal(float)), main, "testFloatSignal")); |
|
270 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(floatSignal(float)), main, "testFloatSignal")); | |
263 | QVERIFY(_helper->emitFloatSignal(12)); |
|
271 | QVERIFY(_helper->emitFloatSignal(12)); | |
264 |
|
272 | |||
265 | PyRun_SimpleString("def testVariantSignal(a):\n if a==obj.expectedVariant(): obj.setPassed();\n"); |
|
273 | PyRun_SimpleString("def testVariantSignal(a):\n if a==obj.expectedVariant(): obj.setPassed();\n"); | |
266 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(variantSignal(QVariant)), main, "testVariantSignal")); |
|
274 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(variantSignal(QVariant)), main, "testVariantSignal")); | |
267 | _helper->setExpectedVariant(QString("Test")); |
|
275 | _helper->setExpectedVariant(QString("Test")); | |
268 | QVERIFY(_helper->emitVariantSignal(QString("Test"))); |
|
276 | QVERIFY(_helper->emitVariantSignal(QString("Test"))); | |
269 | _helper->setExpectedVariant(12); |
|
277 | _helper->setExpectedVariant(12); | |
270 | QVERIFY(_helper->emitVariantSignal(12)); |
|
278 | QVERIFY(_helper->emitVariantSignal(12)); | |
271 | _helper->setExpectedVariant(QStringList() << "test1" << "test2"); |
|
279 | _helper->setExpectedVariant(QStringList() << "test1" << "test2"); | |
272 | QVERIFY(_helper->emitVariantSignal(QStringList() << "test1" << "test2")); |
|
280 | QVERIFY(_helper->emitVariantSignal(QStringList() << "test1" << "test2")); | |
273 | _helper->setExpectedVariant(qVariantFromValue((QObject*)_helper)); |
|
281 | _helper->setExpectedVariant(qVariantFromValue((QObject*)_helper)); | |
274 | QVERIFY(_helper->emitVariantSignal(qVariantFromValue((QObject*)_helper))); |
|
282 | QVERIFY(_helper->emitVariantSignal(qVariantFromValue((QObject*)_helper))); | |
275 |
|
283 | |||
276 | PyRun_SimpleString("def testComplexSignal(a,b,l,o):\n if a==12 and b==13 and l==('test1','test2') and o == obj: obj.setPassed();\n"); |
|
284 | PyRun_SimpleString("def testComplexSignal(a,b,l,o):\n if a==12 and b==13 and l==('test1','test2') and o == obj: obj.setPassed();\n"); | |
277 | // intentionally not normalized signal: |
|
285 | // intentionally not normalized signal: | |
278 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(complexSignal( int, float , const QStringList , QObject*)), main, "testComplexSignal")); |
|
286 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(complexSignal( int, float , const QStringList , QObject*)), main, "testComplexSignal")); | |
279 | QVERIFY(_helper->emitComplexSignal(12,13,QStringList() << "test1" << "test2", _helper)); |
|
287 | QVERIFY(_helper->emitComplexSignal(12,13,QStringList() << "test1" << "test2", _helper)); | |
280 |
|
288 | |||
281 | // try removing the handler |
|
289 | // try removing the handler | |
282 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(complexSignal( int, float , const QStringList , QObject*)), main, "testComplexSignal")); |
|
290 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(complexSignal( int, float , const QStringList , QObject*)), main, "testComplexSignal")); | |
283 | // and emit the signal, which should fail because the handler was removed |
|
291 | // and emit the signal, which should fail because the handler was removed | |
284 | QVERIFY(!_helper->emitComplexSignal(12,13,QStringList() << "test1" << "test2", _helper)); |
|
292 | QVERIFY(!_helper->emitComplexSignal(12,13,QStringList() << "test1" << "test2", _helper)); | |
285 |
|
293 | |||
286 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(intSignal(int)), main, "testIntSignal")); |
|
294 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(intSignal(int)), main, "testIntSignal")); | |
287 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(floatSignal(float)), main, "testFloatSignal")); |
|
295 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(floatSignal(float)), main, "testFloatSignal")); | |
288 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(variantSignal(QVariant)), main, "testVariantSignal")); |
|
296 | QVERIFY(PythonQt::self()->removeSignalHandler(_helper, SIGNAL(variantSignal(QVariant)), main, "testVariantSignal")); | |
289 |
|
297 | |||
290 | } |
|
298 | } | |
291 |
|
299 | |||
292 | void PythonQtTestSignalHandler::testRecursiveSignalHandler() |
|
300 | void PythonQtTestSignalHandler::testRecursiveSignalHandler() | |
293 | { |
|
301 | { | |
294 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); |
|
302 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); | |
295 | PyRun_SimpleString("def testSignal1(a):\n obj.emitSignal2(a);\n"); |
|
303 | PyRun_SimpleString("def testSignal1(a):\n obj.emitSignal2(a);\n"); | |
296 | PyRun_SimpleString("def testSignal2(a):\n obj.emitSignal3(float(a));\n"); |
|
304 | PyRun_SimpleString("def testSignal2(a):\n obj.emitSignal3(float(a));\n"); | |
297 | PyRun_SimpleString("def testSignal3(a):\n if a==12: obj.setPassed();\n"); |
|
305 | PyRun_SimpleString("def testSignal3(a):\n if a==12: obj.setPassed();\n"); | |
298 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal1(int)), main, "testSignal1")); |
|
306 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal1(int)), main, "testSignal1")); | |
299 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal2(const QString&)), main, "testSignal2")); |
|
307 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal2(const QString&)), main, "testSignal2")); | |
300 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal3(float)), main, "testSignal3")); |
|
308 | QVERIFY(PythonQt::self()->addSignalHandler(_helper, SIGNAL(signal3(float)), main, "testSignal3")); | |
301 | QVERIFY(_helper->emitSignal1(12)); |
|
309 | QVERIFY(_helper->emitSignal1(12)); | |
302 | } |
|
310 | } | |
303 |
|
311 | |||
304 |
|
312 | |||
305 | void PythonQtTestApi::initTestCase() |
|
313 | void PythonQtTestApi::initTestCase() | |
306 | { |
|
314 | { | |
307 | _helper = new PythonQtTestApiHelper(); |
|
315 | _helper = new PythonQtTestApiHelper(); | |
308 | _main = PythonQt::self()->getMainModule(); |
|
316 | _main = PythonQt::self()->getMainModule(); | |
309 | _main.evalScript("import PythonQt"); |
|
317 | _main.evalScript("import PythonQt"); | |
310 | _main.addObject("obj", _helper); |
|
318 | _main.addObject("obj", _helper); | |
311 | } |
|
319 | } | |
312 |
|
320 | |||
313 | bool PythonQtTestApiHelper::call(const QString& function, const QVariantList& args, const QVariant& expectedResult) { |
|
321 | bool PythonQtTestApiHelper::call(const QString& function, const QVariantList& args, const QVariant& expectedResult) { | |
314 | _passed = false; |
|
322 | _passed = false; | |
315 | QVariant r = PythonQt::self()->call(PythonQt::self()->getMainModule(), function, args); |
|
323 | QVariant r = PythonQt::self()->call(PythonQt::self()->getMainModule(), function, args); | |
316 | return _passed && expectedResult==r; |
|
324 | return _passed && expectedResult==r; | |
317 | } |
|
325 | } | |
318 |
|
326 | |||
319 | void PythonQtTestApi::testCall() |
|
327 | void PythonQtTestApi::testCall() | |
320 | { |
|
328 | { | |
321 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); |
|
329 | PythonQtObjectPtr main = PythonQt::self()->getMainModule(); | |
322 |
|
330 | |||
323 | QVERIFY(qVariantValue<QObject*>(PythonQt::self()->getVariable(main, "obj"))==_helper); |
|
331 | QVERIFY(qVariantValue<QObject*>(PythonQt::self()->getVariable(main, "obj"))==_helper); | |
324 |
|
332 | |||
325 | PyRun_SimpleString("def testCallNoArgs():\n obj.setPassed();\n"); |
|
333 | PyRun_SimpleString("def testCallNoArgs():\n obj.setPassed();\n"); | |
326 | QVERIFY(_helper->call("testCallNoArgs", QVariantList(), QVariant())); |
|
334 | QVERIFY(_helper->call("testCallNoArgs", QVariantList(), QVariant())); | |
327 |
|
335 | |||
328 | PyRun_SimpleString("def testCall1(a):\n if a=='test': obj.setPassed();\n return 'test2';\n"); |
|
336 | PyRun_SimpleString("def testCall1(a):\n if a=='test': obj.setPassed();\n return 'test2';\n"); | |
329 | QVERIFY(_helper->call("testCall1", QVariantList() << QVariant("test"), QVariant(QString("test2")))); |
|
337 | QVERIFY(_helper->call("testCall1", QVariantList() << QVariant("test"), QVariant(QString("test2")))); | |
330 |
|
338 | |||
331 | PyRun_SimpleString("def testCall2(a, b):\n if a=='test' and b==obj: obj.setPassed();\n return obj;\n"); |
|
339 | PyRun_SimpleString("def testCall2(a, b):\n if a=='test' and b==obj: obj.setPassed();\n return obj;\n"); | |
332 | QVariant r = PythonQt::self()->call(PythonQt::self()->getMainModule(), "testCall2", QVariantList() << QVariant("test") << qVariantFromValue((QObject*)_helper)); |
|
340 | QVariant r = PythonQt::self()->call(PythonQt::self()->getMainModule(), "testCall2", QVariantList() << QVariant("test") << qVariantFromValue((QObject*)_helper)); | |
333 | QObject* p = qVariantValue<QObject*>(r); |
|
341 | QObject* p = qVariantValue<QObject*>(r); | |
334 | QVERIFY(p==_helper); |
|
342 | QVERIFY(p==_helper); | |
335 | } |
|
343 | } | |
336 |
|
344 | |||
337 | void PythonQtTestApi::testVariables() |
|
345 | void PythonQtTestApi::testVariables() | |
338 | { |
|
346 | { | |
339 | PythonQt::self()->addObject(PythonQt::self()->getMainModule(), "someObject", _helper); |
|
347 | PythonQt::self()->addObject(PythonQt::self()->getMainModule(), "someObject", _helper); | |
340 | QVariant v = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject"); |
|
348 | QVariant v = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject"); | |
341 | QObject* p = qVariantValue<QObject*>(v); |
|
349 | QObject* p = qVariantValue<QObject*>(v); | |
342 | QVERIFY(p==_helper); |
|
350 | QVERIFY(p==_helper); | |
343 | // test for unset variable |
|
351 | // test for unset variable | |
344 | QVariant v2 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject2"); |
|
352 | QVariant v2 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject2"); | |
345 | QVERIFY(v2==QVariant()); |
|
353 | QVERIFY(v2==QVariant()); | |
346 |
|
354 | |||
347 | PythonQt::self()->addVariable(PythonQt::self()->getMainModule(), "someValue", QStringList() << "test1" << "test2"); |
|
355 | PythonQt::self()->addVariable(PythonQt::self()->getMainModule(), "someValue", QStringList() << "test1" << "test2"); | |
348 | QVariant v3 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someValue"); |
|
356 | QVariant v3 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someValue"); | |
349 | QVERIFY(v3 == QVariant(QStringList() << "test1" << "test2")); |
|
357 | QVERIFY(v3 == QVariant(QStringList() << "test1" << "test2")); | |
350 |
|
358 | |||
351 | QStringList l = PythonQt::self()->introspection(PythonQt::self()->getMainModule(), QString::null, PythonQt::Variable); |
|
359 | QStringList l = PythonQt::self()->introspection(PythonQt::self()->getMainModule(), QString::null, PythonQt::Variable); | |
352 | QSet<QString> s; |
|
360 | QSet<QString> s; | |
353 | // check that at least these three variables are set |
|
361 | // check that at least these three variables are set | |
354 | s << "obj" << "someObject" << "someValue"; |
|
362 | s << "obj" << "someObject" << "someValue"; | |
355 | foreach (QString value, s) { |
|
363 | foreach (QString value, s) { | |
356 | QVERIFY(l.indexOf(value)!=-1); |
|
364 | QVERIFY(l.indexOf(value)!=-1); | |
357 | } |
|
365 | } | |
358 |
|
366 | |||
359 | // insert a second time! |
|
367 | // insert a second time! | |
360 | PythonQt::self()->addObject(PythonQt::self()->getMainModule(), "someObject", _helper); |
|
368 | PythonQt::self()->addObject(PythonQt::self()->getMainModule(), "someObject", _helper); | |
361 | // and remove |
|
369 | // and remove | |
362 | PythonQt::self()->removeVariable(PythonQt::self()->getMainModule(), "someObject"); |
|
370 | PythonQt::self()->removeVariable(PythonQt::self()->getMainModule(), "someObject"); | |
363 | // we expect to find no variable |
|
371 | // we expect to find no variable | |
364 | QVariant v4 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject"); |
|
372 | QVariant v4 = PythonQt::self()->getVariable(PythonQt::self()->getMainModule(), "someObject"); | |
365 | QVERIFY(v4==QVariant()); |
|
373 | QVERIFY(v4==QVariant()); | |
366 | } |
|
374 | } | |
367 |
|
375 | |||
368 | void PythonQtTestApi::testImporter() |
|
376 | void PythonQtTestApi::testImporter() | |
369 | { |
|
377 | { | |
370 | PythonQt::self()->setImporter(_helper); |
|
378 | PythonQt::self()->setImporter(_helper); | |
371 | PythonQt::self()->overwriteSysPath(QStringList() << "c:\\test"); |
|
379 | PythonQt::self()->overwriteSysPath(QStringList() << "c:\\test"); | |
372 | PyRun_SimpleString("import bla\n"); |
|
380 | PyRun_SimpleString("import bla\n"); | |
373 | } |
|
381 | } | |
374 |
|
382 | |||
375 | void PythonQtTestApi::testQtNamespace() |
|
383 | void PythonQtTestApi::testQtNamespace() | |
376 | { |
|
384 | { | |
377 | QVERIFY(!_main.getVariable("PythonQt.QtCore.Qt.red").toInt()==Qt::red); |
|
385 | QVERIFY(!_main.getVariable("PythonQt.QtCore.Qt.red").toInt()==Qt::red); | |
378 | QVERIFY(_main.getVariable("PythonQt.QtCore.Qt.FlatCap").toInt()==Qt::FlatCap); |
|
386 | QVERIFY(_main.getVariable("PythonQt.QtCore.Qt.FlatCap").toInt()==Qt::FlatCap); | |
379 | QVERIFY(PythonQtObjectPtr(_main.getVariable("PythonQt.QtCore.Qt.escape"))); |
|
387 | QVERIFY(PythonQtObjectPtr(_main.getVariable("PythonQt.QtCore.Qt.escape"))); | |
380 | } |
|
388 | } | |
381 |
|
389 | |||
382 | void PythonQtTestApi::testQColorDecorators() |
|
390 | void PythonQtTestApi::testQColorDecorators() | |
383 | { |
|
391 | { | |
384 | PythonQtObjectPtr colorClass = _main.getVariable("PythonQt.QtGui.QColor"); |
|
392 | PythonQtObjectPtr colorClass = _main.getVariable("PythonQt.QtGui.QColor"); | |
385 | QVERIFY(colorClass); |
|
393 | QVERIFY(colorClass); | |
386 | // verify that the class is in the correct module |
|
394 | // verify that the class is in the correct module | |
387 | QVERIFY(colorClass.getVariable("__module__") == "PythonQt.QtGui"); |
|
395 | QVERIFY(colorClass.getVariable("__module__") == "PythonQt.QtGui"); | |
388 | // test on Qt module as well: |
|
396 | // test on Qt module as well: | |
389 | colorClass = _main.getVariable("PythonQt.Qt.QColor"); |
|
397 | colorClass = _main.getVariable("PythonQt.Qt.QColor"); | |
390 | QVERIFY(colorClass); |
|
398 | QVERIFY(colorClass); | |
391 | // constructors |
|
399 | // constructors | |
392 | QVERIFY(qVariantValue<QColor>(colorClass.call(QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); |
|
400 | QVERIFY(qVariantValue<QColor>(colorClass.call(QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); | |
393 | QVERIFY(qVariantValue<QColor>(colorClass.call()) == QColor()); |
|
401 | QVERIFY(qVariantValue<QColor>(colorClass.call()) == QColor()); | |
394 | QEXPECT_FAIL("", "Testing non-existing constructor", Continue); |
|
402 | QEXPECT_FAIL("", "Testing non-existing constructor", Continue); | |
395 | QVERIFY(colorClass.call(QVariantList() << 1 << 2) != QVariant()); |
|
403 | QVERIFY(colorClass.call(QVariantList() << 1 << 2) != QVariant()); | |
396 |
|
404 | |||
397 | // check for decorated Cmyk enum value |
|
405 | // check for decorated Cmyk enum value | |
398 | QVERIFY(colorClass.getVariable("Cmyk").toInt() == QColor::Cmyk); |
|
406 | QVERIFY(colorClass.getVariable("Cmyk").toInt() == QColor::Cmyk); | |
399 | PythonQtObjectPtr staticMethod = colorClass.getVariable("fromRgb"); |
|
407 | PythonQtObjectPtr staticMethod = colorClass.getVariable("fromRgb"); | |
400 | QVERIFY(staticMethod); |
|
408 | QVERIFY(staticMethod); | |
401 | // direct call of static method via class |
|
409 | // direct call of static method via class | |
402 | QVERIFY(qVariantValue<QColor>(colorClass.call("fromRgb", QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); |
|
410 | QVERIFY(qVariantValue<QColor>(colorClass.call("fromRgb", QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); | |
403 | // direct call of static method |
|
411 | // direct call of static method | |
404 | QVERIFY(qVariantValue<QColor>(staticMethod.call(QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); |
|
412 | QVERIFY(qVariantValue<QColor>(staticMethod.call(QVariantList() << 1 << 2 << 3)) == QColor(1,2,3)); | |
405 | PythonQtObjectPtr publicMethod = colorClass.getVariable("red"); |
|
413 | PythonQtObjectPtr publicMethod = colorClass.getVariable("red"); | |
406 | QVERIFY(publicMethod); |
|
414 | QVERIFY(publicMethod); | |
407 | // call with passing self in: |
|
415 | // call with passing self in: | |
408 | QVERIFY(colorClass.call("red", QVariantList() << QColor(255,0,0)).toInt() == 255); |
|
416 | QVERIFY(colorClass.call("red", QVariantList() << QColor(255,0,0)).toInt() == 255); | |
409 | } |
|
417 | } | |
410 |
|
418 | |||
411 | QByteArray PythonQtTestApiHelper::readFileAsBytes(const QString& filename) |
|
419 | QByteArray PythonQtTestApiHelper::readFileAsBytes(const QString& filename) | |
412 | { |
|
420 | { | |
413 | QByteArray b; |
|
421 | QByteArray b; | |
414 | return b; |
|
422 | return b; | |
415 | } |
|
423 | } | |
416 |
|
424 | |||
417 | QByteArray PythonQtTestApiHelper::readSourceFile(const QString& filename, bool& ok) |
|
425 | QByteArray PythonQtTestApiHelper::readSourceFile(const QString& filename, bool& ok) | |
418 | { |
|
426 | { | |
419 | QByteArray b; |
|
427 | QByteArray b; | |
420 | ok = true; |
|
428 | ok = true; | |
421 | return b; |
|
429 | return b; | |
422 | } |
|
430 | } | |
423 |
|
431 | |||
424 | bool PythonQtTestApiHelper::exists(const QString& filename) |
|
432 | bool PythonQtTestApiHelper::exists(const QString& filename) | |
425 | { |
|
433 | { | |
426 | return true; |
|
434 | return true; | |
427 | } |
|
435 | } | |
428 |
|
436 | |||
429 | QDateTime PythonQtTestApiHelper::lastModifiedDate(const QString& filename) { |
|
437 | QDateTime PythonQtTestApiHelper::lastModifiedDate(const QString& filename) { | |
430 | return QDateTime::currentDateTime(); |
|
438 | return QDateTime::currentDateTime(); | |
431 | } |
|
439 | } | |
432 |
|
440 | |||
433 |
|
441 | |||
434 | void PythonQtTestApi::testRedirect() |
|
442 | void PythonQtTestApi::testRedirect() | |
435 | { |
|
443 | { | |
436 | connect(PythonQt::self(), SIGNAL(pythonStdOut(const QString&)), _helper, SLOT(stdOut(const QString&))); |
|
444 | connect(PythonQt::self(), SIGNAL(pythonStdOut(const QString&)), _helper, SLOT(stdOut(const QString&))); | |
437 | connect(PythonQt::self(), SIGNAL(pythonStdErr(const QString&)), _helper, SLOT(stdErr(const QString&))); |
|
445 | connect(PythonQt::self(), SIGNAL(pythonStdErr(const QString&)), _helper, SLOT(stdErr(const QString&))); | |
438 | PyRun_SimpleString("print 'test'\n"); |
|
446 | PyRun_SimpleString("print 'test'\n"); | |
439 | } |
|
447 | } | |
440 |
|
448 | |||
441 | void PythonQtTestApiHelper::stdOut(const QString& s) |
|
449 | void PythonQtTestApiHelper::stdOut(const QString& s) | |
442 | { |
|
450 | { | |
443 | qDebug() << s; |
|
451 | qDebug() << s; | |
444 | } |
|
452 | } | |
445 |
|
453 | |||
446 | void PythonQtTestApiHelper::stdErr(const QString& s) |
|
454 | void PythonQtTestApiHelper::stdErr(const QString& s) | |
447 | { |
|
455 | { | |
448 | qDebug() << s; |
|
456 | qDebug() << s; | |
449 | } |
|
457 | } | |
450 |
|
458 | |||
451 | QObject* PythonQtTestCppFactory::create(const QByteArray& name, void *ptr) |
|
459 | QObject* PythonQtTestCppFactory::create(const QByteArray& name, void *ptr) | |
452 | { |
|
460 | { | |
453 | if (name == "PQCppObject") { |
|
461 | if (name == "PQCppObject") { | |
454 | return new PQCppObjectWrapper(ptr); |
|
462 | return new PQCppObjectWrapper(ptr); | |
455 | } |
|
463 | } | |
456 | return NULL; |
|
464 | return NULL; | |
457 | } |
|
465 | } |
@@ -1,423 +1,433 | |||||
1 | #ifndef _PYTHONQTTESTS_H |
|
1 | #ifndef _PYTHONQTTESTS_H | |
2 | #define _PYTHONQTTESTS_H |
|
2 | #define _PYTHONQTTESTS_H | |
3 |
|
3 | |||
4 | /* |
|
4 | /* | |
5 | * |
|
5 | * | |
6 | * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved. |
|
6 | * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved. | |
7 | * |
|
7 | * | |
8 | * This library is free software; you can redistribute it and/or |
|
8 | * This library is free software; you can redistribute it and/or | |
9 | * modify it under the terms of the GNU Lesser General Public |
|
9 | * modify it under the terms of the GNU Lesser General Public | |
10 | * License as published by the Free Software Foundation; either |
|
10 | * License as published by the Free Software Foundation; either | |
11 | * version 2.1 of the License, or (at your option) any later version. |
|
11 | * version 2.1 of the License, or (at your option) any later version. | |
12 | * |
|
12 | * | |
13 | * This library is distributed in the hope that it will be useful, |
|
13 | * This library is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | * Lesser General Public License for more details. |
|
16 | * Lesser General Public License for more details. | |
17 | * |
|
17 | * | |
18 | * Further, this software is distributed without any warranty that it is |
|
18 | * Further, this software is distributed without any warranty that it is | |
19 | * free of the rightful claim of any third person regarding infringement |
|
19 | * free of the rightful claim of any third person regarding infringement | |
20 | * or the like. Any license provided herein, whether implied or |
|
20 | * or the like. Any license provided herein, whether implied or | |
21 | * otherwise, applies only to this software file. Patent licenses, if |
|
21 | * otherwise, applies only to this software file. Patent licenses, if | |
22 | * any, provided herein do not apply to combinations of this program with |
|
22 | * any, provided herein do not apply to combinations of this program with | |
23 | * other software, or any other product whatsoever. |
|
23 | * other software, or any other product whatsoever. | |
24 | * |
|
24 | * | |
25 | * You should have received a copy of the GNU Lesser General Public |
|
25 | * You should have received a copy of the GNU Lesser General Public | |
26 | * License along with this library; if not, write to the Free Software |
|
26 | * License along with this library; if not, write to the Free Software | |
27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
28 | * |
|
28 | * | |
29 | * Contact information: MeVis Research GmbH, Universitaetsallee 29, |
|
29 | * Contact information: MeVis Research GmbH, Universitaetsallee 29, | |
30 | * 28359 Bremen, Germany or: |
|
30 | * 28359 Bremen, Germany or: | |
31 | * |
|
31 | * | |
32 | * http://www.mevis.de |
|
32 | * http://www.mevis.de | |
33 | * |
|
33 | * | |
34 | */ |
|
34 | */ | |
35 |
|
35 | |||
36 | //---------------------------------------------------------------------------------- |
|
36 | //---------------------------------------------------------------------------------- | |
37 | /*! |
|
37 | /*! | |
38 | // \file PythonQtTests.h |
|
38 | // \file PythonQtTests.h | |
39 | // \author Florian Link |
|
39 | // \author Florian Link | |
40 | // \author Last changed by $Author: florian $ |
|
40 | // \author Last changed by $Author: florian $ | |
41 | // \date 2006-05 |
|
41 | // \date 2006-05 | |
42 | */ |
|
42 | */ | |
43 | //---------------------------------------------------------------------------------- |
|
43 | //---------------------------------------------------------------------------------- | |
44 |
|
44 | |||
45 | #include "PythonQt.h" |
|
45 | #include "PythonQt.h" | |
46 | #include <QtTest/QtTest> |
|
46 | #include <QtTest/QtTest> | |
47 | #include <QVariant> |
|
47 | #include <QVariant> | |
48 | #include "PythonQtImportFileInterface.h" |
|
48 | #include "PythonQtImportFileInterface.h" | |
49 | #include "PythonQtCppWrapperFactory.h" |
|
49 | #include "PythonQtCppWrapperFactory.h" | |
50 |
|
50 | |||
51 | class PythonQtTestSlotCallingHelper; |
|
51 | class PythonQtTestSlotCallingHelper; | |
52 | class PythonQtTestApiHelper; |
|
52 | class PythonQtTestApiHelper; | |
53 | class QWidget; |
|
53 | class QWidget; | |
54 |
|
54 | |||
55 | //! test the PythonQt api |
|
55 | //! test the PythonQt api | |
56 | class PythonQtTestApi : public QObject |
|
56 | class PythonQtTestApi : public QObject | |
57 | { |
|
57 | { | |
58 | Q_OBJECT |
|
58 | Q_OBJECT | |
59 |
|
59 | |||
60 | private slots: |
|
60 | private slots: | |
61 | void initTestCase(); |
|
61 | void initTestCase(); | |
62 | void testCall(); |
|
62 | void testCall(); | |
63 | void testVariables(); |
|
63 | void testVariables(); | |
64 | void testRedirect(); |
|
64 | void testRedirect(); | |
65 | void testImporter(); |
|
65 | void testImporter(); | |
66 | void testQColorDecorators(); |
|
66 | void testQColorDecorators(); | |
67 | void testQtNamespace(); |
|
67 | void testQtNamespace(); | |
68 |
|
68 | |||
69 | private: |
|
69 | private: | |
70 | PythonQtTestApiHelper* _helper; |
|
70 | PythonQtTestApiHelper* _helper; | |
71 | PythonQtObjectPtr _main; |
|
71 | PythonQtObjectPtr _main; | |
72 |
|
72 | |||
73 | }; |
|
73 | }; | |
74 |
|
74 | |||
75 | class ClassA { |
|
75 | class ClassA { | |
76 | public: |
|
76 | public: | |
77 | ClassA() { x = 1; } |
|
77 | ClassA() { x = 1; } | |
78 | int x; |
|
78 | int x; | |
79 | }; |
|
79 | }; | |
80 |
|
80 | |||
81 | class ClassB { |
|
81 | class ClassB { | |
82 | public: |
|
82 | public: | |
83 | ClassB() { y = 2; } |
|
83 | ClassB() { y = 2; } | |
84 | int y; |
|
84 | int y; | |
85 |
|
85 | |||
86 | virtual int type() { return 2; } |
|
86 | virtual int type() { return 2; } | |
87 | }; |
|
87 | }; | |
88 |
|
88 | |||
89 | class ClassC : public ClassA, public ClassB { |
|
89 | class ClassC : public ClassA, public ClassB { | |
90 | public: |
|
90 | public: | |
91 | ClassC() { z = 3; } |
|
91 | ClassC() { z = 3; } | |
92 | int z; |
|
92 | int z; | |
93 |
|
93 | |||
94 | virtual int type() { return 3; } |
|
94 | virtual int type() { return 3; } | |
95 | }; |
|
95 | }; | |
96 |
|
96 | |||
97 | class ClassD : public QObject, public ClassA, public ClassB { |
|
97 | class ClassD : public QObject, public ClassA, public ClassB { | |
98 | Q_OBJECT |
|
98 | Q_OBJECT | |
99 | public: |
|
99 | public: | |
100 | ClassD() { d = 4; } |
|
100 | ClassD() { d = 4; } | |
101 | public slots: |
|
101 | public slots: | |
102 | int getD() { return d; } |
|
102 | int getD() { return d; } | |
103 | private: |
|
103 | private: | |
104 | int d; |
|
104 | int d; | |
105 |
|
105 | |||
106 | virtual int type() { return 4; } |
|
106 | virtual int type() { return 4; } | |
107 | }; |
|
107 | }; | |
108 |
|
108 | |||
109 | class ClassAWrapper : public QObject { |
|
109 | class ClassAWrapper : public QObject { | |
110 | Q_OBJECT |
|
110 | Q_OBJECT | |
111 | public slots: |
|
111 | public slots: | |
112 | ClassA* new_ClassA() { return new ClassA; } |
|
112 | ClassA* new_ClassA() { return new ClassA; } | |
113 | int getX(ClassA* o) { return o->x; } |
|
113 | int getX(ClassA* o) { return o->x; } | |
114 | }; |
|
114 | }; | |
115 |
|
115 | |||
116 | class ClassBWrapper : public QObject { |
|
116 | class ClassBWrapper : public QObject { | |
117 | Q_OBJECT |
|
117 | Q_OBJECT | |
118 | public slots: |
|
118 | public slots: | |
119 | ClassB* new_ClassB() { return new ClassB; } |
|
119 | ClassB* new_ClassB() { return new ClassB; } | |
120 | int getY(ClassB* o) { return o->y; } |
|
120 | int getY(ClassB* o) { return o->y; } | |
121 | }; |
|
121 | }; | |
122 |
|
122 | |||
123 | class ClassCWrapper : public QObject { |
|
123 | class ClassCWrapper : public QObject { | |
124 | Q_OBJECT |
|
124 | Q_OBJECT | |
125 | public slots: |
|
125 | public slots: | |
126 | ClassC* new_ClassC() { return new ClassC; } |
|
126 | ClassC* new_ClassC() { return new ClassC; } | |
127 | int getZ(ClassC* o) { return o->z; } |
|
127 | int getZ(ClassC* o) { return o->z; } | |
128 | }; |
|
128 | }; | |
129 |
|
129 | |||
130 | class ClassDWrapper : public QObject { |
|
130 | class ClassDWrapper : public QObject { | |
131 | Q_OBJECT |
|
131 | Q_OBJECT | |
132 | public slots: |
|
132 | public slots: | |
133 | ClassD* new_ClassD() { return new ClassD; } |
|
133 | ClassD* new_ClassD() { return new ClassD; } | |
134 | }; |
|
134 | }; | |
135 |
|
135 | |||
136 |
|
136 | |||
137 | //! test the PythonQt api (helper) |
|
137 | //! test the PythonQt api (helper) | |
138 | class PythonQtTestApiHelper : public QObject , public PythonQtImportFileInterface |
|
138 | class PythonQtTestApiHelper : public QObject , public PythonQtImportFileInterface | |
139 | { |
|
139 | { | |
140 | Q_OBJECT |
|
140 | Q_OBJECT | |
141 | public: |
|
141 | public: | |
142 | PythonQtTestApiHelper() { |
|
142 | PythonQtTestApiHelper() { | |
143 | }; |
|
143 | }; | |
144 |
|
144 | |||
145 | bool call(const QString& function, const QVariantList& args, const QVariant& expectedResult); |
|
145 | bool call(const QString& function, const QVariantList& args, const QVariant& expectedResult); | |
146 |
|
146 | |||
147 | virtual QByteArray readFileAsBytes(const QString& filename); |
|
147 | virtual QByteArray readFileAsBytes(const QString& filename); | |
148 |
|
148 | |||
149 | virtual QByteArray readSourceFile(const QString& filename, bool& ok); |
|
149 | virtual QByteArray readSourceFile(const QString& filename, bool& ok); | |
150 |
|
150 | |||
151 | virtual bool exists(const QString& filename); |
|
151 | virtual bool exists(const QString& filename); | |
152 |
|
152 | |||
153 | virtual QDateTime lastModifiedDate(const QString& filename); |
|
153 | virtual QDateTime lastModifiedDate(const QString& filename); | |
154 |
|
154 | |||
155 | public slots: |
|
155 | public slots: | |
156 |
|
156 | |||
157 | //! call to set that the test has passed (from Python!) |
|
157 | //! call to set that the test has passed (from Python!) | |
158 | void setPassed() { _passed = true; } |
|
158 | void setPassed() { _passed = true; } | |
159 |
|
159 | |||
160 | void stdOut(const QString&); |
|
160 | void stdOut(const QString&); | |
161 | void stdErr(const QString&); |
|
161 | void stdErr(const QString&); | |
162 |
|
162 | |||
163 | private: |
|
163 | private: | |
164 | bool _passed; |
|
164 | bool _passed; | |
165 | }; |
|
165 | }; | |
166 |
|
166 | |||
167 |
|
167 | |||
168 | // test implementation of the wrapper factory |
|
168 | // test implementation of the wrapper factory | |
169 | class PythonQtTestCppFactory : public PythonQtCppWrapperFactory |
|
169 | class PythonQtTestCppFactory : public PythonQtCppWrapperFactory | |
170 | { |
|
170 | { | |
171 | public: |
|
171 | public: | |
172 | virtual QObject* create(const QByteArray& name, void *ptr); |
|
172 | virtual QObject* create(const QByteArray& name, void *ptr); | |
173 | }; |
|
173 | }; | |
174 |
|
174 | |||
175 | //! an cpp object to be wrapped |
|
175 | //! an cpp object to be wrapped | |
176 | class PQCppObject { |
|
176 | class PQCppObject { | |
177 |
|
177 | |||
178 | public: |
|
178 | public: | |
179 | PQCppObject(int h) { _height = h; } |
|
179 | PQCppObject(int h) { _height = h; } | |
180 |
|
180 | |||
181 | int getHeight() { return _height; } |
|
181 | int getHeight() { return _height; } | |
182 | void setHeight(int h) { _height = h; } |
|
182 | void setHeight(int h) { _height = h; } | |
183 |
|
183 | |||
184 | private: |
|
184 | private: | |
185 | int _height; |
|
185 | int _height; | |
186 | }; |
|
186 | }; | |
187 |
|
187 | |||
188 | //! an qobject that wraps the existing cpp object |
|
188 | //! an qobject that wraps the existing cpp object | |
189 | class PQCppObjectWrapper : public QObject { |
|
189 | class PQCppObjectWrapper : public QObject { | |
190 | Q_OBJECT |
|
190 | Q_OBJECT | |
191 | public: |
|
191 | public: | |
192 | PQCppObjectWrapper(void* ptr) { |
|
192 | PQCppObjectWrapper(void* ptr) { | |
193 | _ptr = (PQCppObject*)ptr; |
|
193 | _ptr = (PQCppObject*)ptr; | |
194 | } |
|
194 | } | |
195 |
|
195 | |||
196 | public slots: |
|
196 | public slots: | |
197 | int getHeight() { return _ptr->getHeight(); } |
|
197 | int getHeight() { return _ptr->getHeight(); } | |
198 | void setHeight(int h) { _ptr->setHeight(h); } |
|
198 | void setHeight(int h) { _ptr->setHeight(h); } | |
199 |
|
199 | |||
200 | private: |
|
200 | private: | |
201 | PQCppObject* _ptr; |
|
201 | PQCppObject* _ptr; | |
202 | }; |
|
202 | }; | |
203 |
|
203 | |||
204 | class PQCppObjectDecorator : public QObject { |
|
204 | class PQCppObjectDecorator : public QObject { | |
205 | Q_OBJECT |
|
205 | Q_OBJECT | |
206 | public slots: |
|
206 | public slots: | |
207 | int getH(PQCppObject* obj) { return obj->getHeight(); } |
|
207 | int getH(PQCppObject* obj) { return obj->getHeight(); } | |
208 |
|
208 | |||
209 | }; |
|
209 | }; | |
210 |
|
210 | |||
211 | //! an cpp object to be wrapped by decorators only |
|
211 | //! an cpp object to be wrapped by decorators only | |
212 | class PQCppObjectNoWrap { |
|
212 | class PQCppObjectNoWrap { | |
213 |
|
213 | |||
214 | public: |
|
214 | public: | |
215 | PQCppObjectNoWrap(int h) { _height = h; } |
|
215 | PQCppObjectNoWrap(int h) { _height = h; } | |
216 |
|
216 | |||
217 | int getHeight() { return _height; } |
|
217 | int getHeight() { return _height; } | |
218 | void setHeight(int h) { _height = h; } |
|
218 | void setHeight(int h) { _height = h; } | |
219 |
|
219 | |||
220 | private: |
|
220 | private: | |
221 | int _height; |
|
221 | int _height; | |
222 | }; |
|
222 | }; | |
223 |
|
223 | |||
224 | class PQCppObjectNoWrapDecorator : public QObject { |
|
224 | class PQCppObjectNoWrapDecorator : public QObject { | |
225 | Q_OBJECT |
|
225 | Q_OBJECT | |
226 | public slots: |
|
226 | public slots: | |
|
227 | PQCppObjectNoWrap* new_PQCppObjectNoWrap() { | |||
|
228 | return new PQCppObjectNoWrap(0); | |||
|
229 | } | |||
|
230 | PQCppObjectNoWrap* new_PQCppObjectNoWrap(const PQCppObjectNoWrap& other) { | |||
|
231 | return new PQCppObjectNoWrap(1); | |||
|
232 | } | |||
|
233 | PQCppObjectNoWrap* new_PQCppObjectNoWrap(double value) { | |||
|
234 | return new PQCppObjectNoWrap(2); | |||
|
235 | } | |||
|
236 | ||||
227 | int getH(PQCppObjectNoWrap* obj) { return obj->getHeight(); } |
|
237 | int getH(PQCppObjectNoWrap* obj) { return obj->getHeight(); } | |
228 |
|
238 | |||
229 | }; |
|
239 | }; | |
230 |
|
240 | |||
231 |
|
241 | |||
232 | //! test the calling of slots |
|
242 | //! test the calling of slots | |
233 | class PythonQtTestSlotCalling : public QObject |
|
243 | class PythonQtTestSlotCalling : public QObject | |
234 | { |
|
244 | { | |
235 | Q_OBJECT |
|
245 | Q_OBJECT | |
236 |
|
246 | |||
237 | private slots: |
|
247 | private slots: | |
238 | void initTestCase(); |
|
248 | void initTestCase(); | |
239 | void init(); |
|
249 | void init(); | |
240 |
|
250 | |||
241 | void testNoArgSlotCall(); |
|
251 | void testNoArgSlotCall(); | |
242 | void testPODSlotCalls(); |
|
252 | void testPODSlotCalls(); | |
243 | void testCPPSlotCalls(); |
|
253 | void testCPPSlotCalls(); | |
244 | void testQVariantSlotCalls(); |
|
254 | void testQVariantSlotCalls(); | |
245 | void testObjectSlotCalls(); |
|
255 | void testObjectSlotCalls(); | |
246 | void testMultiArgsSlotCall(); |
|
256 | void testMultiArgsSlotCall(); | |
247 | void testPyObjectSlotCall(); |
|
257 | void testPyObjectSlotCall(); | |
248 | void testOverloadedCall(); |
|
258 | void testOverloadedCall(); | |
249 | void testCppFactory(); |
|
259 | void testCppFactory(); | |
250 | void testInheritance(); |
|
260 | void testInheritance(); | |
251 |
|
261 | |||
252 | private: |
|
262 | private: | |
253 | PythonQtTestSlotCallingHelper* _helper; |
|
263 | PythonQtTestSlotCallingHelper* _helper; | |
254 |
|
264 | |||
255 | }; |
|
265 | }; | |
256 |
|
266 | |||
257 | //! helper class for slot calling test |
|
267 | //! helper class for slot calling test | |
258 | class PythonQtTestSlotCallingHelper : public QObject |
|
268 | class PythonQtTestSlotCallingHelper : public QObject | |
259 | { |
|
269 | { | |
260 | Q_OBJECT |
|
270 | Q_OBJECT | |
261 | public: |
|
271 | public: | |
262 | PythonQtTestSlotCallingHelper(PythonQtTestSlotCalling* test) { |
|
272 | PythonQtTestSlotCallingHelper(PythonQtTestSlotCalling* test) { | |
263 | _test = test; |
|
273 | _test = test; | |
264 | }; |
|
274 | }; | |
265 |
|
275 | |||
266 | bool runScript(const char* script, int expectedOverload = -1); |
|
276 | bool runScript(const char* script, int expectedOverload = -1); | |
267 |
|
277 | |||
268 | public slots: |
|
278 | public slots: | |
269 |
|
279 | |||
270 | //! call to set that the test has passed (from Python!) |
|
280 | //! call to set that the test has passed (from Python!) | |
271 | void setPassed() { _passed = true; } |
|
281 | void setPassed() { _passed = true; } | |
272 |
|
282 | |||
273 | //! no arguments, no return value: |
|
283 | //! no arguments, no return value: | |
274 | void testNoArg() { _called = true; } |
|
284 | void testNoArg() { _called = true; } | |
275 |
|
285 | |||
276 | //! overload test! |
|
286 | //! overload test! | |
277 | void overload(bool a) { _calledOverload = 0; _called = true; } |
|
287 | void overload(bool a) { _calledOverload = 0; _called = true; } | |
278 | void overload(float a) { _calledOverload = 1; _called = true;} |
|
288 | void overload(float a) { _calledOverload = 1; _called = true;} | |
279 | void overload(int a) { _calledOverload = 2; _called = true;} |
|
289 | void overload(int a) { _calledOverload = 2; _called = true;} | |
280 | void overload(const QString& str) { _calledOverload = 3; _called = true;} |
|
290 | void overload(const QString& str) { _calledOverload = 3; _called = true;} | |
281 | void overload(const QStringList& str) { _calledOverload = 4; _called = true;} |
|
291 | void overload(const QStringList& str) { _calledOverload = 4; _called = true;} | |
282 | void overload(QObject* str) { _calledOverload = 5; _called = true;} |
|
292 | void overload(QObject* str) { _calledOverload = 5; _called = true;} | |
283 | void overload(float a, int b) { _calledOverload = 6; _called = true;} |
|
293 | void overload(float a, int b) { _calledOverload = 6; _called = true;} | |
284 |
|
294 | |||
285 | //! POD values: |
|
295 | //! POD values: | |
286 | int getInt(int a) { _called = true; return a; } |
|
296 | int getInt(int a) { _called = true; return a; } | |
287 | unsigned int getUInt(unsigned int a) { _called = true; return a; } |
|
297 | unsigned int getUInt(unsigned int a) { _called = true; return a; } | |
288 | bool getBool(bool a) { _called = true; return a; } |
|
298 | bool getBool(bool a) { _called = true; return a; } | |
289 | char getChar(char a) { _called = true; return a; } |
|
299 | char getChar(char a) { _called = true; return a; } | |
290 | unsigned char getUChar(unsigned char a) { _called = true; return a; } |
|
300 | unsigned char getUChar(unsigned char a) { _called = true; return a; } | |
291 | long getLong(long a) { _called = true; return a; } |
|
301 | long getLong(long a) { _called = true; return a; } | |
292 | unsigned long getULong(unsigned long a) { _called = true; return a; } |
|
302 | unsigned long getULong(unsigned long a) { _called = true; return a; } | |
293 | short getShort(short a) { _called = true; return a; } |
|
303 | short getShort(short a) { _called = true; return a; } | |
294 | unsigned short getUShort(unsigned short a) { _called = true; return a; } |
|
304 | unsigned short getUShort(unsigned short a) { _called = true; return a; } | |
295 | QChar getQChar(QChar a) { _called = true; return a; } |
|
305 | QChar getQChar(QChar a) { _called = true; return a; } | |
296 | qint64 getLongLong(qint64 a) { _called = true; return a; } |
|
306 | qint64 getLongLong(qint64 a) { _called = true; return a; } | |
297 | quint64 getULongLong(quint64 a) { _called = true; return a; } |
|
307 | quint64 getULongLong(quint64 a) { _called = true; return a; } | |
298 | double getDouble(double d) { _called = true; return d; } |
|
308 | double getDouble(double d) { _called = true; return d; } | |
299 | float getFloat(float d) { _called = true; return d; } |
|
309 | float getFloat(float d) { _called = true; return d; } | |
300 |
|
310 | |||
301 | //! important qt types: |
|
311 | //! important qt types: | |
302 | QString getQString(const QString& s) { _called = true; return s; } |
|
312 | QString getQString(const QString& s) { _called = true; return s; } | |
303 | QStringList getQStringList(const QStringList& l) { _called = true; return l; } |
|
313 | QStringList getQStringList(const QStringList& l) { _called = true; return l; } | |
304 | QVariant getQVariant(const QVariant& var) { _called = true; return var; } |
|
314 | QVariant getQVariant(const QVariant& var) { _called = true; return var; } | |
305 |
|
315 | |||
306 | // QColor as representative for C++ value classes |
|
316 | // QColor as representative for C++ value classes | |
307 | QColor getQColor1(const QColor& var) { _called = true; return var; } |
|
317 | QColor getQColor1(const QColor& var) { _called = true; return var; } | |
308 | QColor getQColor2(QColor& var) { _called = true; return var; } |
|
318 | QColor getQColor2(QColor& var) { _called = true; return var; } | |
309 | QColor getQColor3(QColor* col) { _called = true; return *col; } |
|
319 | QColor getQColor3(QColor* col) { _called = true; return *col; } | |
310 | QColor getQColor4(const QVariant& color) { _called = true; return qVariantValue<QColor>(color); } |
|
320 | QColor getQColor4(const QVariant& color) { _called = true; return qVariantValue<QColor>(color); } | |
311 | QColor* getQColor5() { _called = true; static QColor c(1,2,3); return &c; } |
|
321 | QColor* getQColor5() { _called = true; static QColor c(1,2,3); return &c; } | |
312 |
|
322 | |||
313 | PyObject* getPyObject(PyObject* obj) { _called = true; return obj; } |
|
323 | PyObject* getPyObject(PyObject* obj) { _called = true; return obj; } | |
314 | PyObject* getPyObjectFromVariant(const QVariant& val) { _called = true; return PythonQtObjectPtr(val); }; |
|
324 | PyObject* getPyObjectFromVariant(const QVariant& val) { _called = true; return PythonQtObjectPtr(val); }; | |
315 | QVariant getPyObjectFromVariant2(const QVariant& val) { _called = true; return val; }; |
|
325 | QVariant getPyObjectFromVariant2(const QVariant& val) { _called = true; return val; }; | |
316 | // this does not yet work but is not required to work: |
|
326 | // this does not yet work but is not required to work: | |
317 | //PyObject* getPyObjectFromPtr(const PythonQtObjectPtr& val) { _called = true; return val; }; |
|
327 | //PyObject* getPyObjectFromPtr(const PythonQtObjectPtr& val) { _called = true; return val; }; | |
318 |
|
328 | |||
319 | //! testing pointer passing |
|
329 | //! testing pointer passing | |
320 | PythonQtTestSlotCallingHelper* getTestObject(PythonQtTestSlotCallingHelper* obj) { _called = true; return obj; } |
|
330 | PythonQtTestSlotCallingHelper* getTestObject(PythonQtTestSlotCallingHelper* obj) { _called = true; return obj; } | |
321 | //! testing inheritance checking |
|
331 | //! testing inheritance checking | |
322 | QObject* getQObject(QObject* obj) { _called = true; return obj; } |
|
332 | QObject* getQObject(QObject* obj) { _called = true; return obj; } | |
323 | QWidget* getQWidget(QWidget* obj) { _called = true; return obj; } |
|
333 | QWidget* getQWidget(QWidget* obj) { _called = true; return obj; } | |
324 | //! testing if an object that was not wrapped is wrapped earlier is wrapped correctly |
|
334 | //! testing if an object that was not wrapped is wrapped earlier is wrapped correctly | |
325 | QObject* getNewObject() { _called = true; return new PythonQtTestSlotCallingHelper(NULL); } |
|
335 | QObject* getNewObject() { _called = true; return new PythonQtTestSlotCallingHelper(NULL); } | |
326 |
|
336 | |||
327 | QVariantList getMultiArgs(int a, double b, const QString& str) { _called = true; return (QVariantList() << a << b << str); } |
|
337 | QVariantList getMultiArgs(int a, double b, const QString& str) { _called = true; return (QVariantList() << a << b << str); } | |
328 |
|
338 | |||
329 | //! cpp wrapper factory test |
|
339 | //! cpp wrapper factory test | |
330 | PQCppObject* createPQCppObject(int h) { _called = true; return new PQCppObject(h); } |
|
340 | PQCppObject* createPQCppObject(int h) { _called = true; return new PQCppObject(h); } | |
331 |
|
341 | |||
332 | //! cpp wrapper factory test |
|
342 | //! cpp wrapper factory test | |
333 | PQCppObject* getPQCppObject(PQCppObject* p) { _called = true; return p; } |
|
343 | PQCppObject* getPQCppObject(PQCppObject* p) { _called = true; return p; } | |
334 |
|
344 | |||
335 | //! cpp wrapper factory test |
|
345 | //! cpp wrapper factory test | |
336 | PQCppObjectNoWrap* createPQCppObjectNoWrap(int h) { _called = true; return new PQCppObjectNoWrap(h); } |
|
346 | PQCppObjectNoWrap* createPQCppObjectNoWrap(int h) { _called = true; return new PQCppObjectNoWrap(h); } | |
337 |
|
347 | |||
338 | //! cpp wrapper factory test |
|
348 | //! cpp wrapper factory test | |
339 | PQCppObjectNoWrap* getPQCppObjectNoWrap(PQCppObjectNoWrap* p) { _called = true; return p; } |
|
349 | PQCppObjectNoWrap* getPQCppObjectNoWrap(PQCppObjectNoWrap* p) { _called = true; return p; } | |
340 |
|
350 | |||
341 | ClassA* getClassAPtr(ClassA* o) { _called = true; return o; } |
|
351 | ClassA* getClassAPtr(ClassA* o) { _called = true; return o; } | |
342 | ClassB* getClassBPtr(ClassB* o) { _called = true; return o; } |
|
352 | ClassB* getClassBPtr(ClassB* o) { _called = true; return o; } | |
343 | ClassC* getClassCPtr(ClassC* o) { _called = true; return o; } |
|
353 | ClassC* getClassCPtr(ClassC* o) { _called = true; return o; } | |
344 | ClassD* getClassDPtr(ClassD* o) { _called = true; return o; } |
|
354 | ClassD* getClassDPtr(ClassD* o) { _called = true; return o; } | |
345 |
|
355 | |||
346 | ClassA* createClassA() { _called = true; return new ClassA; } |
|
356 | ClassA* createClassA() { _called = true; return new ClassA; } | |
347 | ClassB* createClassB() { _called = true; return new ClassB; } |
|
357 | ClassB* createClassB() { _called = true; return new ClassB; } | |
348 | ClassC* createClassC() { _called = true; return new ClassC; } |
|
358 | ClassC* createClassC() { _called = true; return new ClassC; } | |
349 | ClassD* createClassD() { _called = true; return new ClassD; } |
|
359 | ClassD* createClassD() { _called = true; return new ClassD; } | |
350 | ClassA* createClassCAsA() { _called = true; return new ClassC; } |
|
360 | ClassA* createClassCAsA() { _called = true; return new ClassC; } | |
351 | ClassB* createClassCAsB() { _called = true; return new ClassC; } |
|
361 | ClassB* createClassCAsB() { _called = true; return new ClassC; } | |
352 | ClassA* createClassDAsA() { _called = true; return new ClassD; } |
|
362 | ClassA* createClassDAsA() { _called = true; return new ClassD; } | |
353 | ClassB* createClassDAsB() { _called = true; return new ClassD; } |
|
363 | ClassB* createClassDAsB() { _called = true; return new ClassD; } | |
354 |
|
364 | |||
355 | private: |
|
365 | private: | |
356 | bool _passed; |
|
366 | bool _passed; | |
357 | bool _called; |
|
367 | bool _called; | |
358 | int _calledOverload; |
|
368 | int _calledOverload; | |
359 | PythonQtTestSlotCalling* _test; |
|
369 | PythonQtTestSlotCalling* _test; | |
360 | }; |
|
370 | }; | |
361 |
|
371 | |||
362 | class PythonQtTestSignalHandlerHelper; |
|
372 | class PythonQtTestSignalHandlerHelper; | |
363 |
|
373 | |||
364 | //! test the connection of signals to python |
|
374 | //! test the connection of signals to python | |
365 | class PythonQtTestSignalHandler : public QObject |
|
375 | class PythonQtTestSignalHandler : public QObject | |
366 | { |
|
376 | { | |
367 | Q_OBJECT |
|
377 | Q_OBJECT | |
368 |
|
378 | |||
369 | private slots: |
|
379 | private slots: | |
370 | void initTestCase(); |
|
380 | void initTestCase(); | |
371 |
|
381 | |||
372 | void testSignalHandler(); |
|
382 | void testSignalHandler(); | |
373 | void testRecursiveSignalHandler(); |
|
383 | void testRecursiveSignalHandler(); | |
374 |
|
384 | |||
375 | private: |
|
385 | private: | |
376 | PythonQtTestSignalHandlerHelper* _helper; |
|
386 | PythonQtTestSignalHandlerHelper* _helper; | |
377 |
|
387 | |||
378 | }; |
|
388 | }; | |
379 |
|
389 | |||
380 | //! helper class for signal testing |
|
390 | //! helper class for signal testing | |
381 | class PythonQtTestSignalHandlerHelper : public QObject |
|
391 | class PythonQtTestSignalHandlerHelper : public QObject | |
382 | { |
|
392 | { | |
383 | Q_OBJECT |
|
393 | Q_OBJECT | |
384 |
|
394 | |||
385 | public: |
|
395 | public: | |
386 | PythonQtTestSignalHandlerHelper(PythonQtTestSignalHandler* test) { |
|
396 | PythonQtTestSignalHandlerHelper(PythonQtTestSignalHandler* test) { | |
387 | _test = test; |
|
397 | _test = test; | |
388 | }; |
|
398 | }; | |
389 |
|
399 | |||
390 | public slots: |
|
400 | public slots: | |
391 | void setPassed() { _passed = true; } |
|
401 | void setPassed() { _passed = true; } | |
392 |
|
402 | |||
393 | bool emitIntSignal(int a) { _passed = false; emit intSignal(a); return _passed; }; |
|
403 | bool emitIntSignal(int a) { _passed = false; emit intSignal(a); return _passed; }; | |
394 | bool emitFloatSignal(float a) { _passed = false; emit floatSignal(a); return _passed; }; |
|
404 | bool emitFloatSignal(float a) { _passed = false; emit floatSignal(a); return _passed; }; | |
395 |
|
405 | |||
396 | bool emitVariantSignal(const QVariant& v) { _passed = false; emit variantSignal(v); return _passed; }; |
|
406 | bool emitVariantSignal(const QVariant& v) { _passed = false; emit variantSignal(v); return _passed; }; | |
397 | QVariant expectedVariant() { return _v; } |
|
407 | QVariant expectedVariant() { return _v; } | |
398 | void setExpectedVariant(const QVariant& v) { _v = v; } |
|
408 | void setExpectedVariant(const QVariant& v) { _v = v; } | |
399 |
|
409 | |||
400 | bool emitComplexSignal(int a, float b, const QStringList& l, QObject* obj) { _passed = false; emit complexSignal(a,b,l,obj); return _passed; }; |
|
410 | bool emitComplexSignal(int a, float b, const QStringList& l, QObject* obj) { _passed = false; emit complexSignal(a,b,l,obj); return _passed; }; | |
401 |
|
411 | |||
402 | bool emitSignal1(int a) { _passed = false; emit signal1(a); return _passed; }; |
|
412 | bool emitSignal1(int a) { _passed = false; emit signal1(a); return _passed; }; | |
403 | bool emitSignal2(const QString& s) { _passed = false; emit signal2(s); return _passed; }; |
|
413 | bool emitSignal2(const QString& s) { _passed = false; emit signal2(s); return _passed; }; | |
404 | bool emitSignal3(float a) { _passed = false; emit signal3(a); return _passed; }; |
|
414 | bool emitSignal3(float a) { _passed = false; emit signal3(a); return _passed; }; | |
405 |
|
415 | |||
406 | signals: |
|
416 | signals: | |
407 | void intSignal(int); |
|
417 | void intSignal(int); | |
408 | void floatSignal(float); |
|
418 | void floatSignal(float); | |
409 | void variantSignal(const QVariant& v); |
|
419 | void variantSignal(const QVariant& v); | |
410 | void complexSignal(int a, float b, const QStringList& l, QObject* obj); |
|
420 | void complexSignal(int a, float b, const QStringList& l, QObject* obj); | |
411 |
|
421 | |||
412 | void signal1(int); |
|
422 | void signal1(int); | |
413 | void signal2(const QString&); |
|
423 | void signal2(const QString&); | |
414 | void signal3(float); |
|
424 | void signal3(float); | |
415 |
|
425 | |||
416 | private: |
|
426 | private: | |
417 | bool _passed; |
|
427 | bool _passed; | |
418 | QVariant _v; |
|
428 | QVariant _v; | |
419 |
|
429 | |||
420 | PythonQtTestSignalHandler* _test; |
|
430 | PythonQtTestSignalHandler* _test; | |
421 | }; |
|
431 | }; | |
422 |
|
432 | |||
423 | #endif |
|
433 | #endif |
General Comments 0
You need to be logged in to leave comments.
Login now