How to use get_hosts_and_tests method in autotest

Best Python code snippet using autotest_python

rpc_interface.py

Source:rpc_interface.py Github

copy

Full Screen

...221 status = 'passed' if result['test_status'] == 'GOOD' else 'failed'222 summary[status] = result['num']223 return summaries224# graphing view support225def get_hosts_and_tests():226 """\227 Gets every host that has had a benchmark run on it. Additionally, also228 gets a dictionary mapping the host names to the benchmarks.229 """230 host_info = {}231 q = (dbmodels.Q(test_name__startswith='kernbench') |232 dbmodels.Q(test_name__startswith='dbench') |233 dbmodels.Q(test_name__startswith='tbench') |234 dbmodels.Q(test_name__startswith='unixbench') |235 dbmodels.Q(test_name__startswith='iozone'))236 test_query = models.TestView.objects.filter(q).values(237 'test_name', 'hostname', 'machine_idx').distinct()238 for result_dict in test_query:239 hostname = result_dict['hostname']...

Full Screen

Full Screen

rpc_interface_unittest.py

Source:rpc_interface_unittest.py Github

copy

Full Screen

...237 """238 def test_get_job_ids(self):239 self.assertEquals([1,2], rpc_interface.get_job_ids())240 self.assertEquals([1], rpc_interface.get_job_ids(test_name='mytest2'))241 def test_get_hosts_and_tests(self):242 host_info = rpc_interface.get_hosts_and_tests()243 self.assertEquals(len(host_info), 1)244 info = host_info['myhost']245 self.assertEquals(info['tests'], ['kernbench'])246 self.assertEquals(info['id'], 1)247 def _check_for_get_test_labels(self, label, label_num):248 self.assertEquals(label['id'], label_num)249 self.assertEquals(label['description'], '')250 self.assertEquals(label['name'], 'testlabel%d' % label_num)251 def test_test_labels(self):252 labels = rpc_interface.get_test_labels_for_tests(test_name='mytest1')253 self.assertEquals(len(labels), 2)254 label1 = labels[0]255 label2 = labels[1]256 self._check_for_get_test_labels(label1, 1)...

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