-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathtest_utils.py
More file actions
477 lines (394 loc) · 15.8 KB
/
Copy pathtest_utils.py
File metadata and controls
477 lines (394 loc) · 15.8 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
from django.test import SimpleTestCase
from bs4 import BeautifulSoup
from core.templatetags.svg_icon import svg_icon
from core.utils import (
ASK_CFPB_LINKS,
NON_CFPB_LINKS,
UNSAFE_CHARACTERS,
add_cfpb_link_markup,
add_link_markup,
extract_answers_from_request,
format_file_size,
get_body_html,
get_cfpb_link_tags,
get_link_tags,
make_safe,
text_matches_href,
)
class FakeRequest:
# Quick way to simulate a request object with a POST attribute
def __init__(self, params):
self.POST = params
class TestSearchMakeSafe(SimpleTestCase):
def test_make_safe(self):
term = "What is a mortgage"
unsafe_term = term + "".join(UNSAFE_CHARACTERS)
self.assertEqual(term, make_safe(unsafe_term))
def test_make_safe_max_length(self):
term = """We're the Consumer Financial Protection Bureau (CFPB),
a U.S. government agency that makes sure banks,
lenders, and other financial companies treat you fairly."""
self.assertEqual(75, len(make_safe(term)))
class ExtractAnswersTest(SimpleTestCase):
def test_no_answers_to_extract(self):
request = FakeRequest({"unrelated_key": "unrelated_value"})
result = extract_answers_from_request(request)
assert result == []
def test_multiple_answers_to_extract(self):
request = FakeRequest(
{
"unrelated_key": "unrelated_value",
"questionid_first": "some_answer",
"questionid_another": "another_answer",
}
)
result = extract_answers_from_request(request)
assert result == [
("another", "another_answer"),
("first", "some_answer"),
]
class FormatFileSizeTests(SimpleTestCase):
def test_format_file_size_bytes(self):
self.assertEqual(format_file_size(124), "124 B")
def test_format_file_size_one_kilobyte(self):
self.assertEqual(format_file_size(1024), "1 KB")
def test_format_file_size_kilobytes(self):
self.assertEqual(format_file_size(1024 * 900), "900 KB")
def test_format_file_size_megabytes(self):
self.assertEqual(format_file_size(1024 * 9000), "9 MB")
def test_format_file_size_gigabytes(self):
self.assertEqual(format_file_size(1024 * 9000000), "9 GB")
def test_format_file_size_terabytes(self):
self.assertEqual(format_file_size(1024 * 9000000000), "8 TB")
class CfpbLinkUtilsTests(SimpleTestCase):
def test_get_cfpb_link_tags(self):
self.assertEqual(
get_cfpb_link_tags(
'outer <cfpb-link><a href="">inner</a></cfpb-link>'
),
['<cfpb-link><a href="">inner</a></cfpb-link>'],
)
def test_add_cfpb_link_markup_invalid(self):
tag = "not a valid tag"
path = "/about-us/blog/"
self.assertIsNone(add_cfpb_link_markup(tag, path))
def test_add_cfpb_link_markup_anchor(self):
tag = '<cfpb-link><a href="/about-us/blog/#anchor">bar</a></cfpb-link>'
path = "/about-us/blog/"
self.assertEqual(
add_cfpb_link_markup(tag, path),
'<cfpb-link><a href="#anchor">bar</a></cfpb-link>',
)
def check_external_cfpb_link(self, url):
tag = f'<cfpb-link><a href="{url}">foo</a></cfpb-link>'
path = "/about-us/blog/"
expected_html = (
'<cfpb-link link-variant="external">'
f'<a href="{url}">foo</a></cfpb-link>'
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_cfpb_link_markup(tag, path), str(expected_tag))
def check_download_cfpb_link(self, url):
tag = f'<cfpb-link><a href="{url}">foo</a></cfpb-link>'
path = "/about-us/blog/"
expected_html = (
'<cfpb-link link-variant="download">'
f'<a href="{url}">foo</a></cfpb-link>'
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_cfpb_link_markup(tag, path), str(expected_tag))
def test_usa_gov(self):
url = "https://www.usa.gov"
self.check_external_cfpb_link(url)
def test_test_pdf(self):
url = "test.pdf"
self.check_download_cfpb_link(url)
class LinkUtilsTests(SimpleTestCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.external_link_icon = svg_icon("external-link")
def test_get_body_html_simple(self):
self.assertEqual(
get_body_html("outer <body>inner</body>"), "<body>inner</body>"
)
def test_get_body_html_full(self):
self.assertEqual(
get_body_html(
"<html><head>outer</head>"
"<body><span>inner</span></body>"
"</html>"
),
"<body><span>inner</span></body>",
)
def test_get_body_html_with_attributes(self):
self.assertEqual(
get_body_html('outer <body class="test">inner</body>'),
'<body class="test">inner</body>',
)
def test_get_body_html_empty(self):
self.assertEqual(get_body_html("outer <body></body>"), None)
def test_get_link_tags(self):
self.assertEqual(
get_link_tags('outer <a href="">inner</a>'),
[
'<a href="">inner</a>',
],
)
def test_get_link_tags_does_not_match_aside(self):
self.assertEqual(
get_link_tags('outer <aside>inner <a href="">link</a></aside>'),
[
'<a href="">link</a>',
],
)
def test_get_link_tags_spacing(self):
"""Test for case where tag renders with only whitespace after tag name
Template conditions within a tag, e.g.,
`<a {% if some_condition %}class="some-class"{% endif %}>`
can result in output with only whitespace following the tag name
if the condition is false, like: `<a >`.
"""
self.assertEqual(
get_link_tags("outer <a >inner</a>"),
[
"<a >inner</a>",
],
)
def test_get_link_tags_does_not_match_wc(self):
self.assertEqual(
get_link_tags('outer <cfpb-link><a href="">inner</a></cfpb-link>'),
[],
)
def test_add_link_markup_invalid(self):
tag = "not a valid tag"
path = "/about-us/blog/"
self.assertIsNone(add_link_markup(tag, path))
def test_add_link_markup_anchor(self):
tag = '<a href="/about-us/blog/#anchor">bar</a>'
path = "/about-us/blog/"
self.assertEqual(
add_link_markup(tag, path), '<a class="" href="#anchor">bar</a>'
)
def check_external_link(self, url, expected_pretty_href=None):
tag = f'<a href="{url}">foo</a>'
path = "/about-us/blog/"
data_pretty_href = ""
expected_pretty_href = expected_pretty_href or url
# Only Ask CFPB links get the data-pretty-href attribute
if ASK_CFPB_LINKS.match(url):
data_pretty_href = f'data-pretty-href="{expected_pretty_href}" '
expected_html = (
'<a class="a-link" '
f"{data_pretty_href}"
f'href="{url}">'
'<span class="a-link__text">foo</span> '
f"{self.external_link_icon}"
"</a>"
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_link_markup(tag, path), str(expected_tag))
def test_govdelivery_url1(self):
url = "https://public.govdelivery.com"
self.check_external_link(url)
def test_govdelivery_url2(self):
url = "https://www.govdelivery.com"
self.check_external_link(url)
def test_govdelivery_url3(self):
url = "https://public.govdelivery.com/something"
self.check_external_link(url)
def test_dot_gov_urls(self):
url = "https://www.federalreserve.gov"
self.check_external_link(url, expected_pretty_href=None)
def test_dot_gov_urls2(self):
url = "https://www.federalreserve.gov/something"
self.check_external_link(url, expected_pretty_href=None)
def test_content_cfgov(self):
url = "http://content.cfpb.gov"
tag = f"<a href='{url}'>foo</a>"
path = "/"
self.assertIsNone(add_link_markup(tag, path))
def test_urls_with_gov_in_them(self):
url = "https://www.realgovsite.lol"
self.check_external_link(url)
def test_external_links_get_signed_and_icon_added(self):
url = "https://example.com"
self.check_external_link(url)
def test_external_download_still_uses_external_link_icon(self):
url = "https://example.com/file.pdf"
self.check_external_link(url)
def test_external_link_if_link_already_includes_left_icon(self):
url = "https://example.com"
tag = (
f'<a class="a-link" href="{url}">'
"<svg></svg>"
'<span class="a-link__text">foo</span>'
"</a>"
)
path = "/about-us/blog/"
expected_html = (
'<a class="a-link" '
f'href="{url}">'
"<svg></svg>"
'<span class="a-link__text">foo</span> '
f"{self.external_link_icon}"
"</a>"
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_link_markup(tag, path), str(expected_tag))
def test_ask_short_url(self):
# Valid Ask CFPB URLs
urls = [
"/ask-cfpb/what-is-a-construction-loan-en-108/",
"https://cfpb.gov/ask-cfpb/what-is-a-construction-loan-en-108/",
"https://consumerfinance.gov/ask-cfpb/what-is-a-construction-loan-en-108/", # noqa: E501
"https://www.consumerfinance.gov/ask-cfpb/what-is-a-construction-loan-en-108/", # noqa: E501
]
path = "/"
for url in urls:
tag = f"<a href='{url}'>foo</a>"
self.assertIn(
'data-pretty-href="cfpb.gov/askcfpb/108"',
add_link_markup(tag, path),
)
# Invalid Ask CFPB URLs
urls = [
"/ask-cfpb/not-a-valid-link/",
"/askcfpb/123",
"https://consumerfinance.gov/ask-cfpb-in-the-url",
"https://consumerfinance.gov/ask-cfpb-in-the-url/123",
]
for url in urls:
tag = f"<a href='{url}'>foo</a>"
self.assertIsNone(add_link_markup(tag, path))
def test_link_button(self):
url = "https://example.com"
tag = f'<a class="a-btn" href="{url}">Click</a>'
path = "/about-us/blog/"
expected_html = (
'<a class="a-btn" '
f'href="{url}">'
"<span>Click</span>"
f"{self.external_link_icon}"
"</a>"
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_link_markup(tag, path), str(expected_tag))
def test_link_with_whitespace_in_text(self):
url = "https://example.com"
tag = f'<a href="{url}">\nClick <strong>here</strong> now! </a>'
path = "/about-us/blog/"
expected_html = (
f'<a class="a-link" href="{url}">'
'<span class="a-link__text">'
"Click <strong>here</strong> now!</span> "
f"{self.external_link_icon}"
"</a>"
)
expected_tag = BeautifulSoup(expected_html, "html.parser")
self.assertEqual(add_link_markup(tag, path), str(expected_tag))
def test_non_cfpb_links(self):
cfpb_urls = [
"http://consumerfinance.gov",
"https://consumerfinance.gov",
"http://cfpb.gov",
"https://cfpb.gov",
"http://www.consumerfinance.gov",
"https://www.consumerfinance.gov",
"http://localhost",
"https://localhost",
"http://localhost:8000",
"http://content.localhost:8000",
"https://www.consumerfinance.gov/foo/bar/",
]
for url in cfpb_urls:
with self.subTest(url=url):
self.assertFalse(NON_CFPB_LINKS.match(url))
non_cfpb_urls = [
"https://example.com/page/",
"https://example.com/foo/www.consumerfinance.gov/bar/",
"http://example.com/foo/cfpb.gov/bar/",
"https://subdomain.example.com:1234",
"https://subdomain.example.com:1234/foo/",
"http://notconsumerfinance.gov",
]
for url in non_cfpb_urls:
with self.subTest(url=url):
self.assertTrue(NON_CFPB_LINKS.match(url))
class TextMatchesHrefTests(SimpleTestCase):
def test_text_matchs_href(self):
self.assertTrue(
text_matches_href("http://example.com", "https://example.com")
)
self.assertTrue(
text_matches_href("https://example.com/", "http://example.com")
)
def test_trailing_slash(self):
self.assertTrue(
text_matches_href("https://example.com", "https://example.com/")
)
self.assertTrue(text_matches_href("/foo/bar/", "/foo/bar"))
self.assertTrue(text_matches_href("/foo/bar", "/foo/bar/"))
def test_relative_urls(self):
self.assertTrue(text_matches_href("/about", "/about/"))
self.assertTrue(text_matches_href("/about/", "/about"))
def test_domains_and_paths(self):
for text, href in [
(
"https://consumerfinance.gov/foo",
"http://www.consumerfinance.gov/foo",
),
(
"consumerfinance.gov/bar/baz",
"https://www.consumerfinance.gov/bar/baz/",
),
(
"consumerfinance.gov/bar/baz",
"/bar/baz/",
),
("https://example.com/about", "https://example.com/about"),
]:
with self.subTest(text=text, href=href):
self.assertTrue(text_matches_href(text, href))
for text, href in [
(
"https://www.consumerfinance.gov/foo",
"https://example.com/foo",
),
("https://example.com/about", "https://example.com/contact"),
]:
with self.subTest(text=text, href=href):
self.assertFalse(text_matches_href(text, href))
def test_whitespace(self):
self.assertTrue(
text_matches_href(
" https://example.com ", "https://example.com/"
)
)
def test_case_sensitivity(self):
self.assertFalse(
text_matches_href("https://Example.com", "https://example.com")
)
def test_naked_domain_matches_www_domain(self):
for text, href in [
("example.com", "https://www.example.com"),
("example.com/foo", "https://www.example.com/foo"),
("https://example.com", "https://www.example.com"),
("https://www.example.com", "https://example.com"),
("www.example.com", "https://example.com"),
("www.example.com", "https://www.example.com"),
("www.example.com/foo", "https://example.com/foo"),
]:
with self.subTest(text=text, href=href):
self.assertTrue(text_matches_href(text, href))
for text, href in [
("example.com", "https://www.other.com"),
("www.example.com", "https://other.com"),
]:
with self.subTest(text=text, href=href):
self.assertFalse(text_matches_href(text, href))
def test_urlparse_exceptions(self):
# https://discuss.python.org/t/urlparse-can-sometimes-raise-an-exception-should-it/44465
self.assertFalse(text_matches_href("https://\uff03", "https://foo"))
self.assertFalse(text_matches_href("https://\uff03", "https://\uff1a"))
self.assertTrue(text_matches_href("https://\uff03", "https://\uff03"))