takahe/tests/api/test_accounts.py

16 lines
513 B
Python
Raw Normal View History

2022-12-10 23:25:48 -08:00
import pytest
@pytest.mark.django_db
2023-02-13 18:40:10 -08:00
def test_verify_credentials(api_client, identity):
response = api_client.get("/api/v1/accounts/verify_credentials").json()
2022-12-10 23:25:48 -08:00
assert response["id"] == str(identity.pk)
assert response["username"] == identity.username
2022-12-21 13:54:49 -08:00
@pytest.mark.django_db
2023-02-13 18:40:10 -08:00
def test_account_search(api_client, identity):
response = api_client.get("/api/v1/accounts/search?q=test").json()
2022-12-21 13:54:49 -08:00
assert response[0]["id"] == str(identity.pk)
assert response[0]["username"] == identity.username