adminvm.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License along
  20. # with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. #
  23. import sys
  24. import unittest
  25. import qubes
  26. import qubes.vm.adminvm
  27. import qubes.tests
  28. class TestVMM(object):
  29. def __init__(self, offline_mode=False):
  30. self.offline_mode = offline_mode
  31. class TestHost(object):
  32. def __init__(self, offline_mode=False):
  33. self.memory_total = 1000
  34. # this probably can be shared and not as dummy as is
  35. class TestApp(qubes.tests.TestEmitter):
  36. def __init__(self):
  37. self.vmm = TestVMM()
  38. self.host = TestHost()
  39. @qubes.tests.skipUnlessDom0
  40. class TC_00_AdminVM(qubes.tests.QubesTestCase):
  41. def setUp(self):
  42. try:
  43. self.app = TestApp()
  44. self.vm = qubes.vm.adminvm.AdminVM(self.app,
  45. xml=None, qid=0, name='dom0')
  46. except:
  47. if self.id().endswith('.test_000_init'):
  48. raise
  49. self.skipTest('setup failed')
  50. def test_000_init(self):
  51. pass
  52. def test_100_xid(self):
  53. self.assertEqual(self.vm.xid, 0)
  54. def test_101_libvirt_domain(self):
  55. self.assertIs(self.vm.libvirt_domain, None)
  56. def test_200_libvirt_netvm(self):
  57. self.assertIs(self.vm.netvm, None)
  58. def test_300_is_running(self):
  59. self.assertTrue(self.vm.is_running())
  60. def test_301_get_power_state(self):
  61. self.assertEqual(self.vm.get_power_state(), 'Running')
  62. def test_302_get_mem(self):
  63. self.assertGreater(self.vm.get_mem(), 0)
  64. @unittest.skip('mock object does not support this')
  65. def test_303_get_mem_static_max(self):
  66. self.assertGreater(self.vm.get_mem_static_max(), 0)
  67. def test_304_get_disk_utilization(self):
  68. self.assertEqual(self.vm.get_disk_utilization(), 0)
  69. def test_305_get_disk_utilization_private_img(self):
  70. self.assertEqual(self.vm.get_disk_utilization_private_img(), 0)
  71. def test_306_get_private_img_sz(self):
  72. self.assertEqual(self.vm.get_private_img_sz(), 0)
  73. def test_307_verify_files(self):
  74. self.assertEqual(self.vm.get_private_img_sz(), 0)
  75. def test_310_start(self):
  76. with self.assertRaises(qubes.QubesException):
  77. self.vm.start()
  78. @unittest.skip('this functionality is undecided')
  79. def test_311_suspend(self):
  80. with self.assertRaises(qubes.QubesException):
  81. self.vm.suspend()