mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2025-02-22 18:50:33 +03:00
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from django.urls import reverse
|
|
|
|
from image_markuper.users.models import User
|
|
|
|
|
|
class TestUserAdmin:
|
|
def test_changelist(self, admin_client):
|
|
url = reverse("admin:users_user_changelist")
|
|
response = admin_client.get(url)
|
|
assert response.status_code == 200
|
|
|
|
def test_search(self, admin_client):
|
|
url = reverse("admin:users_user_changelist")
|
|
response = admin_client.get(url, data={"q": "test"})
|
|
assert response.status_code == 200
|
|
|
|
def test_add(self, admin_client):
|
|
url = reverse("admin:users_user_add")
|
|
response = admin_client.get(url)
|
|
assert response.status_code == 200
|
|
|
|
response = admin_client.post(
|
|
url,
|
|
data={
|
|
"username": "test",
|
|
"password1": "My_R@ndom-P@ssw0rd",
|
|
"password2": "My_R@ndom-P@ssw0rd",
|
|
},
|
|
)
|
|
assert response.status_code == 302
|
|
assert User.objects.filter(username="test").exists()
|
|
|
|
def test_view_user(self, admin_client):
|
|
user = User.objects.get(username="admin")
|
|
url = reverse("admin:users_user_change", kwargs={"object_id": user.pk})
|
|
response = admin_client.get(url)
|
|
assert response.status_code == 200
|