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
|
import json
from typing import Any
import pytest
from fastapi.testclient import TestClient
from fatcat_scholar.web import app
@pytest.fixture
def client() -> TestClient:
return TestClient(app)
def test_main_view(client: Any) -> None:
resp = client.get("/")
assert resp.status_code == 200
assert b"Internet Archive Scholar" in resp.content
resp = client.get("/ar/")
assert resp.status_code == 200
assert "معلومات عن" in resp.content.decode("utf-8")
resp = client.get("/", headers={"Accept-Language": "ar"})
assert resp.status_code == 200
assert "معلومات عن" in resp.content.decode("utf-8")
resp = client.get("/", headers={"Accept-Language": "zh_Hans_CN"})
assert resp.status_code == 200
assert "我们是" in resp.content.decode("utf-8")
def test_basic_api(client: Any, mocker: Any) -> None:
"""
Simple check of GET routes with application/json support
"""
headers = {"Accept": "application/json"}
resp = client.get("/", headers=headers)
assert resp.status_code == 200
assert resp.json()
# request with no 'q' parameter is an error
resp = client.get("/search", headers=headers)
assert resp.status_code == 400
with open("tests/files/elastic_fulltext_search.json") as f:
elastic_resp = json.loads(f.read())
es_raw = mocker.patch(
"elasticsearch.connection.Urllib3HttpConnection.perform_request"
)
es_raw.side_effect = [
(200, {}, json.dumps(elastic_resp)),
]
resp = client.get("/search?q=blood", headers=headers)
assert resp.status_code == 200
assert resp.json()
def test_basic_routes(client: Any) -> None:
"""
Simple check of GET routes in the web app
"""
resp = client.get("/robots.txt")
assert resp.status_code == 200
resp = client.get("/static/ia-logo.svg")
assert resp.status_code == 200
LANG_PREFIX_LIST = ["", "/ar"]
PATH_LIST = ["/", "/about", "/help", "/search"]
for lang in LANG_PREFIX_LIST:
for path in PATH_LIST:
resp = client.get(lang + path)
assert resp.status_code == 200
assert b"</body>" in resp.content
def test_basic_search(client: Any, mocker: Any) -> None:
rv = client.get("/search")
assert rv.status_code == 200
with open("tests/files/elastic_fulltext_search.json") as f:
elastic_resp = json.loads(f.read())
es_raw = mocker.patch(
"elasticsearch.connection.Urllib3HttpConnection.perform_request"
)
es_raw.side_effect = [
(200, {}, json.dumps(elastic_resp)),
(200, {}, json.dumps(elastic_resp)),
]
rv = client.get("/search?q=blood")
assert rv.status_code == 200
assert b"Hits" in rv.content
rv = client.get("/zh/search?q=blood")
assert rv.status_code == 200
def test_basic_work_landing_page(client: Any, mocker: Any) -> None:
with open("tests/files/elastic_fulltext_get.json") as f:
elastic_resp = json.loads(f.read())
es_raw = mocker.patch(
"elasticsearch.connection.Urllib3HttpConnection.perform_request"
)
es_raw.side_effect = [
(200, {}, json.dumps(elastic_resp)),
(200, {}, json.dumps(elastic_resp)),
]
rv = client.get("/work/2x5qvct2dnhrbctqa2q2uyut6a")
assert rv.status_code == 200
assert b"citation_pdf_url" in rv.content
rv = client.get("/zh/work/2x5qvct2dnhrbctqa2q2uyut6a")
assert rv.status_code == 200
assert b"citation_pdf_url" in rv.content
def test_basic_access_redirect(client: Any, mocker: Any) -> None:
with open("tests/files/elastic_fulltext_get.json") as f:
elastic_resp = json.loads(f.read())
es_raw = mocker.patch(
"elasticsearch.connection.Urllib3HttpConnection.perform_request"
)
es_raw.side_effect = [
(200, {}, json.dumps(elastic_resp)),
(200, {}, json.dumps(elastic_resp)),
]
rv = client.get(
"/work/2x5qvct2dnhrbctqa2q2uyut6a/access/wayback/https://www.federalreserve.gov/econresdata/feds/2015/files/2015118pap.pdf",
allow_redirects=False,
)
assert rv.status_code == 302
assert (
rv.headers["Location"]
== "https://web.archive.org/web/20200206164725id_/https://www.federalreserve.gov/econresdata/feds/2015/files/2015118pap.pdf"
)
# check that URL is validated
rv = client.get(
"/work/2x5qvct2dnhrbctqa2q2uyut6a/access/wayback/https://www.federalreserve.gov/econresdata/feds/2015/files/2015118pap.pdf.DUMMY",
allow_redirects=False,
)
assert rv.status_code == 404
def test_access_redirect_encoding(client: Any, mocker: Any) -> None:
with open("tests/files/elastic_get_work_a6gvpil4brdgzhqyaog3ftngqe.json") as f:
elastic_ia_resp = json.loads(f.read())
with open("tests/files/elastic_get_work_ao5l3ykgbvg2vfpqe2y5qold5y.json") as f:
elastic_wayback_resp = json.loads(f.read())
es_raw = mocker.patch(
"elasticsearch.connection.Urllib3HttpConnection.perform_request"
)
es_raw.side_effect = [
(200, {}, json.dumps(elastic_ia_resp)),
(200, {}, json.dumps(elastic_wayback_resp)),
]
# tricky "URL encoding in archive.org path" case
rv = client.get(
"/work/a6gvpil4brdgzhqyaog3ftngqe/access/ia_file/crossref-pre-1909-scholarly-works/10.1016%252Fs0140-6736%252802%252912493-7.zip/10.1016%252Fs0140-6736%252802%252912928-x.pdf",
allow_redirects=False,
)
assert rv.status_code == 302
assert (
rv.headers["Location"]
== "https://archive.org/download/crossref-pre-1909-scholarly-works/10.1016%252Fs0140-6736%252802%252912493-7.zip/10.1016%252Fs0140-6736%252802%252912928-x.pdf"
)
# spaces ("%20" vs "+")
rv = client.get(
"/work/ao5l3ykgbvg2vfpqe2y5qold5y/access/wayback/http://sudjms.net/issues/5-4/pdf/8)A%20comparison%20study%20of%20histochemical%20staining%20of%20various%20tissues%20after.pdf",
allow_redirects=False,
)
assert rv.status_code == 302
assert (
rv.headers["Location"]
== "https://web.archive.org/web/20170811115414id_/http://sudjms.net/issues/5-4/pdf/8)A%20comparison%20study%20of%20histochemical%20staining%20of%20various%20tissues%20after.pdf"
)
|