How to use test_create_hostless_job method in autotest

Best Python code snippet using autotest_python

rpc_interface_unittest.py

Source:rpc_interface_unittest.py Github

copy

Full Screen

...142 self.assertEquals(host.aclgroup_set.count(), 0)143 def test_create_job_duplicate_hosts(self):144 self.assertRaises(model_logic.ValidationError, self._create_job_helper,145 hosts=[1, 1])146 def test_create_hostless_job(self):147 job_id = self._create_job_helper(hostless=True)148 job = models.Job.objects.get(pk=job_id)149 queue_entries = job.hostqueueentry_set.all()150 self.assertEquals(len(queue_entries), 1)151 self.assertEquals(queue_entries[0].host, None)152 self.assertEquals(queue_entries[0].meta_host, None)153 self.assertEquals(queue_entries[0].atomic_group, None)154 def _setup_special_tasks(self):155 host = self.hosts[0]156 job1 = self._create_job(hosts=[1])157 job2 = self._create_job(hosts=[1])158 entry1 = job1.hostqueueentry_set.all()[0]159 entry1.update_object(started_on=datetime.datetime(2009, 1, 2),160 execution_subdir='host1')...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run autotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful