generated from chrissimpkins/py-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_main.py
405 lines (302 loc) · 13.9 KB
/
test_main.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import pytest
from fdiff.__main__ import run
ROBOTO_BEFORE_PATH = os.path.join("tests", "testfiles", "Roboto-Regular.subset1.ttf")
ROBOTO_AFTER_PATH = os.path.join("tests", "testfiles", "Roboto-Regular.subset2.ttf")
ROBOTO_UDIFF_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_expected.txt"
)
ROBOTO_UDIFF_COLOR_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_color_expected.txt"
)
ROBOTO_UDIFF_1CONTEXT_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_1context_expected.txt"
)
ROBOTO_UDIFF_HEADONLY_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_headonly_expected.txt"
)
ROBOTO_UDIFF_HEADPOSTONLY_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_headpostonly_expected.txt"
)
ROBOTO_UDIFF_EXCLUDE_HEADPOST_EXPECTED_PATH = os.path.join(
"tests", "testfiles", "roboto_udiff_ex_headpost_expected.txt"
)
ROBOTO_BEFORE_URL = "https://github.com/source-foundry/fdiff/raw/master/tests/testfiles/Roboto-Regular.subset1.ttf"
ROBOTO_AFTER_URL = "https://github.com/source-foundry/fdiff/raw/master/tests/testfiles/Roboto-Regular.subset2.ttf"
URL_404 = "https://httpbin.org/status/404"
# Setup: define the expected diff text for unified diff
with open(ROBOTO_UDIFF_EXPECTED_PATH, "r") as robo_udiff:
ROBOTO_UDIFF_EXPECTED = robo_udiff.read()
# Setup: define the expected diff text for unified color diff
with open(ROBOTO_UDIFF_COLOR_EXPECTED_PATH, "r") as robo_udiff_color:
ROBOTO_UDIFF_COLOR_EXPECTED = robo_udiff_color.read()
# Setup: define the expected diff text for unified color diff
with open(ROBOTO_UDIFF_1CONTEXT_EXPECTED_PATH, "r") as robo_udiff_contextlines:
ROBOTO_UDIFF_1CONTEXT_EXPECTED = robo_udiff_contextlines.read()
# Setup: define the expected diff text for head table only diff
with open(ROBOTO_UDIFF_HEADONLY_EXPECTED_PATH, "r") as robo_udiff_headonly:
ROBOTO_UDIFF_HEADONLY_EXPECTED = robo_udiff_headonly.read()
# Setup: define the expected diff text for head and post table only diff
with open(ROBOTO_UDIFF_HEADPOSTONLY_EXPECTED_PATH, "r") as robo_udiff_headpostonly:
ROBOTO_UDIFF_HEADPOSTONLY_EXPECTED = robo_udiff_headpostonly.read()
# Setup: define the expected diff text for head and post table only diff
with open(ROBOTO_UDIFF_EXCLUDE_HEADPOST_EXPECTED_PATH, "r") as robo_udiff_ex_headpost:
ROBOTO_UDIFF_EXCLUDE_HEADPOST_EXPECTED = robo_udiff_ex_headpost.read()
#
# File path validations tests
#
def test_main_filepath_validations_false_firstfont(capsys):
test_path = os.path.join("tests", "testfiles", "bogus-font.ttf")
args = [test_path, test_path]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR: The file path")
assert exit_info.value.code == 1
def test_main_filepath_validations_false_secondfont(capsys):
test_path_2 = os.path.join("tests", "testfiles", "bogus-font.ttf")
args = [ROBOTO_BEFORE_PATH, test_path_2]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR: The file path")
assert exit_info.value.code == 1
#
# Mutually exclusive argument tests
#
def test_main_include_exclude_defined_simultaneously(capsys):
args = [
"--include",
"head",
"--exclude",
"head",
ROBOTO_BEFORE_PATH,
ROBOTO_AFTER_PATH,
]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.endswith(
"error: argument --exclude: not allowed with argument --include\n"
)
assert exit_info.value.code == 2
#
# Unified diff integration tests
#
def test_main_run_unified_default_local_files_no_diff(capsys):
"""Test default behavior when there is no difference in font files under evaluation"""
args = [ROBOTO_BEFORE_PATH, ROBOTO_BEFORE_PATH]
run(args)
captured = capsys.readouterr()
assert captured.out.startswith("[*] There is no difference between the files.")
def test_main_run_unified_default_local_files(capsys):
args = [ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_local_files_without_mp_optimizations(capsys):
args = ["--nomp", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_default_remote_files(capsys):
args = [ROBOTO_BEFORE_URL, ROBOTO_AFTER_URL]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x == 0:
assert line[0:9] == "--- https"
elif x == 1:
assert line[0:9] == "+++ https"
else:
assert line == expected_string_list[x]
def test_main_run_unified_default_404(capsys):
with pytest.raises(SystemExit):
args = [URL_404, URL_404]
run(args)
captured = capsys.readouterr()
assert captured.out.startswith("[*] ERROR:")
assert "HTTP status code 404" in captured.out
def test_main_run_unified_color(capsys):
args = ["-c", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_COLOR_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_context_lines_1(capsys):
args = ["-l", "1", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_1CONTEXT_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_head_table_only(capsys):
args = ["--include", "head", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_HEADONLY_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_head_post_tables_only(capsys):
args = ["--include", "head,post", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_HEADPOSTONLY_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_run_unified_exclude_head_post_tables(capsys):
args = ["--exclude", "head,post", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
expected_string_list = ROBOTO_UDIFF_EXCLUDE_HEADPOST_EXPECTED.split("\n")
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x in (0, 1):
assert line[0:9] == expected_string_list[x][0:9]
else:
assert line == expected_string_list[x]
def test_main_include_with_bad_table_definition(capsys):
args = ["--include", "bogus", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR:")
assert exit_info.value.code == 1
def test_main_include_with_bad_table_definition_in_multi_table_request(capsys):
args = ["--include", "head,bogus", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR:")
assert exit_info.value.code == 1
def test_main_exclude_with_bad_table_definition(capsys):
args = ["--exclude", "bogus", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR:")
assert exit_info.value.code == 1
def test_main_exclude_with_bad_table_definition_in_multi_table_request(capsys):
args = ["--exclude", "head,bogus", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
with pytest.raises(SystemExit) as exit_info:
run(args)
captured = capsys.readouterr()
assert captured.err.startswith("[*] ERROR:")
assert exit_info.value.code == 1
def test_main_head_request(capsys):
args = ["--head", "4", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
# includes a newline at the end of the last line of output
# which makes the total # of lines in the list == n + 1
assert len(res_string_list) == 5
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x == 0:
assert line.startswith("---")
elif x == 1:
assert line.startswith("+++")
elif x == 2:
assert line == "@@ -4,34 +4,34 @@"
elif x == 3:
assert line == " <GlyphOrder>"
else:
assert line == ""
def test_main_tail_request(capsys):
args = ["--tail", "2", ROBOTO_BEFORE_PATH, ROBOTO_AFTER_PATH]
run(args)
captured = capsys.readouterr()
res_string_list = captured.out.split("\n")
# includes a newline at the end of the last line of output
# which makes the total # of lines in the list == n + 1
assert len(res_string_list) == 3
# have to handle the tests for the top two file path lines
# differently than the rest of the comparisons because
# the time is defined using local platform settings
# which makes tests fail on different remote CI testing services
for x, line in enumerate(res_string_list):
# treat top two lines of the diff as comparison of first 10 chars only
if x == 0:
assert line == " </Lookup>"
elif x == 1:
assert line == " </LookupList>"
else:
assert line == ""