Test that a DispVM’s template can be changed

Previously this raised a QubesValueError.
This commit is contained in:
Demi Marie Obenour 2020-11-26 17:37:52 -05:00
parent 9b3a598eff
commit f4d93fd68e
No known key found for this signature in database
GPG Key ID: 28A45C93B0B5B6E0

View File

@ -116,10 +116,12 @@ class TC_00_DispVM(qubes.tests.QubesTestCase):
dispvm = self.app.add_new_vm(qubes.vm.dispvm.DispVM,
name='test-dispvm', template=self.appvm)
with self.assertRaises(qubes.exc.QubesValueError):
with self.assertRaises(qubes.exc.QubesVMNotHaltedError):
dispvm.template = self.appvm
with self.assertRaises(qubes.exc.QubesValueError):
with self.assertRaises(qubes.exc.QubesVMNotHaltedError):
dispvm.template = qubes.property.DEFAULT
dispvm.kill()
dispvm.template = qubes.property.DEFAULT
def test_003_dvmtemplate_template_change(self):
self.appvm.template_for_dispvms = True