-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathroutes_test.py
More file actions
306 lines (210 loc) · 8.51 KB
/
routes_test.py
File metadata and controls
306 lines (210 loc) · 8.51 KB
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
from server import app, talisman
# Create test client without https redirect
# (normally taken care of by running in debug)
@pytest.fixture
def client():
with app.test_client() as client:
talisman.force_https = False
yield client
# Add a function to test routes with optional location
def assert_route(client, path, status, location=None):
response = client.get(path)
redirect_loc = response.location
if redirect_loc:
redirect_loc = redirect_loc.replace("http://localhost", "")
if location is not None:
assert response.status_code == status and redirect_loc == location
else:
assert response.status_code == status
def test_index(client):
assert_route(client, "/", 200)
def test_reports(client):
assert_route(client, "/reports", 200)
def test_reports_with_slash(client):
assert_route(client, "/reports/", 301, "/reports")
def test_report_state_of_the_web(client):
assert_route(client, "/reports/state-of-the-web", 200)
def test_report_state_of_the_web_with_slash(client):
assert_route(client, "/reports/state-of-the-web/", 301, "/reports/state-of-the-web")
def test_reports_www(client):
assert_route(
client,
"https://www.httparchive.org/reports",
301,
"https://httparchive.org/reports",
)
def test_reports_beta(client):
assert_route(
client,
"https://beta.httparchive.org/reports",
301,
"https://httparchive.org/reports",
)
def test_reports_legacy(client):
assert_route(
client,
"https://legacy.httparchive.org/reports",
301,
"https://httparchive.org/reports",
)
def test_report_state_of_the_web_lens(client):
response = client.get("/reports/state-of-the-web?lens=top1k")
assert (
response.status_code == 200
and '<option value="top1k" selected>' in response.get_data(as_text=True)
)
def test_reports_json(client):
response = client.get("/reports?f=json")
assert response.status_code == 200 and "application/json" in response.headers.get(
"Content-Type"
)
def test_report_state_of_the_web_json(client):
response = client.get("/reports/state-of-the-web?f=json")
assert response.status_code == 200 and "application/json" in response.headers.get(
"Content-Type"
)
def test_invalid_report(client):
assert_route(client, "/reports/test", 404)
def test_report_invalid_start_date(client):
assert_route(
client, "/reports/state-of-the-web?start=1900_05_15&end=latest&view=list", 400
)
def test_report_invalid_end_date(client):
assert_route(
client, "/reports/state-of-the-web?start=earliest&end=1900_05_15&view=list", 400
)
def test_report_crux_max_date(client):
assert_route(client, "/reports/chrome-ux-report", 200)
def test_report_latest(client):
assert_route(client, "/reports/state-of-the-web?end=latest&view=list", 200)
def test_report_earliest(client):
assert_route(client, "/reports/state-of-the-web?start=earliest&view=list", 200)
def test_report_earliest_end(client):
assert_route(
client, "/reports/state-of-the-web?start=earliest&end=earliest&view=list", 200
)
def test_about(client):
assert_route(client, "/about", 200)
def test_about_with_slash(client):
assert_route(client, "/about/", 301, "/about")
def test_faq(client):
assert_route(client, "/faq", 200)
def test_faq_with_slash(client):
assert_route(client, "/faq/", 301, "/faq")
def test_legacy_page(client):
assert_route(client, "/index.php", 301, "/")
def test_robots_txt(client):
response = client.get("/robots.txt")
assert response.status_code == 200 and "text/plain" in response.headers.get(
"Content-Type"
)
def test_sitemap(client):
response = client.get("/sitemap.xml")
assert response.status_code == 200 and "text/xml" in response.headers.get(
"Content-Type"
)
def test_favicon(client):
response = client.get("/favicon.ico")
# Note flask sometimes returns image/x-icon and sometimes image/vnd.microsoft.icon
assert response.status_code == 200 and "image/" in response.headers.get(
"Content-Type"
)
def test_metric(client):
response = client.get("/metric.json")
assert response.status_code == 200 and "id parameter required" in response.get_data(
as_text=True
)
def test_metric_speedindex(client):
response = client.get("/metric.json?id=speedIndex")
assert (
response.status_code == 200
and '"description":"How quickly the contents of a page'
in response.get_data(as_text=True)
)
def test_render_efonts_cache_control(client):
response = client.get("/static/fonts/opensans-latin-700.woff2")
assert response.status_code == 200 and "max-age=3153600" in response.headers.get(
"Cache-Control"
)
def test_render_js_cache_control(client):
response = client.get("/static/js/main.js")
assert response.status_code == 200 and "max-age=10800" in response.headers.get(
"Cache-Control"
)
def test_tech_report_compare(client):
response = client.get(
"/reports/techreport/tech?tech=jQuery%2CWordPress&geo=ALL&rank=ALL"
)
assert response.status_code == 200
def test_tech_report_drilldown(client):
response = client.get("/reports/techreport/tech?geo=ALL&rank=ALL")
assert response.status_code == 200
def test_tech_report_drilldown_wordpress(client):
response = client.get("/reports/techreport/tech?tech=WordPress&geo=ALL&rank=ALL")
assert response.status_code == 200
def test_tech_report_category(client):
response = client.get("/reports/techreport/category?geo=ALL&rank=ALL&category=CMS")
assert response.status_code == 200
def test_tech_report_category_pages(client):
response = client.get(
"/reports/techreport/category?geo=ALL&rank=ALL&category=CMS&page=2"
)
assert response.status_code == 200
def test_tech_report_category_pages_fallback(client):
response = client.get(
"/reports/techreport/category?geo=ALL&rank=ALL&category=CMS&page=defaults_to_1"
)
assert response.status_code == 200
def test_tech_report_landing_valid_page(client):
response = client.get("/reports/techreport/landing")
assert response.status_code == 200
def test_tech_report_landing_redirect(client):
assert_route(client, "/reports/techreport", 301, "/reports/techreport/landing")
def test_tech_report_drilldown_page(client):
response = client.get("/reports/techreport/drilldown")
assert response.status_code == 200
def test_tech_report_comparison_page(client):
response = client.get("/reports/techreport/comparison")
assert response.status_code == 200
def test_tech_report_category_page(client):
response = client.get("/reports/techreport/category")
assert response.status_code == 200
def test_tech_report_invalid_page(client):
response = client.get("/reports/techreport/invalid_page_id")
assert response.status_code == 404
def test_tech_report_drilldown_with_dates(client):
response = client.get(
"/reports/techreport/tech?tech=WordPress&geo=ALL&rank=ALL&start=2024-01-01&end=2024-03-01"
)
data = response.get_data(as_text=True)
assert response.status_code == 200
assert 'value="2024-01-01" selected' in data
assert 'value="2024-03-01" selected' in data
assert 'value="2025-01-01" selected' not in data
def test_tech_report_comparison_with_dates(client):
response = client.get(
"/reports/techreport/tech?tech=jQuery%2CWordPress&geo=ALL&rank=ALL&start=2024-01-01&end=2024-03-01"
)
assert response.status_code == 200
data = response.get_data(as_text=True)
assert response.status_code == 200
assert 'value="2024-01-01" selected' in data
assert 'value="2024-03-01" selected' in data
assert 'value="2025-01-01" selected' not in data
def test_well_known_atproto_did(client):
response = client.get("/.well-known/atproto-did")
assert response.status_code == 200