-
Notifications
You must be signed in to change notification settings - Fork 10
/
test_pyformat.py
executable file
·472 lines (403 loc) · 14.8 KB
/
test_pyformat.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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Test suite for pyformat."""
from __future__ import unicode_literals
import contextlib
import io
import os
import shutil
import subprocess
import sys
import tempfile
import unittest
import pyformat
ROOT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
if (
'PYFORMAT_COVERAGE' in os.environ and
int(os.environ['PYFORMAT_COVERAGE'])
):
PYFORMAT_COMMAND = ['coverage', 'run', '--branch', '--parallel',
'--omit=*/distutils/*,*/site-packages/*',
os.path.join(ROOT_DIRECTORY, 'pyformat.py')]
else:
# We need to specify the executable to make sure the correct Python
# interpreter gets used.
PYFORMAT_COMMAND = [sys.executable,
os.path.join(
ROOT_DIRECTORY,
'pyformat.py')] # pragma: no cover
class TestUnits(unittest.TestCase):
def test_format_code(self):
self.assertEqual(
"x = 'abc' \\\n 'next'\n",
pyformat.format_code(
'x = "abc" \\\n"next"\n'))
def test_format_code_with_aggressive(self):
self.assertEqual(
'True\n',
pyformat.format_code(
'import os\nTrue\n',
aggressive=True))
def test_format_code_without_aggressive(self):
self.assertEqual(
'import os\nTrue\n',
pyformat.format_code(
'import os\nTrue\n',
aggressive=False))
def test_format_code_with_unicode(self):
self.assertEqual(
"x = 'abc' \\\n 'ö'\n",
pyformat.format_code(
'x = "abc" \\\n"ö"\n'))
def test_format_code_with_remove_all_unused_imports(self):
self.assertEqual(
"x = 'abc' \\\n 'ö'\n",
pyformat.format_code(
'import my_module\nx = "abc" \\\n"ö"\n',
aggressive=True,
remove_all_unused_imports=True))
def test_format_code_with_remove_unused_variables(self):
self.assertEqual(
'def test():\n return 42\n',
pyformat.format_code(
'def test():\n x = 4\n return 42',
aggressive=True,
remove_unused_variables=True))
def test_format_multiple_files(self):
with temporary_file('''\
if True:
x = "abc"
''') as filename:
output_file = io.StringIO()
result = pyformat.format_multiple_files(
[filename],
pyformat.parse_args(['my_fake_program', '--in-place', '']),
standard_out=output_file,
standard_error=None)
self.assertTrue(result)
with open(filename) as f:
self.assertEqual('''\
if True:
x = 'abc'
''', f.read())
def test_format_multiple_files_should_return_false_on_no_change(self):
with temporary_file('''\
if True:
x = 'abc'
''') as filename:
output_file = io.StringIO()
result = pyformat.format_multiple_files(
[filename],
pyformat.parse_args(['my_fake_program', '--in-place', '']),
standard_out=output_file,
standard_error=None)
self.assertFalse(result[0])
def test_format_multiple_files_with_nonexistent_file(self):
output_file = io.StringIO()
result = pyformat.format_multiple_files(
['nonexistent_file'],
pyformat.parse_args(['my_fake_program', '--in-place', '']),
standard_out=output_file,
standard_error=output_file)
self.assertFalse(result[0])
self.assertTrue(result[1])
def test_format_multiple_files_with_nonexistent_file_and_verbose(self):
output_file = io.StringIO()
result = pyformat.format_multiple_files(
['nonexistent_file'],
pyformat.parse_args(['my_fake_program',
'--in-place', '--verbose', '']),
standard_out=output_file,
standard_error=output_file)
self.assertFalse(result[0])
self.assertTrue(result[1])
class TestSystem(unittest.TestCase):
def test_diff(self):
with temporary_file('''\
import os
x = "abc"
''') as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', filename],
standard_out=output_file,
standard_error=None)
self.assertEqual('''\
@@ -1,2 +1,2 @@
import os
-x = "abc"
+x = 'abc'
''', '\n'.join(output_file.getvalue().split('\n')[2:]))
def test_diff_with_aggressive(self):
with temporary_file('''\
import os
x = "abc"
''') as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', '--aggressive', filename],
standard_out=output_file,
standard_error=None)
self.assertEqual('''\
@@ -1,2 +1 @@
-import os
-x = "abc"
+x = 'abc'
''', '\n'.join(output_file.getvalue().split('\n')[2:]))
def test_diff_with_empty_file(self):
with temporary_file('') as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', filename],
standard_out=output_file,
standard_error=None)
self.assertEqual('', output_file.getvalue())
def test_diff_with_encoding_declaration(self):
with temporary_file("""\
# coding: utf-8
import re
import os
import my_own_module
x = 1
""") as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', '--aggressive', filename],
standard_out=output_file,
standard_error=None)
self.assertEqual("""\
# coding: utf-8
-import re
-import os
import my_own_module
x = 1
""", '\n'.join(output_file.getvalue().split('\n')[3:]))
def test_diff_with_nonexistent_file(self):
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', 'nonexistent_file'],
standard_out=output_file,
standard_error=output_file)
self.assertIn('no such file', output_file.getvalue().lower())
def test_verbose(self):
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', '--verbose', __file__],
standard_out=output_file,
standard_error=output_file)
self.assertIn('.py', output_file.getvalue())
def test_in_place(self):
with temporary_file('''\
if True:
x = "abc"
''') as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', '--in-place', filename],
standard_out=output_file,
standard_error=None)
with open(filename) as f:
self.assertEqual('''\
if True:
x = 'abc'
''', f.read())
def test_multiple_jobs(self):
with temporary_file('''\
if True:
x = "abc"
''') as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program', '--in-place',
'--jobs=2', filename],
standard_out=output_file,
standard_error=None)
with open(filename) as f:
self.assertEqual('''\
if True:
x = 'abc'
''', f.read())
def test_multiple_jobs_should_require_in_place(self):
output_file = io.StringIO()
self.assertEqual(
2,
pyformat._main(argv=['my_fake_program',
'--jobs=2', __file__],
standard_out=output_file,
standard_error=output_file))
self.assertIn('requires --in-place', output_file.getvalue())
def test_jobs_less_than_one_should_default_to_cpu_count(self):
args = pyformat.parse_args(['my_fake_program',
'--jobs=0', __file__])
self.assertGreater(args.jobs, 0)
def test_remove_all_unused_imports_requires_aggressive(self):
output_file = io.StringIO()
self.assertEqual(
2,
pyformat._main(argv=['my_fake_program',
'--remove-all-unused-imports', __file__],
standard_out=output_file,
standard_error=output_file))
self.assertIn('requires --aggressive', output_file.getvalue())
def test_remove_unused_variables_requires_aggressive(self):
output_file = io.StringIO()
self.assertEqual(
2,
pyformat._main(
argv=['my_fake_program',
'--remove-unused-variables', __file__],
standard_out=output_file,
standard_error=output_file))
self.assertIn('requires --aggressive', output_file.getvalue())
def test_ignore_hidden_directories(self):
with temporary_directory() as directory:
with temporary_directory(prefix='.',
directory=directory) as inner_directory:
with temporary_file("""\
if True:
x = "abc"
""", directory=inner_directory):
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--recursive',
directory],
standard_out=output_file,
standard_error=None)
self.assertEqual(
'',
output_file.getvalue().strip())
def test_recursive(self):
with temporary_directory() as directory:
with temporary_file("""\
if True:
x = "abc"
""", prefix='food', directory=directory):
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--recursive',
'--exclude=zap',
'--exclude=x*oo*',
directory],
standard_out=output_file,
standard_error=None)
self.assertEqual("""\
@@ -1,2 +1,2 @@
if True:
- x = "abc"
+ x = 'abc'
""", '\n'.join(output_file.getvalue().split('\n')[2:]))
def test_exclude(self):
with temporary_directory() as directory:
with temporary_file("""\
if True:
x = "abc"
""", prefix='food', directory=directory):
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--recursive',
'--exclude=zap',
'--exclude=*oo*',
directory],
standard_out=output_file,
standard_error=None)
self.assertEqual(
'',
output_file.getvalue().strip())
def test_remove_all_unused_imports(self):
with temporary_file("""\
import my_module
def test():
return 42
""") as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--in-place',
'--aggressive',
'--remove-all-unused-imports',
filename],
standard_out=output_file,
standard_error=None)
with open(filename) as f:
self.assertEqual('''\
def test():
return 42
''', f.read())
def test_remove_unused_variables(self):
with temporary_file("""\
def test():
x = 43
return 42
""") as filename:
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--in-place',
'--aggressive',
'--remove-unused-variables',
filename],
standard_out=output_file,
standard_error=None)
with open(filename) as f:
self.assertEqual('''\
def test():
return 42
''', f.read())
def test_end_to_end(self):
with temporary_file("""\
import os
x = "abc"
""") as filename:
output = subprocess.check_output(PYFORMAT_COMMAND + [filename])
self.assertEqual("""\
import os
-x = "abc"
+x = 'abc'
""", '\n'.join(output.decode().split('\n')[3:]))
def test_no_config(self):
source = """\
x =1
"""
expected = ''
expected_no_config = """\
@@ -1 +1 @@
-x =1
+x = 1
"""
setup_cfg = """\
[pep8]
ignore=E
"""
with temporary_directory() as directory:
with temporary_file(source, directory=directory) as filename:
with open(os.path.join(directory, 'setup.cfg'),
'w') as setup_file:
setup_file.write(setup_cfg)
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--aggressive',
filename],
standard_out=output_file,
standard_error=None)
self.assertEqual(expected, '\n'.join(
output_file.getvalue().split('\n')[2:]))
output_file = io.StringIO()
pyformat._main(argv=['my_fake_program',
'--aggressive',
'--no-config',
filename],
standard_out=output_file,
standard_error=None)
self.assertEqual(expected_no_config, '\n'.join(
output_file.getvalue().split('\n')[2:]))
@contextlib.contextmanager
def temporary_file(contents, directory='.', prefix=''):
"""Write contents to temporary file and yield it."""
f = tempfile.NamedTemporaryFile(suffix='.py', prefix=prefix,
delete=False, dir=directory)
try:
f.write(contents.encode())
f.close()
yield f.name
finally:
os.remove(f.name)
@contextlib.contextmanager
def temporary_directory(directory='.', prefix=''):
"""Create temporary directory and yield its path."""
temp_directory = tempfile.mkdtemp(prefix=prefix, dir=directory)
try:
yield temp_directory
finally:
shutil.rmtree(temp_directory)
if __name__ == '__main__':
unittest.main()