Spaces:
Running
Running
File size: 9,146 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
from datetime import date, timedelta
from math import inf
import pytest
from fastapi.testclient import TestClient
from pytest_benchmark.fixture import BenchmarkFixture
@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/pixiv/") as client:
client.headers["Cache-Control"] = "no-cache"
client.headers["Accept-Language"] = "en-US,en;q=0.9"
yield client
def test_illust(client: TestClient):
# https://www.pixiv.net/artworks/109862531
response = client.get("illust", params={"id": 109862531})
assert response.status_code == 200
assert response.json().get("illust")
def test_member(client: TestClient):
response = client.get("member", params={"id": 3036679})
assert response.status_code == 200
assert response.json().get("user")
def test_member_illust(client: TestClient):
response = client.get("member_illust", params={"id": 3036679})
assert response.status_code == 200
assert response.json().get("illusts") is not None
def test_favorite(client: TestClient):
response = client.get("favorite", params={"id": 3036679})
assert response.status_code == 200
def test_favorite_novel(client: TestClient):
response = client.get("favorite_novel", params={"id": 55170615})
assert response.status_code == 200
def test_following(client: TestClient):
response = client.get("following", params={"id": 3036679})
assert response.status_code == 200
assert response.json().get("user_previews") is not None
def test_follower(client: TestClient):
response = client.get("follower", params={"id": 3036679})
assert response.status_code == 200
assert response.json().get("user_previews") is not None
def test_rank(client: TestClient):
for i in range(2, 5):
response = client.get(
"rank", params={"date": str(date.today() - timedelta(days=i))}
)
assert response.status_code == 200
assert response.json().get("illusts")
def test_search(client: TestClient):
response = client.get("search", params={"word": "東方Project"})
assert response.status_code == 200
assert response.json().get("illusts")
def test_popular_preview(client: TestClient):
response = client.get("popular_preview", params={"word": "東方Project"})
assert response.status_code == 200
assert response.json().get("illusts")
def test_search_user(client: TestClient):
response = client.get("search_user", params={"word": "鬼针草"})
assert response.status_code == 200
assert response.json().get("user_previews")
def test_tags(client: TestClient):
response = client.get("tags")
assert response.status_code == 200
assert response.json().get("trend_tags")
def test_tags_autocomplete(client: TestClient):
response = client.get("tags_autocomplete", params={"word": "甘雨"})
assert response.status_code == 200
assert response.json().get("tags")
def test_related(client: TestClient):
response = client.get("related", params={"id": 85162550})
assert response.status_code == 200
assert response.json().get("illusts")
def test_ugoira_metadata(client: TestClient):
response = client.get("ugoira_metadata", params={"id": 85162550})
assert response.status_code == 200
assert response.json().get("ugoira_metadata")
def test_spotlights(client: TestClient):
response = client.get("spotlights")
assert response.status_code == 200
assert response.json().get("spotlight_articles")
def test_illust_new(client: TestClient):
response = client.get("illust_new")
assert response.status_code == 200
assert response.json().get("illusts")
def test_illust_comments(client: TestClient):
response = client.get("illust_comments", params={"id": 99973718})
assert response.status_code == 200
assert response.json().get("comments")
def test_illust_comment_replies(client: TestClient):
response = client.get("illust_comment_replies", params={"id": 151400579})
assert response.status_code == 200
assert response.json().get("comments")
def test_novel_comments(client: TestClient):
response = client.get("novel_comments", params={"id": 12656898})
assert response.status_code == 200
assert response.json().get("comments")
def test_novel_comment_replies(client: TestClient):
response = client.get("novel_comment_replies", params={"id": 42372000})
assert response.status_code == 200
assert response.json().get("comments")
def test_rank_novel(client: TestClient):
for i in range(2, 5):
response = client.get(
"rank_novel", params={"date": str(date.today() - timedelta(days=i))}
)
assert response.status_code == 200
assert response.json().get("novels")
def test_member_novel(client: TestClient):
response = client.get("member_novel", params={"id": 14883165})
assert response.status_code == 200
assert response.json().get("novels")
def test_novel_series(client: TestClient):
response = client.get("novel_series", params={"id": 1496457})
assert response.status_code == 200
assert response.json().get("novels")
def test_novel_detail(client: TestClient):
response = client.get("novel_detail", params={"id": 14617902})
assert response.status_code == 200
assert response.json().get("novel")
def test_novel_text(client: TestClient):
response = client.get("novel_text", params={"id": 14617902})
assert response.status_code == 200
assert response.json().get("novel_text")
def test_webview_novel(client: TestClient):
response = client.get("webview_novel", params={"id": 19791013})
assert response.status_code == 200
assert response.json().get("text")
def test_live_list(client: TestClient):
response = client.get("live_list")
assert response.status_code == 200
assert response.json().get("lives")
def test_related_novel(client: TestClient):
response = client.get("related_novel", params={"id": 19791013})
assert response.status_code == 200
assert response.json().get("novels")
def test_related_member(client: TestClient):
response = client.get("related_member", params={"id": 10109777})
assert response.status_code == 200
assert response.json().get("user_previews")
def test_illust_series(client: TestClient):
response = client.get("illust_series", params={"id": 218893})
assert response.status_code == 200
assert response.json().get("illust_series_detail")
def test_member_illust_series(client: TestClient):
response = client.get("member_illust_series", params={"id": 4087934})
assert response.status_code == 200
assert response.json().get("illust_series_details")
def test_member_novel_series(client: TestClient):
response = client.get("member_novel_series", params={"id": 86832559})
assert response.status_code == 200
assert response.json().get("novel_series_details")
def test_tags_novel(client: TestClient):
response = client.get("tags_novel")
assert response.status_code == 200
assert response.json().get("trend_tags")
def test_search_novel(client: TestClient):
response = client.get("search_novel", params={"word": "碧蓝航线"})
assert response.status_code == 200
assert response.json().get("novels")
def test_popular_preview_novel(client: TestClient):
response = client.get("popular_preview_novel", params={"word": "東方Project"})
assert response.status_code == 200
assert response.json().get("novels")
def test_novel_new(client: TestClient):
response = client.get("novel_new", params={"max_novel_id": 16002726})
assert response.status_code == 200
assert response.json().get("next_url")
def test_request_cache(client: TestClient, benchmark: BenchmarkFixture):
client.headers["Cache-Control"] = "public"
first_response = client.get("rank")
assert first_response.status_code == 200
second_response = client.get("rank")
assert second_response.status_code == 200
assert "x-cache-hit" in second_response.headers
assert "cache-control" in second_response.headers
assert second_response.json() == first_response.json()
def cache_benchmark():
response = client.get("rank")
assert response.status_code == 200
assert "x-cache-hit" in response.headers
assert "cache-control" in response.headers
benchmark.pedantic(cache_benchmark, rounds=200, iterations=3)
def test_rank_redirect(client: TestClient):
response = client.get("http://testserver/pixiv/rank")
assert response.status_code == 200
assert response.history
assert response.history[0].status_code == 301
def test_rate_limit(client: TestClient):
from hibiapi.app import application
application.RATE_LIMIT_MAX = 1
first_response = client.get("rank")
assert first_response.status_code in (200, 429)
second_response = client.get("rank")
assert second_response.status_code == 429
assert "retry-after" in second_response.headers
|