forked from raimon49/pip-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_piplicenses.py
540 lines (422 loc) · 20.1 KB
/
test_piplicenses.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
# -*- coding: utf-8 -*-
# vim:fenc=utf-8 ff=unix ft=python ts=4 sw=4 sts=4 si et
import copy
import re
import sys
import unittest
import json
import tempfile
import os
from email import message_from_string
import piplicenses
from piplicenses import (__pkgname__, create_parser, output_colored,
create_licenses_table, get_output_fields, get_sortby,
factory_styled_table_with_args, create_warn_string,
find_license_from_classifier, create_output_string,
select_license_by_source, save_if_needs,
RULE_ALL, RULE_FRAME, RULE_HEADER, RULE_NONE,
DEFAULT_OUTPUT_FIELDS, SYSTEM_PACKAGES,
LICENSE_UNKNOWN)
# create a dummy subset of dev-requirements.txt for testing --package option
test_requirements = """coverage
pip-tools
pkginfo
pytest-cov
pytest-pycodestyle
pytest-runner
"""
class CommandLineTestCase(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.parser = create_parser()
class TestGetLicenses(CommandLineTestCase):
def _create_pkg_name_columns(self, table):
index = DEFAULT_OUTPUT_FIELDS.index('Name')
# XXX: access to private API
rows = copy.deepcopy(table._rows)
pkg_name_columns = []
for row in rows:
pkg_name_columns.append(row[index])
return pkg_name_columns
def _create_license_columns(self, table):
index = DEFAULT_OUTPUT_FIELDS.index('License')
# XXX: access to private API
rows = copy.deepcopy(table._rows)
pkg_name_columns = []
for row in rows:
pkg_name_columns.append(row[index])
return pkg_name_columns
def test_with_empty_args(self):
empty_args = []
args = self.parser.parse_args(empty_args)
table = create_licenses_table(args)
self.assertIn('l', table.align.values())
self.assertFalse(table.border)
self.assertTrue(table.header)
self.assertEqual('+', table.junction_char)
self.assertEqual(RULE_FRAME, table.hrules)
output_fields = get_output_fields(args)
self.assertEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertNotIn('Author', output_fields)
self.assertNotIn('URL', output_fields)
pkg_name_columns = self._create_pkg_name_columns(table)
for sys_pkg in SYSTEM_PACKAGES:
self.assertNotIn(sys_pkg, pkg_name_columns)
sortby = get_sortby(args)
self.assertEqual('Name', sortby)
output_string = create_output_string(args)
self.assertNotIn('<table>', output_string)
def test_from_classifier(self):
from_classifier_args = ['--from=classifier']
args = self.parser.parse_args(from_classifier_args)
table = create_licenses_table(args)
output_fields = get_output_fields(args)
self.assertIn('License', output_fields)
license_columns = self._create_license_columns(table)
license_notation_as_classifier = 'MIT License'
self.assertIn(license_notation_as_classifier, license_columns)
def test_from_mixed(self):
from_classifier_args = ['--from=mixed']
args = self.parser.parse_args(from_classifier_args)
table = create_licenses_table(args)
output_fields = get_output_fields(args)
self.assertIn('License', output_fields)
license_columns = self._create_license_columns(table)
# Depending on the condition "MIT" or "BSD" etc.
license_notation_as_classifier = 'MIT License'
self.assertIn(license_notation_as_classifier, license_columns)
def test_find_license_from_classifier(self):
metadata = ('Metadata-Version: 2.0\r\n'
'Name: pip-licenses\r\n'
'Version: 1.0.0\r\n'
'Classifier: License :: OSI Approved :: MIT License\r\n')
message = message_from_string(metadata)
self.assertEqual('MIT License',
find_license_from_classifier(message))
def test_display_multiple_license_from_classifier(self):
metadata = ('Metadata-Version: 2.0\r\n'
'Name: helga\r\n'
'Version: 1.7.6\r\n'
'Classifier: License :: OSI Approved\r\n'
'Classifier: License :: OSI Approved :: '
'GNU General Public License v3 (GPLv3)\r\n'
'Classifier: License :: OSI Approved :: MIT License\r\n'
'Classifier: License :: Public Domain\r\n')
message = message_from_string(metadata)
self.assertEqual('GNU General Public License v3 (GPLv3), '
'MIT License, '
'Public Domain',
find_license_from_classifier(message))
def test_not_found_license_from_classifier(self):
metadata_as_no_license = ('Metadata-Version: 2.0\r\n'
'Name: pip-licenses\r\n'
'Version: 1.0.0\r\n')
message = message_from_string(metadata_as_no_license)
self.assertEqual(LICENSE_UNKNOWN,
find_license_from_classifier(message))
def test_select_license_by_source(self):
self.assertEqual('MIT License',
select_license_by_source('classifier',
'MIT License',
'MIT'))
self.assertEqual(LICENSE_UNKNOWN,
select_license_by_source('classifier',
LICENSE_UNKNOWN,
'MIT'))
self.assertEqual('MIT License',
select_license_by_source('mixed',
'MIT License',
'MIT'))
self.assertEqual('MIT',
select_license_by_source('mixed',
LICENSE_UNKNOWN,
'MIT'))
def test_with_system(self):
with_system_args = ['--with-system']
args = self.parser.parse_args(with_system_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
external_sys_pkgs = list(SYSTEM_PACKAGES)
external_sys_pkgs.remove(__pkgname__)
for sys_pkg in external_sys_pkgs:
self.assertIn(sys_pkg, pkg_name_columns)
def test_with_authors(self):
with_authors_args = ['--with-authors']
args = self.parser.parse_args(with_authors_args)
output_fields = get_output_fields(args)
self.assertNotEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertIn('Author', output_fields)
output_string = create_output_string(args)
self.assertIn('Author', output_string)
def test_with_urls(self):
with_urls_args = ['--with-urls']
args = self.parser.parse_args(with_urls_args)
output_fields = get_output_fields(args)
self.assertNotEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertIn('URL', output_fields)
output_string = create_output_string(args)
self.assertIn('URL', output_string)
def test_with_description(self):
with_description_args = ['--with-description']
args = self.parser.parse_args(with_description_args)
output_fields = get_output_fields(args)
self.assertNotEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertIn('Description', output_fields)
output_string = create_output_string(args)
self.assertIn('Description', output_string)
def test_with_license_file(self):
with_license_file_args = ['--with-license-file']
args = self.parser.parse_args(with_license_file_args)
output_fields = get_output_fields(args)
self.assertNotEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertIn('LicenseFile', output_fields)
self.assertIn('LicenseText', output_fields)
output_string = create_output_string(args)
self.assertIn('LicenseFile', output_string)
self.assertIn('LicenseText', output_string)
def test_with_license_file_no_path(self):
with_license_file_args = ['--with-license-file', '--no-license-path']
args = self.parser.parse_args(with_license_file_args)
output_fields = get_output_fields(args)
self.assertNotEqual(output_fields, list(DEFAULT_OUTPUT_FIELDS))
self.assertNotIn('LicenseFile', output_fields)
self.assertIn('LicenseText', output_fields)
output_string = create_output_string(args)
self.assertNotIn('LicenseFile', output_string)
self.assertIn('LicenseText', output_string)
def test_with_license_file_warning(self):
with_license_file_args = ['--with-license-file', '--format=markdown']
args = self.parser.parse_args(with_license_file_args)
warn_string = create_warn_string(args)
self.assertIn('best paired with --format=json', warn_string)
def test_ignore_packages(self):
ignore_pkg_name = 'pytest'
ignore_packages_args = ['--ignore-package=' + ignore_pkg_name]
args = self.parser.parse_args(ignore_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
self.assertNotIn(ignore_pkg_name, pkg_name_columns)
def test_include_packages_with_package_name(self):
# test individual include
include_pkg_name = 'pytest'
include_packages_args = ['--package=' + include_pkg_name]
args = self.parser.parse_args(include_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
self.assertIn(include_pkg_name, pkg_name_columns)
def test_include_packages_with_multiple_package_names_specified(self):
include_pkg_names = ['pip-tools', 'codecov', 'pytest']
include_packages_args = ['--package=' + pkg
for pkg in include_pkg_names]
args = self.parser.parse_args(include_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
for pkg in include_pkg_names:
self.assertIn(pkg, pkg_name_columns)
self.assertEqual(len(include_pkg_names), len(pkg_name_columns))
def test_include_packages_with_json_file(self):
# tests JSON style output from pydeps as input into pip-licenses
included_packages = ['pip-tools', 'coverage']
with tempfile.TemporaryDirectory() as tempdir:
# test json include
json_path = os.path.join(tempdir, 'deps.json')
with open(json_path, 'w') as json_file:
json.dump([
included_packages[0]
], json_file)
include_packages_args = ['--package=' + json_path]
args = self.parser.parse_args(include_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
self.assertIn(included_packages[0], pkg_name_columns)
def test_include_packages_with_requirements_file(self):
with tempfile.TemporaryDirectory() as tempdir:
requirements_txt_path = \
os.path.join(tempdir, 'test-requirements.txt')
with open(requirements_txt_path, 'w') as f:
f.write(test_requirements)
# crude - should work for requirements.txt here:
included_packages = [line.strip('\n') # noqa
for line in open(requirements_txt_path).readlines()
if not line.startswith('#') and line.strip('\n')] # noqa
include_packages_args = ['--package=' + requirements_txt_path]
args = self.parser.parse_args(include_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
for pkg in included_packages:
self.assertIn(pkg, pkg_name_columns)
def test_order_name(self):
order_name_args = ['--order=name']
args = self.parser.parse_args(order_name_args)
sortby = get_sortby(args)
self.assertEqual('Name', sortby)
def test_order_license(self):
order_license_args = ['--order=license']
args = self.parser.parse_args(order_license_args)
sortby = get_sortby(args)
self.assertEqual('License', sortby)
def test_order_author(self):
order_author_args = ['--order=author', '--with-authors']
args = self.parser.parse_args(order_author_args)
sortby = get_sortby(args)
self.assertEqual('Author', sortby)
def test_order_url(self):
order_url_args = ['--order=url', '--with-urls']
args = self.parser.parse_args(order_url_args)
sortby = get_sortby(args)
self.assertEqual('URL', sortby)
def test_order_url_no_effect(self):
order_url_args = ['--order=url']
args = self.parser.parse_args(order_url_args)
sortby = get_sortby(args)
self.assertEqual('Name', sortby)
def test_format_plain(self):
format_plain_args = ['--format=plain']
args = self.parser.parse_args(format_plain_args)
table = factory_styled_table_with_args(args)
self.assertIn('l', table.align.values())
self.assertFalse(table.border)
self.assertTrue(table.header)
self.assertEqual('+', table.junction_char)
self.assertEqual(RULE_FRAME, table.hrules)
def test_format_plain_vertical(self):
format_plain_args = ['--format=plain-vertical']
args = self.parser.parse_args(format_plain_args)
output_string = create_output_string(args)
self.assertIsNotNone(
re.search(r'pytest\n\d\.\d\.\d\nMIT license\n', output_string))
def test_format_markdown(self):
format_markdown_args = ['--format=markdown']
args = self.parser.parse_args(format_markdown_args)
table = factory_styled_table_with_args(args)
self.assertIn('l', table.align.values())
self.assertTrue(table.border)
self.assertTrue(table.header)
self.assertEqual('|', table.junction_char)
self.assertEqual(RULE_HEADER, table.hrules)
def test_format_rst(self):
format_rst_args = ['--format=rst']
args = self.parser.parse_args(format_rst_args)
table = factory_styled_table_with_args(args)
self.assertIn('l', table.align.values())
self.assertTrue(table.border)
self.assertTrue(table.header)
self.assertEqual('+', table.junction_char)
self.assertEqual(RULE_ALL, table.hrules)
def test_format_confluence(self):
format_confluence_args = ['--format=confluence']
args = self.parser.parse_args(format_confluence_args)
table = factory_styled_table_with_args(args)
self.assertIn('l', table.align.values())
self.assertTrue(table.border)
self.assertTrue(table.header)
self.assertEqual('|', table.junction_char)
self.assertEqual(RULE_NONE, table.hrules)
def test_format_html(self):
format_html_args = ['--format=html']
args = self.parser.parse_args(format_html_args)
output_string = create_output_string(args)
self.assertIn('<table>', output_string)
def test_format_json(self):
format_json_args = ['--format=json', '--with-authors']
args = self.parser.parse_args(format_json_args)
output_string = create_output_string(args)
self.assertIn('"Author":', output_string)
self.assertNotIn('"URL":', output_string)
def test_format_json_license_manager(self):
format_json_args = ['--format=json-license-finder']
args = self.parser.parse_args(format_json_args)
output_string = create_output_string(args)
self.assertNotIn('"URL":', output_string)
self.assertIn('"name":', output_string)
self.assertIn('"version":', output_string)
self.assertIn('"licenses":', output_string)
def test_format_csv(self):
format_csv_args = ['--format=csv', '--with-authors']
args = self.parser.parse_args(format_csv_args)
output_string = create_output_string(args)
obtained_header = output_string.split('\n', 1)[0]
expected_header = '"Name","Version","License","Author"'
self.assertEqual(obtained_header, expected_header)
def test_summary(self):
summary_args = ['--summary']
args = self.parser.parse_args(summary_args)
output_string = create_output_string(args)
self.assertIn('Count', output_string)
self.assertNotIn('Name', output_string)
warn_string = create_warn_string(args)
self.assertTrue(len(warn_string) == 0)
def test_summary_sort_by_count(self):
summary_args = ['--summary', '--order=count']
args = self.parser.parse_args(summary_args)
sortby = get_sortby(args)
self.assertEqual('Count', sortby)
def test_summary_sort_by_name(self):
summary_args = ['--summary', '--order=name']
args = self.parser.parse_args(summary_args)
sortby = get_sortby(args)
self.assertEqual('License', sortby)
def test_summary_warning(self):
summary_args = ['--summary', '--with-authors']
args = self.parser.parse_args(summary_args)
warn_string = create_warn_string(args)
self.assertIn('using --with-authors and --with-urls will be ignored.',
warn_string)
summary_args = ['--summary', '--with-urls']
args = self.parser.parse_args(summary_args)
warn_string = create_warn_string(args)
self.assertIn('using --with-authors and --with-urls will be ignored.',
warn_string)
def test_output_colored_normal(self):
color_code = '32'
text = __pkgname__
actual = output_colored(color_code, text)
self.assertTrue(actual.startswith('\033[32'))
self.assertIn(text, actual)
self.assertTrue(actual.endswith('\033[0m'))
def test_output_colored_bold(self):
color_code = '32'
text = __pkgname__
actual = output_colored(color_code, text, is_bold=True)
self.assertTrue(actual.startswith('\033[1;32'))
self.assertIn(text, actual)
self.assertTrue(actual.endswith('\033[0m'))
class MockStdStream(object):
def __init__(self):
self.printed = ''
def write(self, p):
self.printed = p
def test_output_file_sccess(monkeypatch):
def mocked_open(*args, **kwargs):
import tempfile
return tempfile.TemporaryFile('w')
mocked_stdout = MockStdStream()
mocked_stderr = MockStdStream()
monkeypatch.setattr(piplicenses, 'open', mocked_open)
monkeypatch.setattr(sys.stdout, 'write', mocked_stdout.write)
monkeypatch.setattr(sys.stderr, 'write', mocked_stderr.write)
monkeypatch.setattr(sys, 'exit', lambda n: None)
save_if_needs('/foo/bar.txt', 'license list')
assert 'created path: ' in mocked_stdout.printed
assert '' == mocked_stderr.printed
def test_output_file_error(monkeypatch):
def mocked_open(*args, **kwargs):
raise IOError
mocked_stdout = MockStdStream()
mocked_stderr = MockStdStream()
monkeypatch.setattr(piplicenses, 'open', mocked_open)
monkeypatch.setattr(sys.stdout, 'write', mocked_stdout.write)
monkeypatch.setattr(sys.stderr, 'write', mocked_stderr.write)
monkeypatch.setattr(sys, 'exit', lambda n: None)
save_if_needs('/foo/bar.txt', 'license list')
assert '' == mocked_stdout.printed
assert 'check path: ' in mocked_stderr.printed
def test_output_file_none(monkeypatch):
mocked_stdout = MockStdStream()
mocked_stderr = MockStdStream()
monkeypatch.setattr(sys.stdout, 'write', mocked_stdout.write)
monkeypatch.setattr(sys.stderr, 'write', mocked_stderr.write)
save_if_needs(None, 'license list')
# stdout and stderr are expected not to be called
assert '' == mocked_stdout.printed
assert '' == mocked_stderr.printed