Best Python code snippet using toolium_python
test_current_user_api.py
Source:test_current_user_api.py
1# Standard Library2import json3# Third Party Stuff4import pytest5from django.urls import reverse6from .. import factories as f7pytestmark = pytest.mark.django_db8def test_get_current_user_api(client):9 url = reverse("me")10 user = f.create_user(username="test", email="test@example.com")11 # should require auth12 response = client.get(url)13 assert response.status_code == 40114 client.login(user)15 response = client.get(url)16 # assert response is None17 assert response.status_code == 20018 expected_keys = ["id", "username", "email", "first_name", "last_name"]19 assert set(expected_keys).issubset(response.data.keys())20 assert response.data["id"] == str(user.id)21def test_patch_current_user_api(client):22 url = reverse("me")23 user = f.create_user(username="username", email="test@example.com", first_name="test", last_name="test")24 data = {25 "username": "modified_test",26 "first_name": "modified_test",27 "last_name": "modified_test",28 "email": "modified_test@example.com",29 }30 # should require auth31 response = client.json.patch(url, json.dumps(data))32 assert response.status_code == 40133 client.login(user)34 response = client.json.patch(url, json.dumps(data))35 # assert response is None36 assert response.status_code == 20037 expected_keys = ["id", "username", "email", "first_name", "last_name"]38 assert set(expected_keys).issubset(response.data.keys())39 assert response.data["username"] == "modified_test"40 assert response.data["first_name"] == "modified_test"41 assert response.data["last_name"] == "modified_test"...
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!!