Home | History | Annotate | Download | only in scheduler

Lines Matching refs:HostQueueEntry

163         return list(scheduler_models.HostQueueEntry.fetch(
181 """Called by HostQueueEntry.run()."""
185 self.god.stub_with(scheduler_models.HostQueueEntry,
393 original_set_status = scheduler_models.HostQueueEntry.set_status
398 self.god.stub_with(scheduler_models.HostQueueEntry, 'set_status',
404 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
762 expected_status = models.HostQueueEntry.Status.STARTING
764 expected_status = models.HostQueueEntry.Status.PENDING
766 expected_status = models.HostQueueEntry.Status.VERIFYING
768 queue_entry = scheduler_models.HostQueueEntry.fetch('id = 1')[0]
777 actual_status = models.HostQueueEntry.smart_get(1).status
804 models.HostQueueEntry.Status.PENDING)
806 queue_entry = scheduler_models.HostQueueEntry.fetch('id = 1')[0]
810 models.HostQueueEntry.Status.STARTING)
828 hqe_query = scheduler_models.HostQueueEntry.fetch(
833 self.assertEqual(models.HostQueueEntry.Status.QUEUED, hqe.status)
838 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
844 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
1041 hqe = self.god.create_mock_class(scheduler_models.HostQueueEntry,
1042 'HostQueueEntry')
1045 hqe.status = models.HostQueueEntry.Status.STARTING
1054 hqe.status = models.HostQueueEntry.Status.RUNNING