2022-07-05 12:54:21 +00:00
|
|
|
"""Tests configuration."""
|
|
|
|
# pylint: disable=redefined-outer-name
|
|
|
|
# pylint: disable=unused-argument
|
2022-08-25 17:03:56 +00:00
|
|
|
import os
|
2021-11-29 19:16:08 +00:00
|
|
|
import pytest
|
2023-12-25 14:38:59 +00:00
|
|
|
import datetime
|
2023-03-10 14:14:41 +00:00
|
|
|
|
2023-12-25 14:38:59 +00:00
|
|
|
from os import path
|
|
|
|
from os import makedirs
|
|
|
|
from typing import Generator
|
2022-08-25 17:03:56 +00:00
|
|
|
from fastapi.testclient import TestClient
|
2024-01-09 18:58:09 +00:00
|
|
|
from selfprivacy_api.models.tokens.token import Token
|
2023-12-25 14:38:59 +00:00
|
|
|
|
|
|
|
from selfprivacy_api.utils.huey import huey
|
|
|
|
|
|
|
|
import selfprivacy_api.services as services
|
|
|
|
from selfprivacy_api.services import get_service_by_id, Service
|
|
|
|
from selfprivacy_api.services.test_service import DummyService
|
2023-01-02 17:22:18 +00:00
|
|
|
|
2023-01-11 17:02:01 +00:00
|
|
|
from selfprivacy_api.repositories.tokens.redis_tokens_repository import (
|
|
|
|
RedisTokensRepository,
|
|
|
|
)
|
2023-01-02 17:22:18 +00:00
|
|
|
|
|
|
|
|
2023-12-25 14:38:59 +00:00
|
|
|
TESTFILE_BODY = "testytest!"
|
|
|
|
TESTFILE_2_BODY = "testissimo!"
|
|
|
|
|
2023-01-02 17:22:18 +00:00
|
|
|
TOKENS_FILE_CONTENTS = {
|
|
|
|
"tokens": [
|
|
|
|
{
|
|
|
|
"token": "TEST_TOKEN",
|
|
|
|
"name": "test_token",
|
|
|
|
"date": datetime.datetime(2022, 1, 14, 8, 31, 10, 789314),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"token": "TEST_TOKEN2",
|
|
|
|
"name": "test_token2",
|
|
|
|
"date": datetime.datetime(2022, 1, 14, 8, 31, 10, 789314),
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
2022-08-25 17:03:56 +00:00
|
|
|
|
2024-01-09 18:58:09 +00:00
|
|
|
TOKENS = [
|
|
|
|
Token(
|
|
|
|
token="TEST_TOKEN",
|
|
|
|
device_name="test_token",
|
|
|
|
created_at=datetime.datetime(2022, 1, 14, 8, 31, 10, 789314),
|
|
|
|
),
|
|
|
|
Token(
|
|
|
|
token="TEST_TOKEN2",
|
|
|
|
device_name="test_token2",
|
|
|
|
created_at=datetime.datetime(2022, 1, 14, 8, 31, 10, 789314),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2023-01-04 12:31:24 +00:00
|
|
|
DEVICE_WE_AUTH_TESTS_WITH = TOKENS_FILE_CONTENTS["tokens"][0]
|
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
|
|
|
|
def pytest_generate_tests(metafunc):
|
|
|
|
os.environ["TEST_MODE"] = "true"
|
2021-11-29 19:16:08 +00:00
|
|
|
|
2022-01-24 20:01:37 +00:00
|
|
|
|
2022-12-28 12:44:51 +00:00
|
|
|
def global_data_dir():
|
|
|
|
return path.join(path.dirname(__file__), "data")
|
|
|
|
|
|
|
|
|
2023-01-02 17:22:18 +00:00
|
|
|
@pytest.fixture
|
2023-01-11 17:02:01 +00:00
|
|
|
def empty_redis_repo():
|
|
|
|
repo = RedisTokensRepository()
|
|
|
|
repo.reset()
|
|
|
|
assert repo.get_tokens() == []
|
|
|
|
return repo
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2024-01-09 18:58:09 +00:00
|
|
|
def redis_repo_with_tokens():
|
|
|
|
repo = RedisTokensRepository()
|
|
|
|
repo.reset()
|
|
|
|
for token in TOKENS:
|
|
|
|
repo._store_token(token)
|
|
|
|
assert sorted(repo.get_tokens(), key=lambda x: x.token) == sorted(
|
|
|
|
TOKENS, key=lambda x: x.token
|
|
|
|
)
|
2021-11-29 19:16:08 +00:00
|
|
|
|
|
|
|
|
2023-03-10 14:14:41 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def generic_userdata(mocker, tmpdir):
|
|
|
|
filename = "turned_on.json"
|
|
|
|
source_path = path.join(global_data_dir(), filename)
|
|
|
|
userdata_path = path.join(tmpdir, filename)
|
|
|
|
|
|
|
|
with open(userdata_path, "w") as file:
|
|
|
|
with open(source_path, "r") as source:
|
|
|
|
file.write(source.read())
|
|
|
|
|
|
|
|
mock = mocker.patch("selfprivacy_api.utils.USERDATA_FILE", new=userdata_path)
|
|
|
|
return mock
|
|
|
|
|
|
|
|
|
2021-11-29 19:16:08 +00:00
|
|
|
@pytest.fixture
|
2022-08-25 17:03:56 +00:00
|
|
|
def huey_database(mocker, shared_datadir):
|
|
|
|
"""Mock huey database."""
|
|
|
|
mock = mocker.patch(
|
|
|
|
"selfprivacy_api.utils.huey.HUEY_DATABASE", shared_datadir / "huey.db"
|
|
|
|
)
|
|
|
|
return mock
|
2021-11-30 21:53:39 +00:00
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
@pytest.fixture
|
2024-01-09 18:58:09 +00:00
|
|
|
def client(huey_database, redis_repo_with_tokens):
|
2022-08-25 17:03:56 +00:00
|
|
|
from selfprivacy_api.app import app
|
2022-01-10 20:35:00 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
return TestClient(app)
|
2022-01-10 20:35:00 +00:00
|
|
|
|
|
|
|
|
2021-11-29 19:16:08 +00:00
|
|
|
@pytest.fixture
|
2024-01-09 18:58:09 +00:00
|
|
|
def authorized_client(huey_database, redis_repo_with_tokens):
|
2022-07-05 12:54:21 +00:00
|
|
|
"""Authorized test client fixture."""
|
2022-08-25 17:03:56 +00:00
|
|
|
from selfprivacy_api.app import app
|
|
|
|
|
|
|
|
client = TestClient(app)
|
2023-01-04 12:31:24 +00:00
|
|
|
client.headers.update(
|
|
|
|
{"Authorization": "Bearer " + DEVICE_WE_AUTH_TESTS_WITH["token"]}
|
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
return client
|
2021-11-29 19:16:08 +00:00
|
|
|
|
2021-11-30 21:53:39 +00:00
|
|
|
|
2022-01-10 20:35:00 +00:00
|
|
|
@pytest.fixture
|
2024-01-09 18:58:09 +00:00
|
|
|
def wrong_auth_client(huey_database, redis_repo_with_tokens):
|
2022-07-05 12:54:21 +00:00
|
|
|
"""Wrong token test client fixture."""
|
2022-08-25 17:03:56 +00:00
|
|
|
from selfprivacy_api.app import app
|
2022-01-10 20:35:00 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
client = TestClient(app)
|
|
|
|
client.headers.update({"Authorization": "Bearer WRONG_TOKEN"})
|
|
|
|
return client
|
2023-12-25 14:38:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def raw_dummy_service(tmpdir):
|
|
|
|
dirnames = ["test_service", "also_test_service"]
|
|
|
|
service_dirs = []
|
|
|
|
for d in dirnames:
|
|
|
|
service_dir = path.join(tmpdir, d)
|
|
|
|
makedirs(service_dir)
|
|
|
|
service_dirs.append(service_dir)
|
|
|
|
|
|
|
|
testfile_path_1 = path.join(service_dirs[0], "testfile.txt")
|
|
|
|
with open(testfile_path_1, "w") as file:
|
|
|
|
file.write(TESTFILE_BODY)
|
|
|
|
|
|
|
|
testfile_path_2 = path.join(service_dirs[1], "testfile2.txt")
|
|
|
|
with open(testfile_path_2, "w") as file:
|
|
|
|
file.write(TESTFILE_2_BODY)
|
|
|
|
|
|
|
|
# we need this to not change get_folders() much
|
|
|
|
class TestDummyService(DummyService, folders=service_dirs):
|
|
|
|
pass
|
|
|
|
|
|
|
|
service = TestDummyService()
|
|
|
|
# assert pickle.dumps(service) is not None
|
|
|
|
return service
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def dummy_service(
|
|
|
|
tmpdir, raw_dummy_service, generic_userdata
|
|
|
|
) -> Generator[Service, None, None]:
|
|
|
|
service = raw_dummy_service
|
|
|
|
|
|
|
|
# register our service
|
|
|
|
services.services.append(service)
|
|
|
|
|
|
|
|
huey.immediate = True
|
|
|
|
assert huey.immediate is True
|
|
|
|
|
|
|
|
assert get_service_by_id(service.get_id()) is not None
|
|
|
|
service.enable()
|
|
|
|
yield service
|
|
|
|
|
|
|
|
# cleanup because apparently it matters wrt tasks
|
|
|
|
services.services.remove(service)
|