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:
Renato Filho 2010-06-07 14:43:45 -03:00
commit ab918abc1e
211 changed files with 241 additions and 79 deletions

View file

@ -0,0 +1,2 @@
PYSIDE_TEST(uiloader_test.py)
PYSIDE_TEST(ui_test.py)

48
tests/QtUiTools/test.ui Normal file
View 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>

View 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()

View 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()