tests: improve devices API unit test
Check fired events - inspired by qvm-device test.
This commit is contained in:
parent
7f2ca33774
commit
3ecc0a9bcb
@ -111,6 +111,7 @@ class TC_00_DeviceCollection(qubes.tests.QubesTestCase):
|
|||||||
|
|
||||||
def test_013_list_attached_persistent(self):
|
def test_013_list_attached_persistent(self):
|
||||||
self.assertEqual(set([]), set(self.collection.attached()))
|
self.assertEqual(set([]), set(self.collection.attached()))
|
||||||
|
self.assertEventFired(self.emitter, 'device-list-attached:testclass')
|
||||||
self.collection.attach(self.device)
|
self.collection.attach(self.device)
|
||||||
self.assertEqual({self.device}, set(self.collection.attached()))
|
self.assertEqual({self.device}, set(self.collection.attached()))
|
||||||
self.assertEqual({self.device},
|
self.assertEqual({self.device},
|
||||||
@ -128,9 +129,11 @@ class TC_00_DeviceCollection(qubes.tests.QubesTestCase):
|
|||||||
set(self.collection.attached(persistent=True)))
|
set(self.collection.attached(persistent=True)))
|
||||||
self.assertEqual({self.device},
|
self.assertEqual({self.device},
|
||||||
set(self.collection.attached(persistent=False)))
|
set(self.collection.attached(persistent=False)))
|
||||||
|
self.assertEventFired(self.emitter, 'device-list-attached:testclass')
|
||||||
|
|
||||||
def test_015_list_available(self):
|
def test_015_list_available(self):
|
||||||
self.assertEqual({self.device}, set(self.collection))
|
self.assertEqual({self.device}, set(self.collection))
|
||||||
|
self.assertEventFired(self.emitter, 'device-list:testclass')
|
||||||
|
|
||||||
|
|
||||||
class TC_01_DeviceManager(qubes.tests.QubesTestCase):
|
class TC_01_DeviceManager(qubes.tests.QubesTestCase):
|
||||||
|
Loading…
Reference in New Issue
Block a user