selfprivacy-rest-api/tests/conftest.py

61 lines
1.5 KiB
Python
Raw Normal View History

2022-07-05 15:54:21 +03:00
"""Tests configuration."""
# pylint: disable=redefined-outer-name
# pylint: disable=unused-argument
import pytest
2022-08-11 02:36:36 +03:00
from fastapi.testclient import TestClient
2022-01-24 22:01:37 +02:00
2022-01-18 17:20:47 +02:00
@pytest.fixture
def tokens_file(mocker, shared_datadir):
2022-07-05 15:54:21 +03:00
"""Mock tokens file."""
2022-01-24 22:01:37 +02:00
mock = mocker.patch(
"selfprivacy_api.utils.TOKENS_FILE", shared_datadir / "tokens.json"
)
2022-01-18 17:20:47 +02:00
return mock
2022-08-17 23:58:56 +03:00
2022-08-16 00:31:24 +03:00
@pytest.fixture
def jobs_file(mocker, shared_datadir):
"""Mock tokens file."""
2022-08-18 00:38:38 +03:00
mock = mocker.patch(
"selfprivacy_api.utils.JOBS_FILE",
shared_datadir / "jobs.json"
)
2022-08-16 00:31:24 +03:00
return mock
2022-01-24 22:01:37 +02:00
2022-08-17 23:58:56 +03:00
@pytest.fixture
2022-08-11 02:36:36 +03:00
def huey_database(mocker, shared_datadir):
"""Mock huey database."""
mock = mocker.patch(
"selfprivacy_api.utils.huey.HUEY_DATABASE", shared_datadir / "huey.db"
2021-11-30 23:53:39 +02:00
)
2022-08-11 02:36:36 +03:00
return mock
@pytest.fixture
2022-08-16 00:31:24 +03:00
def client(tokens_file, huey_database, jobs_file):
2022-08-11 02:36:36 +03:00
from selfprivacy_api.app import app
2022-08-11 02:36:36 +03:00
return TestClient(app)
@pytest.fixture
2022-08-16 00:31:24 +03:00
def authorized_client(tokens_file, huey_database, jobs_file):
2022-07-05 15:54:21 +03:00
"""Authorized test client fixture."""
2022-08-11 02:36:36 +03:00
from selfprivacy_api.app import app
client = TestClient(app)
client.headers.update({"Authorization": "Bearer TEST_TOKEN"})
return client
2021-11-30 23:53:39 +02:00
@pytest.fixture
2022-08-16 00:31:24 +03:00
def wrong_auth_client(tokens_file, huey_database, jobs_file):
2022-07-05 15:54:21 +03:00
"""Wrong token test client fixture."""
2022-08-11 02:36:36 +03:00
from selfprivacy_api.app import app
2022-08-11 02:36:36 +03:00
client = TestClient(app)
client.headers.update({"Authorization": "Bearer WRONG_TOKEN"})
return client