Created new unittest model.
Separete unittest for module.
Only run unittest for compiled modules.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>,
Luciano Wolf <luciano.wolf@openbossa.org>
This commit is contained in:
parent
471486732b
commit
ab918abc1e
211 changed files with 241 additions and 79 deletions
2
tests/QtUiTools/CMakeLists.txt
Normal file
2
tests/QtUiTools/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
PYSIDE_TEST(uiloader_test.py)
|
||||
PYSIDE_TEST(ui_test.py)
|
||||
48
tests/QtUiTools/test.ui
Normal file
48
tests/QtUiTools/test.ui
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>Form</class>
|
||||
<widget class="QWidget" name="Form">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>185</width>
|
||||
<height>133</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<widget class="QFrame" name="child_object">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>181</width>
|
||||
<height>131</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<widget class="QPushButton" name="grandson_object">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>50</x>
|
||||
<y>60</y>
|
||||
<width>80</width>
|
||||
<height>25</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>PushButton</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
14
tests/QtUiTools/ui_test.py
Normal file
14
tests/QtUiTools/ui_test.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
import unittest
|
||||
|
||||
from PySide.QtUiTools import QUiLoader
|
||||
|
||||
from helper import UsesQApplication
|
||||
|
||||
class QUiLoaderCreation(UsesQApplication):
|
||||
|
||||
def testConstructor(self):
|
||||
loader = QUiLoader()
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
30
tests/QtUiTools/uiloader_test.py
Normal file
30
tests/QtUiTools/uiloader_test.py
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
import unittest
|
||||
import os
|
||||
from helper import UsesQApplication
|
||||
|
||||
from PySide.QtGui import *
|
||||
from PySide.QtUiTools import *
|
||||
|
||||
def get_file_path():
|
||||
for path in file_path:
|
||||
if os.path.exists(path):
|
||||
return path
|
||||
return ""
|
||||
|
||||
class QUioaderTeste(UsesQApplication):
|
||||
def testLoadFile(self):
|
||||
filePath = os.path.join(os.path.dirname(__file__), 'test.ui')
|
||||
loader = QUiLoader()
|
||||
parent = QWidget()
|
||||
w = loader.load(filePath, parent)
|
||||
self.assertNotEqual(w, None)
|
||||
|
||||
self.assertEqual(len(parent.children()), 1)
|
||||
|
||||
child = w.findChild(QWidget, "child_object")
|
||||
self.assertNotEqual(child, None)
|
||||
self.assertEqual(w.findChild(QWidget, "grandson_object"), child.findChild(QWidget, "grandson_object"))
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue