Spaces:
Running
Running
File size: 3,311 Bytes
0a1b571 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
from math import inf
import pytest
from fastapi.testclient import TestClient
@pytest.fixture(scope="package")
def client():
from hibiapi.app import app, application
application.RATE_LIMIT_MAX = inf
with TestClient(app, base_url="http://testserver/api/bika/") as client:
client.headers["Cache-Control"] = "no-cache"
yield client
def test_collections(client: TestClient):
response = client.get("collections")
assert response.status_code == 200
assert response.json()["code"] == 200
def test_categories(client: TestClient):
response = client.get("categories")
assert response.status_code == 200
assert response.json()["code"] == 200
def test_keywords(client: TestClient):
response = client.get("keywords")
assert response.status_code == 200
assert response.json()["code"] == 200
def test_advanced_search(client: TestClient):
response = client.get(
"advanced_search", params={"keyword": "blend", "page": 1, "sort": "vd"}
)
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_category_list(client: TestClient):
response = client.get(
"category_list", params={"category": "全彩", "page": 1, "sort": "vd"}
)
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_author_list(client: TestClient):
response = client.get(
"author_list", params={"author": "ゆうき", "page": 1, "sort": "vd"}
)
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_comic_detail(client: TestClient):
response = client.get("comic_detail", params={"id": "5873aa128fe1fa02b156863a"})
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_comic_recommendation(client: TestClient):
response = client.get(
"comic_recommendation", params={"id": "5873aa128fe1fa02b156863a"}
)
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_comic_episodes(client: TestClient):
response = client.get("comic_episodes", params={"id": "5873aa128fe1fa02b156863a"})
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_comic_page(client: TestClient):
response = client.get("comic_page", params={"id": "5873aa128fe1fa02b156863a"})
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_comic_comments(client: TestClient):
response = client.get("comic_comments", params={"id": "5873aa128fe1fa02b156863a"})
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
def test_games(client: TestClient):
response = client.get("games")
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]["games"]
def test_game_detail(client: TestClient):
response = client.get("game_detail", params={"id": "6298dc83fee4a055417cdd98"})
assert response.status_code == 200
assert response.json()["code"] == 200 and response.json()["data"]
|