123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #
- # The Qubes OS Project, https://www.qubes-os.org/
- #
- # Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
- # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
- #
- # This library is free software; you can redistribute it and/or
- # modify it under the terms of the GNU Lesser General Public
- # License as published by the Free Software Foundation; either
- # version 2.1 of the License, or (at your option) any later version.
- #
- # This library is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- # Lesser General Public License for more details.
- #
- # You should have received a copy of the GNU Lesser General Public
- # License along with this library; if not, see <https://www.gnu.org/licenses/>.
- #
- import unittest
- import unittest.mock
- import qubes
- import qubes.exc
- import qubes.vm
- import qubes.vm.adminvm
- import qubes.tests
- class TC_00_AdminVM(qubes.tests.QubesTestCase):
- def setUp(self):
- super().setUp()
- try:
- self.app = qubes.tests.vm.TestApp()
- with unittest.mock.patch.object(
- qubes.vm.adminvm.AdminVM, 'start_qdb_watch') as mock_qdb:
- self.vm = qubes.vm.adminvm.AdminVM(self.app,
- xml=None)
- mock_qdb.assert_called_once_with()
- self.addCleanup(self.cleanup_adminvm)
- except: # pylint: disable=bare-except
- if self.id().endswith('.test_000_init'):
- raise
- self.skipTest('setup failed')
- def cleanup_adminvm(self):
- self.vm.close()
- del self.vm
- def test_000_init(self):
- pass
- def test_100_xid(self):
- self.assertEqual(self.vm.xid, 0)
- def test_101_libvirt_domain(self):
- with unittest.mock.patch.object(self.app, 'vmm') as mock_vmm:
- self.assertIsNotNone(self.vm.libvirt_domain)
- self.assertEqual(mock_vmm.mock_calls, [
- ('libvirt_conn.lookupByID', (0,), {}),
- ])
- def test_300_is_running(self):
- self.assertTrue(self.vm.is_running())
- def test_301_get_power_state(self):
- self.assertEqual(self.vm.get_power_state(), 'Running')
- def test_302_get_mem(self):
- self.assertGreater(self.vm.get_mem(), 0)
- @unittest.skip('mock object does not support this')
- def test_303_get_mem_static_max(self):
- self.assertGreater(self.vm.get_mem_static_max(), 0)
- def test_310_start(self):
- with self.assertRaises(qubes.exc.QubesException):
- self.vm.start()
- @unittest.skip('this functionality is undecided')
- def test_311_suspend(self):
- with self.assertRaises(qubes.exc.QubesException):
- self.vm.suspend()
|