init.py 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. # pylint: disable=protected-access,pointless-statement
  4. #
  5. # The Qubes OS Project, https://www.qubes-os.org/
  6. #
  7. # Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  8. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License along
  21. # with this program; if not, write to the Free Software Foundation, Inc.,
  22. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  23. #
  24. import os
  25. import unittest
  26. import lxml.etree
  27. import qubes
  28. import qubes.events
  29. import qubes.vm
  30. import qubes.tests
  31. class TC_00_Label(qubes.tests.QubesTestCase):
  32. def test_000_constructor(self):
  33. label = qubes.Label(1, '#cc0000', 'red')
  34. self.assertEqual(label.index, 1)
  35. self.assertEqual(label.color, '#cc0000')
  36. self.assertEqual(label.name, 'red')
  37. self.assertEqual(label.icon, 'appvm-red')
  38. self.assertEqual(label.icon_dispvm, 'dispvm-red')
  39. def test_001_fromxml(self):
  40. xml = lxml.etree.XML('''
  41. <qubes version="3">
  42. <labels>
  43. <label id="label-1" color="#cc0000">red</label>
  44. </labels>
  45. </qubes>
  46. ''')
  47. node = xml.xpath('//label')[0]
  48. label = qubes.Label.fromxml(node)
  49. self.assertEqual(label.index, 1)
  50. self.assertEqual(label.color, '#cc0000')
  51. self.assertEqual(label.name, 'red')
  52. self.assertEqual(label.icon, 'appvm-red')
  53. self.assertEqual(label.icon_dispvm, 'dispvm-red')
  54. class TC_10_property(qubes.tests.QubesTestCase):
  55. def setUp(self):
  56. try:
  57. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  58. testprop1 = qubes.property('testprop1')
  59. except: # pylint: disable=bare-except
  60. self.skipTest('MyTestHolder class definition failed')
  61. self.holder = MyTestHolder(None)
  62. def test_000_init(self):
  63. pass
  64. def test_001_hash(self):
  65. hash(self.holder.__class__.testprop1)
  66. def test_002_eq(self):
  67. self.assertEquals(qubes.property('testprop2'),
  68. qubes.property('testprop2'))
  69. def test_010_set(self):
  70. self.holder.testprop1 = 'testvalue'
  71. self.assertEventFired(self.holder, 'property-pre-set:testprop1')
  72. self.assertEventFired(self.holder, 'property-set:testprop1')
  73. def test_020_get(self):
  74. self.holder.testprop1 = 'testvalue'
  75. self.assertEqual(self.holder.testprop1, 'testvalue')
  76. def test_021_get_unset(self):
  77. with self.assertRaises(AttributeError):
  78. self.holder.testprop1
  79. def test_022_get_default(self):
  80. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  81. testprop1 = qubes.property('testprop1', default='defaultvalue')
  82. holder = MyTestHolder(None)
  83. self.assertEqual(holder.testprop1, 'defaultvalue')
  84. def test_023_get_default_func(self):
  85. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  86. testprop1 = qubes.property('testprop1',
  87. default=(lambda self: 'defaultvalue'))
  88. holder = MyTestHolder(None)
  89. self.assertEqual(holder.testprop1, 'defaultvalue')
  90. holder.testprop1 = 'testvalue'
  91. self.assertEqual(holder.testprop1, 'testvalue')
  92. def test_030_set_setter(self):
  93. def setter(self2, prop, value):
  94. self.assertIs(self2, holder)
  95. self.assertIs(prop, MyTestHolder.testprop1)
  96. self.assertEquals(value, 'testvalue')
  97. return 'settervalue'
  98. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  99. testprop1 = qubes.property('testprop1', setter=setter)
  100. holder = MyTestHolder(None)
  101. holder.testprop1 = 'testvalue'
  102. self.assertEqual(holder.testprop1, 'settervalue')
  103. def test_031_set_type(self):
  104. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  105. testprop1 = qubes.property('testprop1', type=int)
  106. holder = MyTestHolder(None)
  107. holder.testprop1 = '5'
  108. self.assertEqual(holder.testprop1, 5)
  109. self.assertNotEqual(holder.testprop1, '5')
  110. def test_080_delete(self):
  111. self.holder.testprop1 = 'testvalue'
  112. try:
  113. if self.holder.testprop1 != 'testvalue':
  114. self.skipTest('testprop1 value is wrong')
  115. except AttributeError:
  116. self.skipTest('testprop1 value is wrong')
  117. del self.holder.testprop1
  118. with self.assertRaises(AttributeError):
  119. self.holder.testprop1
  120. def test_081_delete_by_assign(self):
  121. self.holder.testprop1 = 'testvalue'
  122. try:
  123. if self.holder.testprop1 != 'testvalue':
  124. self.skipTest('testprop1 value is wrong')
  125. except AttributeError:
  126. self.skipTest('testprop1 value is wrong')
  127. self.holder.testprop1 = qubes.property.DEFAULT
  128. with self.assertRaises(AttributeError):
  129. self.holder.testprop1
  130. def test_082_delete_default(self):
  131. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  132. testprop1 = qubes.property('testprop1', default='defaultvalue')
  133. holder = MyTestHolder(None)
  134. holder.testprop1 = 'testvalue'
  135. try:
  136. if holder.testprop1 != 'testvalue':
  137. self.skipTest('testprop1 value is wrong')
  138. except AttributeError:
  139. self.skipTest('testprop1 value is wrong')
  140. del holder.testprop1
  141. self.assertEqual(holder.testprop1, 'defaultvalue')
  142. def test_090_write_once_set(self):
  143. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  144. testprop1 = qubes.property('testprop1', write_once=True)
  145. holder = MyTestHolder(None)
  146. holder.testprop1 = 'testvalue'
  147. with self.assertRaises(AttributeError):
  148. holder.testprop1 = 'testvalue2'
  149. def test_091_write_once_delete(self):
  150. class MyTestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  151. testprop1 = qubes.property('testprop1', write_once=True)
  152. holder = MyTestHolder(None)
  153. holder.testprop1 = 'testvalue'
  154. with self.assertRaises(AttributeError):
  155. del holder.testprop1
  156. class TestHolder(qubes.tests.TestEmitter, qubes.PropertyHolder):
  157. testprop1 = qubes.property('testprop1', order=0)
  158. testprop2 = qubes.property('testprop2', order=1, save_via_ref=True)
  159. testprop3 = qubes.property('testprop3', order=2, default='testdefault')
  160. testprop4 = qubes.property('testprop4', order=3)
  161. class TC_20_PropertyHolder(qubes.tests.QubesTestCase):
  162. def setUp(self):
  163. xml = lxml.etree.XML('''
  164. <qubes version="3">
  165. <properties>
  166. <property name="testprop1">testvalue1</property>
  167. <property name="testprop2" ref="testref2" />
  168. </properties>
  169. </qubes>
  170. ''')
  171. self.holder = TestHolder(xml)
  172. def test_000_property_list(self):
  173. self.assertListEqual([p.__name__ for p in self.holder.property_list()],
  174. ['testprop1', 'testprop2', 'testprop3', 'testprop4'])
  175. def test_001_property_get_def(self):
  176. self.assertIs(
  177. self.holder.property_get_def('testprop1'), TestHolder.testprop1)
  178. self.assertIs(self.holder.property_get_def(TestHolder.testprop1),
  179. TestHolder.testprop1)
  180. @unittest.expectedFailure
  181. def test_002_load_properties(self):
  182. self.holder.load_properties()
  183. self.assertEventFired(self.holder, 'property-loaded')
  184. self.assertEventNotFired(self.holder, 'property-set:testprop1')
  185. self.assertEquals(self.holder.testprop1, 'testvalue1')
  186. self.assertEquals(self.holder.testprop2, 'testref2')
  187. self.assertEquals(self.holder.testprop3, 'testdefault')
  188. with self.assertRaises(AttributeError):
  189. self.holder.testprop4
  190. def test_003_property_is_default(self):
  191. self.holder.load_properties()
  192. self.assertFalse(self.holder.property_is_default('testprop1'))
  193. self.assertFalse(self.holder.property_is_default('testprop2'))
  194. self.assertTrue(self.holder.property_is_default('testprop3'))
  195. self.assertTrue(self.holder.property_is_default('testprop4'))
  196. with self.assertRaises(AttributeError):
  197. self.holder.property_is_default('testprop5')
  198. @unittest.skip('test not implemented')
  199. def test_004_property_init(self):
  200. pass
  201. @unittest.skip('test not implemented')
  202. def test_005_clone_properties(self):
  203. pass
  204. def test_006_xml_properties(self):
  205. self.holder.load_properties()
  206. elements = self.holder.xml_properties()
  207. elements_with_defaults = self.holder.xml_properties(with_defaults=True)
  208. self.assertEqual(len(elements), 2)
  209. self.assertEqual(len(elements_with_defaults), 3)
  210. expected_prop1 = lxml.etree.Element('property', name='testprop1')
  211. expected_prop1.text = 'testvalue1'
  212. self.assertXMLEqual(elements_with_defaults[0], expected_prop1)
  213. expected_prop2 = lxml.etree.Element('property',
  214. name='testprop2', ref='testref2')
  215. self.assertXMLEqual(elements_with_defaults[1], expected_prop2)
  216. expected_prop3 = lxml.etree.Element('property', name='testprop3')
  217. expected_prop3.text = 'testdefault'
  218. self.assertXMLEqual(elements_with_defaults[2], expected_prop3)
  219. @unittest.skip('test not implemented')
  220. def test_010_property_require(self):
  221. pass