adminvm.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 unittest
  24. import qubes
  25. import qubes.vm.adminvm
  26. import qubes.tests
  27. class TestVMM(object):
  28. def __init__(self, offline_mode=False):
  29. self.offline_mode = offline_mode
  30. class TestHost(object):
  31. def __init__(self, offline_mode=False):
  32. self.memory_total = 1000
  33. # this probably can be shared and not as dummy as is
  34. class TestApp(qubes.tests.TestEmitter):
  35. def __init__(self):
  36. self.vmm = TestVMM()
  37. self.host = TestHost()
  38. @qubes.tests.skipUnlessDom0
  39. class TC_00_AdminVM(qubes.tests.QubesTestCase):
  40. def setUp(self):
  41. try:
  42. self.app = TestApp()
  43. self.vm = qubes.vm.adminvm.AdminVM(self.app,
  44. xml=None, qid=0, name='dom0')
  45. except:
  46. if self.id().endswith('.test_000_init'):
  47. raise
  48. self.skipTest('setup failed')
  49. def test_000_init(self):
  50. pass
  51. def test_100_xid(self):
  52. self.assertEqual(self.vm.xid, 0)
  53. def test_101_libvirt_domain(self):
  54. self.assertIs(self.vm.libvirt_domain, None)
  55. def test_200_libvirt_netvm(self):
  56. self.assertIs(self.vm.netvm, None)
  57. def test_300_is_running(self):
  58. self.assertTrue(self.vm.is_running())
  59. def test_301_get_power_state(self):
  60. self.assertEqual(self.vm.get_power_state(), 'Running')
  61. def test_302_get_mem(self):
  62. self.assertGreater(self.vm.get_mem(), 0)
  63. @unittest.skip('mock object does not support this')
  64. def test_303_get_mem_static_max(self):
  65. self.assertGreater(self.vm.get_mem_static_max(), 0)
  66. def test_304_get_disk_utilization(self):
  67. self.assertEqual(self.vm.get_disk_utilization(), 0)
  68. def test_305_get_disk_utilization_private_img(self):
  69. self.assertEqual(self.vm.get_disk_utilization_private_img(), 0)
  70. def test_306_get_private_img_sz(self):
  71. self.assertEqual(self.vm.get_private_img_sz(), 0)
  72. def test_307_verify_files(self):
  73. self.assertEqual(self.vm.get_private_img_sz(), 0)
  74. def test_310_start(self):
  75. with self.assertRaises(qubes.QubesException):
  76. self.vm.start()
  77. @unittest.skip('this functionality is undecided')
  78. def test_311_suspend(self):
  79. with self.assertRaises(qubes.QubesException):
  80. self.vm.suspend()