From 3e062aed360ca54c26733b175d00d0d4671f3591 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 11 Dec 2022 00:25:48 -0700 Subject: Timelines working --- tests/api/test_accounts.py | 12 ++++++++++++ tests/api/test_instance.py | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 tests/api/test_accounts.py create mode 100644 tests/api/test_instance.py (limited to 'tests/api') diff --git a/tests/api/test_accounts.py b/tests/api/test_accounts.py new file mode 100644 index 0000000..6ca37ae --- /dev/null +++ b/tests/api/test_accounts.py @@ -0,0 +1,12 @@ +import pytest + + +@pytest.mark.django_db +def test_verify_credentials(api_token, identity, client): + response = client.get( + "/api/v1/accounts/verify_credentials", + HTTP_AUTHORIZATION=f"Bearer {api_token.token}", + HTTP_ACCEPT="application/json", + ).json() + assert response["id"] == str(identity.pk) + assert response["username"] == identity.username diff --git a/tests/api/test_instance.py b/tests/api/test_instance.py new file mode 100644 index 0000000..9fd0af2 --- /dev/null +++ b/tests/api/test_instance.py @@ -0,0 +1,11 @@ +import pytest + + +@pytest.mark.django_db +def test_instance(api_token, client): + response = client.get( + "/api/v1/instance", + HTTP_AUTHORIZATION=f"Bearer {api_token.token}", + HTTP_ACCEPT="application/json", + ).json() + assert response["uri"] == "example.com" -- cgit v1.2.3