forked from raimon49/pip-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_piplicenses.py
756 lines (599 loc) · 28 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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
# -*- coding: utf-8 -*-
# vim:fenc=utf-8 ff=unix ft=python ts=4 sw=4 sts=4 si et
import copy
import email
import re
import sys
import unittest
from email import message_from_string
from enum import Enum, auto
import docutils.frontend
import docutils.parsers.rst
import docutils.utils
import pytest
from _pytest.capture import CaptureFixture
import piplicenses
from piplicenses import (
DEFAULT_OUTPUT_FIELDS, LICENSE_UNKNOWN, RULE_ALL, RULE_FRAME,
RULE_HEADER, RULE_NONE, SYSTEM_PACKAGES, CompatibleArgumentParser,
FromArg, __pkgname__, create_licenses_table, create_output_string,
create_parser, create_warn_string, enum_key_to_value,
factory_styled_table_with_args, find_license_from_classifier,
get_output_fields, get_sortby, output_colored, save_if_needs,
select_license_by_source, value_to_enum_key)
UNICODE_APPENDIX = ""
with open('tests/fixtures/unicode_characters.txt', encoding='utf-8') as f:
# Read from external file considering a terminal that cannot handle "emoji"
UNICODE_APPENDIX = f.readline().replace("\n", "")
def importlib_metadata_distributions_mocked(*args, **kwargs):
class DistributionMocker(piplicenses.importlib_metadata.Distribution):
def __init__(self, orig_dist):
self.__dist = orig_dist
@property
def metadata(self):
return EmailMessageMocker(self.__dist.metadata)
class EmailMessageMocker(email.message.Message):
def __init__(self, orig_msg):
self.__msg = orig_msg
def __getattr__(self, attr):
return getattr(self.__msg, attr)
def __getitem__(self, key):
if key.lower() == "name":
return self.__msg["name"] + " " + UNICODE_APPENDIX
return self.__msg[key]
packages = list(importlib_metadata_distributions_orig(*args, **kwargs))
packages[-1] = DistributionMocker(packages[-1])
return packages
importlib_metadata_distributions_orig = \
piplicenses.importlib_metadata.distributions
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, output_fields):
index = 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
# from https://stackoverflow.com/questions/12883428/ ...
# ... how-to-parse-restructuredtext-in-python
@staticmethod
def check_rst(text: str):
parser = docutils.parsers.rst.Parser()
components = (docutils.parsers.rst.Parser,)
settings = docutils.frontend.\
OptionParser(components=components).get_default_values()
settings.halt_level = 3
document = docutils.utils.new_document('<rst-doc>', settings=settings)
parser.parse(text, document)
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) + ['License'])
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_meta(self):
from_args = ['--from=meta']
args = self.parser.parse_args(from_args)
output_fields = get_output_fields(args)
self.assertIn('License', output_fields)
table = create_licenses_table(args, output_fields)
license_columns = self._create_license_columns(table, output_fields)
license_notation_as_meta = 'MIT'
self.assertIn(license_notation_as_meta, license_columns)
def test_from_classifier(self):
from_args = ['--from=classifier']
args = self.parser.parse_args(from_args)
output_fields = get_output_fields(args)
table = create_licenses_table(args, output_fields)
self.assertIn('License', output_fields)
license_columns = self._create_license_columns(table, output_fields)
license_notation_as_classifier = 'MIT License'
self.assertIn(license_notation_as_classifier, license_columns)
def test_from_mixed(self):
from_args = ['--from=mixed']
args = self.parser.parse_args(from_args)
output_fields = get_output_fields(args)
table = create_licenses_table(args, output_fields)
self.assertIn('License', output_fields)
license_columns = self._create_license_columns(table, output_fields)
# Depending on the condition "MIT" or "BSD" etc.
license_notation_as_classifier = 'MIT License'
self.assertIn(license_notation_as_classifier, license_columns)
def test_from_all(self):
from_args = ['--from=all']
args = self.parser.parse_args(from_args)
output_fields = get_output_fields(args)
table = create_licenses_table(args, output_fields)
self.assertIn('License-Metadata', output_fields)
self.assertIn('License-Classifier', output_fields)
index_license_meta = output_fields.index('License-Metadata')
license_meta = []
for row in table._rows:
license_meta.append(row[index_license_meta])
index_license_classifier = output_fields.index('License-Classifier')
license_classifier = []
for row in table._rows:
license_classifier.append(row[index_license_classifier])
for license in ('BSD', 'MIT', 'Apache 2.0'):
self.assertIn(license, license_meta)
for license in ('BSD License', 'MIT License',
'Apache Software License'):
self.assertIn(license, license_classifier)
def test_find_license_from_classifier(self):
classifiers = ['License :: OSI Approved :: MIT License']
self.assertEqual(['MIT License'],
find_license_from_classifier(classifiers))
def test_display_multiple_license_from_classifier(self):
classifiers = [
'License :: OSI Approved',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'License :: OSI Approved :: MIT License',
'License :: Public Domain'
]
self.assertEqual(['GNU General Public License v3 (GPLv3)',
'MIT License',
'Public Domain'],
find_license_from_classifier(classifiers))
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([],
find_license_from_classifier(message))
def test_select_license_by_source(self):
self.assertEqual({'MIT License'},
select_license_by_source(FromArg.CLASSIFIER,
['MIT License'],
'MIT'))
self.assertEqual({LICENSE_UNKNOWN},
select_license_by_source(FromArg.CLASSIFIER,
[],
'MIT'))
self.assertEqual({'MIT License'},
select_license_by_source(FromArg.MIXED,
['MIT License'],
'MIT'))
self.assertEqual({'MIT'},
select_license_by_source(FromArg.MIXED,
[],
'MIT'))
self.assertEqual({'Apache License 2.0'},
select_license_by_source(FromArg.MIXED,
['Apache License 2.0'],
'Apache-2.0'))
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)
self.assertNotIn('NoticeFile', output_fields)
self.assertNotIn('NoticeText', output_fields)
output_string = create_output_string(args)
self.assertIn('LicenseFile', output_string)
self.assertIn('LicenseText', output_string)
self.assertNotIn('NoticeFile', output_string)
self.assertNotIn('NoticeText', output_string)
def test_with_notice_file(self):
with_license_file_args = ['--with-license-file', '--with-notice-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)
self.assertIn('NoticeFile', output_fields)
self.assertIn('NoticeText', output_fields)
output_string = create_output_string(args)
self.assertIn('LicenseFile', output_string)
self.assertIn('LicenseText', output_string)
self.assertIn('NoticeFile', output_string)
self.assertIn('NoticeText', output_string)
def test_with_license_file_no_path(self):
with_license_file_args = ['--with-license-file', '--with-notice-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)
self.assertNotIn('NoticeFile', output_fields)
self.assertIn('NoticeText', output_fields)
output_string = create_output_string(args)
self.assertNotIn('LicenseFile', output_string)
self.assertIn('LicenseText', output_string)
self.assertNotIn('NoticeFile', output_string)
self.assertIn('NoticeText', 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):
if 'PTable' in SYSTEM_PACKAGES:
ignore_pkg_name = 'PTable'
else:
ignore_pkg_name = 'prettytable'
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_with_packages(self):
pkg_name = 'py'
only_packages_args = ['--packages=' + pkg_name]
args = self.parser.parse_args(only_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
self.assertListEqual([pkg_name], pkg_name_columns)
def test_with_packages_with_system(self):
if 'PTable' in SYSTEM_PACKAGES:
pkg_name = 'PTable'
else:
pkg_name = 'prettytable'
only_packages_args = ['--packages=' + pkg_name, "--with-system"]
args = self.parser.parse_args(only_packages_args)
table = create_licenses_table(args)
pkg_name_columns = self._create_pkg_name_columns(table)
self.assertListEqual([pkg_name], 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', '--from=classifier']
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 = create_licenses_table(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)
@unittest.skipIf(sys.version_info < (3, 6, 0),
"To unsupport Python 3.5 in the near future")
def test_format_rst_without_filter(self):
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_mocked
format_rst_args = ['--format=rst']
args = self.parser.parse_args(format_rst_args)
table = create_licenses_table(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)
with self.assertRaises(docutils.utils.SystemMessage):
self.check_rst(str(table))
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_orig
def test_format_rst_default_filter(self):
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_mocked
format_rst_args = ['--format=rst', '--filter-strings']
args = self.parser.parse_args(format_rst_args)
table = create_licenses_table(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)
self.check_rst(str(table))
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_orig
def test_format_confluence(self):
format_confluence_args = ['--format=confluence']
args = self.parser.parse_args(format_confluence_args)
table = create_licenses_table(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'))
def test_without_filter(self):
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_mocked
args = self.parser.parse_args([])
packages = list(piplicenses.get_packages(args))
self.assertIn(UNICODE_APPENDIX, packages[-1]["name"])
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_orig
def test_with_default_filter(self):
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_mocked
args = self.parser.parse_args(["--filter-strings"])
packages = list(piplicenses.get_packages(args))
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_orig
self.assertNotIn(UNICODE_APPENDIX, packages[-1]["name"])
def test_with_specified_filter(self):
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_mocked
args = self.parser.parse_args(["--filter-strings",
"--filter-code-page=ascii"])
packages = list(piplicenses.get_packages(args))
self.assertNotIn(UNICODE_APPENDIX, packages[-1]["summary"])
piplicenses.importlib_metadata.distributions = \
importlib_metadata_distributions_orig
class MockStdStream(object):
def __init__(self):
self.printed = ''
def write(self, p):
self.printed = p
def test_output_file_success(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
def test_allow_only(monkeypatch):
licenses = (
"BSD License",
"Apache Software License",
"Mozilla Public License 2.0 (MPL 2.0)",
"Python Software Foundation License",
"Public Domain",
"GNU General Public License (GPL)",
"GNU Library or Lesser General Public License (LGPL)",
)
allow_only_args = ['--allow-only={}'.format(";".join(licenses))]
mocked_stdout = MockStdStream()
mocked_stderr = MockStdStream()
monkeypatch.setattr(sys.stdout, 'write', mocked_stdout.write)
monkeypatch.setattr(sys.stderr, 'write', mocked_stderr.write)
monkeypatch.setattr(sys, 'exit', lambda n: None)
args = create_parser().parse_args(allow_only_args)
create_licenses_table(args)
assert '' == mocked_stdout.printed
assert 'license MIT License not in allow-only licenses was found for ' \
'package' in mocked_stderr.printed
def test_fail_on(monkeypatch):
licenses = (
"MIT License",
)
allow_only_args = ['--fail-on={}'.format(";".join(licenses))]
mocked_stdout = MockStdStream()
mocked_stderr = MockStdStream()
monkeypatch.setattr(sys.stdout, 'write', mocked_stdout.write)
monkeypatch.setattr(sys.stderr, 'write', mocked_stderr.write)
monkeypatch.setattr(sys, 'exit', lambda n: None)
args = create_parser().parse_args(allow_only_args)
create_licenses_table(args)
assert '' == mocked_stdout.printed
assert 'fail-on license MIT License was found for ' \
'package' in mocked_stderr.printed
def test_enums():
class TestEnum(Enum):
PLAIN = P = auto()
JSON_LICENSE_FINDER = JLF = auto()
assert TestEnum.PLAIN == TestEnum.P
assert getattr(TestEnum, value_to_enum_key('jlf')) == \
TestEnum.JSON_LICENSE_FINDER
assert value_to_enum_key('jlf') == 'JLF'
assert value_to_enum_key('json-license-finder') == \
'JSON_LICENSE_FINDER'
assert enum_key_to_value(TestEnum.JSON_LICENSE_FINDER) == \
'json-license-finder'
assert enum_key_to_value(TestEnum.PLAIN) == 'plain'
@pytest.fixture(scope='package')
def parser():
return create_parser()
def test_verify_args(
parser: CompatibleArgumentParser, capsys: CaptureFixture):
# --with-license-file missing
with pytest.raises(SystemExit) as ex:
parser.parse_args(['--no-license-path'])
capture = capsys.readouterr().err
for arg in ('--no-license-path', '--with-license-file'):
assert arg in capture
with pytest.raises(SystemExit) as ex:
parser.parse_args(['--with-notice-file'])
capture = capsys.readouterr().err
for arg in ('--with-notice-file', '--with-license-file'):
assert arg in capture
# --filter-strings missing
with pytest.raises(SystemExit) as ex:
parser.parse_args(['--filter-code-page=utf8'])
capture = capsys.readouterr().err
for arg in ('--filter-code-page', '--filter-strings'):
assert arg in capture
# invalid code-page
with pytest.raises(SystemExit) as ex:
parser.parse_args(['--filter-strings', '--filter-code-page=XX'])
capture = capsys.readouterr().err
for arg in ('invalid code', '--filter-code-page'):
assert arg in capture