aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-03-23 09:30:52 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2010-03-23 14:36:19 -0300
commitd42c260b589fc1b867a07115ed87b62b6643071f (patch)
treeb1a0d9b53bf60e02271a3ceb04b928baf5996df5 /tests
parent1e1c83886edee5c4d83a69e9414becc8f0bd47a7 (diff)
Adds unit tests for QXmlSimpleReader class.
QXmlSimpleReader is tested for instantiation, as well as 'feature' and 'property' methods.
Diffstat (limited to 'tests')
-rw-r--r--tests/qtxml/qxmlsimplereader_test.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/qtxml/qxmlsimplereader_test.py b/tests/qtxml/qxmlsimplereader_test.py
new file mode 100644
index 000000000..6c4d3f4ea
--- /dev/null
+++ b/tests/qtxml/qxmlsimplereader_test.py
@@ -0,0 +1,34 @@
+#!/usr/bin/python
+import unittest
+from PySide.QtXml import QXmlSimpleReader
+
+class QXmlSimpleReaderTest(unittest.TestCase):
+
+ def testQXmlSimpleReaderInstatiation(self):
+ '''QXmlSimpleReader must be a concrete class not an abstract one.'''
+ reader = QXmlSimpleReader()
+
+ def testQXmlSimpleReaderFeatures(self):
+ '''Calls the QXmlSimpleReader.features method. The features checked
+ (at least the first two) can be found in the QXmlSimpleReader documentation:
+ http://qt.nokia.com/doc/4.6/qxmlsimplereader.html#setFeature
+ '''
+ reader = QXmlSimpleReader()
+ hasFeature, ok = reader.feature('http://xml.org/sax/features/namespaces')
+ self.assertEqual((hasFeature, ok), (True, True))
+
+ hasFeature, ok = reader.feature('http://xml.org/sax/features/namespace-prefixes')
+ self.assertEqual((hasFeature, ok), (False, True))
+
+ hasFeature, ok = reader.feature('foobar')
+ self.assertEqual((hasFeature, ok), (False, False))
+
+ def testQXmlSimpleReaderProperty(self):
+ '''Tries to get a non existent property.'''
+ reader = QXmlSimpleReader()
+ prop, ok = reader.property('foo')
+ self.assertEqual((prop, ok), (None, False))
+
+if __name__ == '__main__':
+ unittest.main()
+