Best Python code snippet using autotest_python
monitor_db_unittest.py
Source:monitor_db_unittest.py
...611 self.assertEqual(1, job.synch_count)612 django_hqes = list(models.HostQueueEntry.objects.filter(job=job.id))613 self.assertEqual(2, len(django_hqes))614 self.assertEqual(2, django_hqes[0].atomic_group.max_number_of_machines)615 def set_hqe_status(django_hqe, status):616 django_hqe.status = status617 django_hqe.save()618 scheduler_models.HostQueueEntry(django_hqe.id).host.set_status(status)619 # An initial state, our synch_count is 1620 set_hqe_status(django_hqes[0], models.HostQueueEntry.Status.VERIFYING)621 set_hqe_status(django_hqes[1], models.HostQueueEntry.Status.PENDING)622 # So that we don't depend on the config file value during the test.623 self.assert_(scheduler_config.config624 .secs_to_wait_for_atomic_group_hosts is not None)625 self.god.stub_with(scheduler_config.config,626 'secs_to_wait_for_atomic_group_hosts', 123456)627 # Get the pending one as a scheduler_models.HostQueueEntry object.628 hqe = scheduler_models.HostQueueEntry(django_hqes[1].id)629 self.assert_(not job._delay_ready_task)630 self.assertTrue(job.is_ready())631 # Ready with one pending, one verifying and an atomic group should632 # result in a DelayCallTask to re-check if we're ready a while later.633 job.run_if_ready(hqe)634 self.assertEquals('Waiting', hqe.status)635 self._dispatcher._schedule_delay_tasks()...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!