mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-18 08:29:14 +00:00
37 lines
992 B
Python
37 lines
992 B
Python
# pylint: disable=redefined-outer-name
|
|
# pylint: disable=unused-argument
|
|
import json
|
|
import pytest
|
|
|
|
from selfprivacy_api.utils import WriteUserData, ReadUserData
|
|
|
|
|
|
def test_get_api_version(authorized_client):
|
|
response = authorized_client.get("/api/version")
|
|
assert response.status_code == 200
|
|
assert "version" in response.get_json()
|
|
|
|
|
|
def test_get_api_version_unauthorized(client):
|
|
response = client.get("/api/version")
|
|
assert response.status_code == 200
|
|
assert "version" in response.get_json()
|
|
|
|
|
|
def test_get_swagger_json(authorized_client):
|
|
response = authorized_client.get("/api/swagger.json")
|
|
assert response.status_code == 200
|
|
assert "swagger" in response.get_json()
|
|
|
|
|
|
def test_read_invalid_user_data():
|
|
with pytest.raises(ValueError):
|
|
with ReadUserData("invalid") as user_data:
|
|
pass
|
|
|
|
|
|
def test_write_invalid_user_data():
|
|
with pytest.raises(ValueError):
|
|
with WriteUserData("invalid") as user_data:
|
|
pass
|