Best Python code snippet using autotest_python
reservations_unittest.py
Source:reservations_unittest.py
...58 def test_unreservable_in_another_acl(self):59 '''60 Tests unreservable hosts in another acl61 '''62 models.AclGroup.check_for_acl_violation_hosts(63 self.reservation_hosts[2:3],64 self.user2.login)65 def test_normal_reserve_lifecycle(self):66 '''67 Tests the normal reservation lifecycle68 A few hosts will be reserved for a given user, and then a second69 user tries to access the host.70 '''71 # reserve few hosts72 host_names = [h.hostname for h in self.reservation_hosts[0:2]]73 reservations.create(host_names, self.user1.login)74 # second user cannot access it75 self.assertRaises(models.AclAccessViolation,76 models.AclGroup.check_for_acl_violation_hosts,77 self.reservation_hosts[0:2],78 self.user2.login)79 reservations.release(host_names, self.user1.login)80 models.AclGroup.check_for_acl_violation_hosts(81 self.reservation_hosts[0:2], self.user2.login)82 def test_nop_release(self):83 '''84 Tests releasing hosts from a user that doesn't have a host reserved85 This should perform no action, and the user should continue to have86 no access to the host87 '''88 reservations.release(['reshost4'], self.user1.login)89 self.assertRaises(models.AclAccessViolation,90 reservations.create,91 ['reshost4'],92 self.user1.login)93 def test_reservations_default_user(self):94 '''...
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!!