Пример #1
0
 def test_stop_instance_notfast(self):
     bs = yield self.setupWorker('bot', 'pass', **self.bs_image_args)
     # Make instance immediately active.
     self.patch(novaclient.Servers, 'gets_until_active', 0)
     s = novaclient.Servers()
     bs.instance = inst = s.create()
     self.assertIn(inst.id, s.instances)
     bs.stop_instance(fast=False)
     self.assertNotIn(inst.id, s.instances)
Пример #2
0
 def test_stop_instance_fast(self):
     bs = openstack.OpenStackLatentWorker('bot', 'pass', **self.bs_image_args)
     # Make instance immediately active.
     self.patch(novaclient.Servers, 'gets_until_active', 0)
     s = novaclient.Servers()
     bs.instance = inst = s.create()
     self.assertIn(inst.id, s.instances)
     bs.stop_instance(fast=True)
     self.assertNotIn(inst.id, s.instances)
Пример #3
0
 def test_stop_instance_unknown(self):
     bs = yield self.setupWorker('bot', 'pass', **self.bs_image_args)
     # Make instance immediately active.
     self.patch(novaclient.Servers, 'gets_until_active', 0)
     s = novaclient.Servers()
     bs.instance = inst = s.create()
     # Set status to DELETED. Instance should not be deleted when shutting
     # down as it already is.
     inst.status = novaclient.DELETED
     self.assertIn(inst.id, s.instances)
     bs.stop_instance()
     self.assertIn(inst.id, s.instances)
Пример #4
0
 def test_stop_instance_cleanup(self):
     """
     Test cleaning up leftover instances before starting new.
     """
     self.patch(novaclient.Servers, 'fail_to_get', False)
     self.patch(novaclient.Servers, 'gets_until_disappears', 9)
     novaclient.Servers().create(['bot', novaclient.TEST_UUIDS['image'],
                                 novaclient.TEST_UUIDS['flavor']],
                                 meta={'BUILDBOT:instance': self.masterhash})
     bs = yield self.setupWorker('bot', 'pass', **self.bs_image_args)
     bs._poll_resolution = 0
     uuid, image_uuid, time_waiting = yield bs.start_instance(self.build)
     self.assertTrue(uuid)
     self.assertEqual(image_uuid, 'image-uuid')
     self.assertTrue(time_waiting)