Best Python code snippet using Kiwi_python
test_admin.py
Source:test_admin.py
...281 self.assertEqual(HTTPStatus.FORBIDDEN, response.status_code)282 def test_regular_user_cant_view_single_profile_without_permission(self):283 response = self.client.get(f"/admin/auth/user/{self.admin.pk}/change/")284 self.assertIsInstance(response, HttpResponseForbidden)285 def test_regular_user_can_view_themselves(self):286 response = self.client.get(f"/admin/auth/user/{self.tester.pk}/change/")287 response_str = str(response.content, encoding=settings.DEFAULT_CHARSET)288 # only 1 hidden field for csrf289 self.assertContains(response, '<input type="hidden" name="csrfmiddlewaretoken"')290 # 6 readonly fields291 self.assertEqual(response_str.count("grp-readonly"), 6)292 # only these fields can be edited293 self.assertContains(response, "id_first_name")294 self.assertContains(response, "id_last_name")295 self.assertContains(response, "id_email")296 # Has Delete button297 self.assertContains(response, f"/admin/auth/user/{self.tester.pk}/delete/")298 # Has Save buttons299 self.assertContains(response, "_save")...
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!!