-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathtest_egg_info.py
1280 lines (1155 loc) · 42.9 KB
/
test_egg_info.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
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import ast
import glob
import os
import re
import stat
import sys
import time
from pathlib import Path
from unittest import mock
import pytest
from jaraco import path
from setuptools import errors
from setuptools.command.egg_info import egg_info, manifest_maker, write_entries
from setuptools.dist import Distribution
from . import contexts, environment
from .textwrap import DALS
class Environment(str):
pass
@pytest.fixture
def env():
with contexts.tempdir(prefix='setuptools-test.') as env_dir:
env = Environment(env_dir)
os.chmod(env_dir, stat.S_IRWXU)
subs = 'home', 'lib', 'scripts', 'data', 'egg-base'
env.paths = dict((dirname, os.path.join(env_dir, dirname)) for dirname in subs)
list(map(os.mkdir, env.paths.values()))
path.build({
env.paths['home']: {
'.pydistutils.cfg': DALS(
"""
[egg_info]
egg-base = {egg-base}
""".format(**env.paths)
)
}
})
yield env
class TestEggInfo:
setup_script = DALS(
"""
from setuptools import setup
setup(
name='foo',
py_modules=['hello'],
entry_points={'console_scripts': ['hi = hello.run']},
zip_safe=False,
)
"""
)
def _create_project(self):
path.build({
'setup.py': self.setup_script,
'hello.py': DALS(
"""
def run():
print('hello')
"""
),
})
@staticmethod
def _extract_mv_version(pkg_info_lines: list[str]) -> tuple[int, int]:
version_str = pkg_info_lines[0].split(' ')[1]
major, minor = map(int, version_str.split('.')[:2])
return major, minor
def test_egg_info_save_version_info_setup_empty(self, tmpdir_cwd, env):
"""
When the egg_info section is empty or not present, running
save_version_info should add the settings to the setup.cfg
in a deterministic order.
"""
setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
dist = Distribution()
ei = egg_info(dist)
ei.initialize_options()
ei.save_version_info(setup_cfg)
with open(setup_cfg, 'r', encoding="utf-8") as f:
content = f.read()
assert '[egg_info]' in content
assert 'tag_build =' in content
assert 'tag_date = 0' in content
expected_order = (
'tag_build',
'tag_date',
)
self._validate_content_order(content, expected_order)
@staticmethod
def _validate_content_order(content, expected):
"""
Assert that the strings in expected appear in content
in order.
"""
pattern = '.*'.join(expected)
flags = re.MULTILINE | re.DOTALL
assert re.search(pattern, content, flags)
def test_egg_info_save_version_info_setup_defaults(self, tmpdir_cwd, env):
"""
When running save_version_info on an existing setup.cfg
with the 'default' values present from a previous run,
the file should remain unchanged.
"""
setup_cfg = os.path.join(env.paths['home'], 'setup.cfg')
path.build({
setup_cfg: DALS(
"""
[egg_info]
tag_build =
tag_date = 0
"""
),
})
dist = Distribution()
ei = egg_info(dist)
ei.initialize_options()
ei.save_version_info(setup_cfg)
with open(setup_cfg, 'r', encoding="utf-8") as f:
content = f.read()
assert '[egg_info]' in content
assert 'tag_build =' in content
assert 'tag_date = 0' in content
expected_order = (
'tag_build',
'tag_date',
)
self._validate_content_order(content, expected_order)
def test_expected_files_produced(self, tmpdir_cwd, env):
self._create_project()
self._run_egg_info_command(tmpdir_cwd, env)
actual = os.listdir('foo.egg-info')
expected = [
'PKG-INFO',
'SOURCES.txt',
'dependency_links.txt',
'entry_points.txt',
'not-zip-safe',
'top_level.txt',
]
assert sorted(actual) == expected
def test_handling_utime_error(self, tmpdir_cwd, env):
dist = Distribution()
ei = egg_info(dist)
utime_patch = mock.patch('os.utime', side_effect=OSError("TEST"))
mkpath_patch = mock.patch(
'setuptools.command.egg_info.egg_info.mkpath', return_val=None
)
with utime_patch, mkpath_patch:
import distutils.errors
msg = r"Cannot update time stamp of directory 'None'"
with pytest.raises(distutils.errors.DistutilsFileError, match=msg):
ei.run()
def test_license_is_a_string(self, tmpdir_cwd, env):
setup_config = DALS(
"""
[metadata]
name=foo
version=0.0.1
license=file:MIT
"""
)
setup_script = DALS(
"""
from setuptools import setup
setup()
"""
)
path.build({
'setup.py': setup_script,
'setup.cfg': setup_config,
})
# This command should fail with a ValueError, but because it's
# currently configured to use a subprocess, the actual traceback
# object is lost and we need to parse it from stderr
with pytest.raises(AssertionError) as exc:
self._run_egg_info_command(tmpdir_cwd, env)
# The only argument to the assertion error should be a traceback
# containing a ValueError
assert 'ValueError' in exc.value.args[0]
def test_rebuilt(self, tmpdir_cwd, env):
"""Ensure timestamps are updated when the command is re-run."""
self._create_project()
self._run_egg_info_command(tmpdir_cwd, env)
timestamp_a = os.path.getmtime('foo.egg-info')
# arbitrary sleep just to handle *really* fast systems
time.sleep(0.001)
self._run_egg_info_command(tmpdir_cwd, env)
timestamp_b = os.path.getmtime('foo.egg-info')
assert timestamp_a != timestamp_b
def test_manifest_template_is_read(self, tmpdir_cwd, env):
self._create_project()
path.build({
'MANIFEST.in': DALS(
"""
recursive-include docs *.rst
"""
),
'docs': {
'usage.rst': "Run 'hi'",
},
})
self._run_egg_info_command(tmpdir_cwd, env)
egg_info_dir = os.path.join('.', 'foo.egg-info')
sources_txt = os.path.join(egg_info_dir, 'SOURCES.txt')
with open(sources_txt, encoding="utf-8") as f:
assert 'docs/usage.rst' in f.read().split('\n')
def _setup_script_with_requires(self, requires, use_setup_cfg=False):
setup_script = DALS(
"""
from setuptools import setup
setup(name='foo', zip_safe=False, %s)
"""
) % ('' if use_setup_cfg else requires)
setup_config = requires if use_setup_cfg else ''
path.build({
'setup.py': setup_script,
'setup.cfg': setup_config,
})
mismatch_marker = f"python_version<'{sys.version_info[0]}'"
# Alternate equivalent syntax.
mismatch_marker_alternate = f'python_version < "{sys.version_info[0]}"'
invalid_marker = "<=>++"
class RequiresTestHelper:
@staticmethod
def parametrize(*test_list, **format_dict):
idlist = []
argvalues = []
for test in test_list:
test_params = test.lstrip().split('\n\n', 3)
name_kwargs = test_params.pop(0).split('\n')
if len(name_kwargs) > 1:
val = name_kwargs[1].strip()
install_cmd_kwargs = ast.literal_eval(val)
else:
install_cmd_kwargs = {}
name = name_kwargs[0].strip()
setup_py_requires, setup_cfg_requires, expected_requires = [
DALS(a).format(**format_dict) for a in test_params
]
for id_, requires, use_cfg in (
(name, setup_py_requires, False),
(name + '_in_setup_cfg', setup_cfg_requires, True),
):
idlist.append(id_)
marks = ()
if requires.startswith('@xfail\n'):
requires = requires[7:]
marks = pytest.mark.xfail
argvalues.append(
pytest.param(
requires,
use_cfg,
expected_requires,
install_cmd_kwargs,
marks=marks,
)
)
return pytest.mark.parametrize(
'requires,use_setup_cfg,expected_requires,install_cmd_kwargs',
argvalues,
ids=idlist,
)
@RequiresTestHelper.parametrize(
# Format of a test:
#
# id
# install_cmd_kwargs [optional]
#
# requires block (when used in setup.py)
#
# requires block (when used in setup.cfg)
#
# expected contents of requires.txt
"""
install_requires_deterministic
install_requires=["wheel>=0.5", "pytest"]
[options]
install_requires =
wheel>=0.5
pytest
wheel>=0.5
pytest
""",
"""
install_requires_ordered
install_requires=["pytest>=3.0.2,!=10.9999"]
[options]
install_requires =
pytest>=3.0.2,!=10.9999
pytest!=10.9999,>=3.0.2
""",
"""
install_requires_with_marker
install_requires=["barbazquux;{mismatch_marker}"],
[options]
install_requires =
barbazquux; {mismatch_marker}
[:{mismatch_marker_alternate}]
barbazquux
""",
"""
install_requires_with_extra
{'cmd': ['egg_info']}
install_requires=["barbazquux [test]"],
[options]
install_requires =
barbazquux [test]
barbazquux[test]
""",
"""
install_requires_with_extra_and_marker
install_requires=["barbazquux [test]; {mismatch_marker}"],
[options]
install_requires =
barbazquux [test]; {mismatch_marker}
[:{mismatch_marker_alternate}]
barbazquux[test]
""",
"""
setup_requires_with_markers
setup_requires=["barbazquux;{mismatch_marker}"],
[options]
setup_requires =
barbazquux; {mismatch_marker}
""",
"""
extras_require_with_extra
{'cmd': ['egg_info']}
extras_require={{"extra": ["barbazquux [test]"]}},
[options.extras_require]
extra = barbazquux [test]
[extra]
barbazquux[test]
""",
"""
extras_require_with_extra_and_marker_in_req
extras_require={{"extra": ["barbazquux [test]; {mismatch_marker}"]}},
[options.extras_require]
extra =
barbazquux [test]; {mismatch_marker}
[extra]
[extra:{mismatch_marker_alternate}]
barbazquux[test]
""",
# FIXME: ConfigParser does not allow : in key names!
"""
extras_require_with_marker
extras_require={{":{mismatch_marker}": ["barbazquux"]}},
@xfail
[options.extras_require]
:{mismatch_marker} = barbazquux
[:{mismatch_marker}]
barbazquux
""",
"""
extras_require_with_marker_in_req
extras_require={{"extra": ["barbazquux; {mismatch_marker}"]}},
[options.extras_require]
extra =
barbazquux; {mismatch_marker}
[extra]
[extra:{mismatch_marker_alternate}]
barbazquux
""",
"""
extras_require_with_empty_section
extras_require={{"empty": []}},
[options.extras_require]
empty =
[empty]
""",
# Format arguments.
invalid_marker=invalid_marker,
mismatch_marker=mismatch_marker,
mismatch_marker_alternate=mismatch_marker_alternate,
)
def test_requires(
self,
tmpdir_cwd,
env,
requires,
use_setup_cfg,
expected_requires,
install_cmd_kwargs,
):
self._setup_script_with_requires(requires, use_setup_cfg)
self._run_egg_info_command(tmpdir_cwd, env, **install_cmd_kwargs)
egg_info_dir = os.path.join('.', 'foo.egg-info')
requires_txt = os.path.join(egg_info_dir, 'requires.txt')
if os.path.exists(requires_txt):
with open(requires_txt, encoding="utf-8") as fp:
install_requires = fp.read()
else:
install_requires = ''
assert install_requires.lstrip() == expected_requires
assert glob.glob(os.path.join(env.paths['lib'], 'barbazquux*')) == []
def test_install_requires_unordered_disallowed(self, tmpdir_cwd, env):
"""
Packages that pass unordered install_requires sequences
should be rejected as they produce non-deterministic
builds. See #458.
"""
req = 'install_requires={"fake-factory==0.5.2", "pytz"}'
self._setup_script_with_requires(req)
with pytest.raises(AssertionError):
self._run_egg_info_command(tmpdir_cwd, env)
def test_extras_require_with_invalid_marker(self, tmpdir_cwd, env):
tmpl = 'extras_require={{":{marker}": ["barbazquux"]}},'
req = tmpl.format(marker=self.invalid_marker)
self._setup_script_with_requires(req)
with pytest.raises(AssertionError):
self._run_egg_info_command(tmpdir_cwd, env)
assert glob.glob(os.path.join(env.paths['lib'], 'barbazquux*')) == []
def test_extras_require_with_invalid_marker_in_req(self, tmpdir_cwd, env):
tmpl = 'extras_require={{"extra": ["barbazquux; {marker}"]}},'
req = tmpl.format(marker=self.invalid_marker)
self._setup_script_with_requires(req)
with pytest.raises(AssertionError):
self._run_egg_info_command(tmpdir_cwd, env)
assert glob.glob(os.path.join(env.paths['lib'], 'barbazquux*')) == []
def test_provides_extra(self, tmpdir_cwd, env):
self._setup_script_with_requires('extras_require={"foobar": ["barbazquux"]},')
environ = os.environ.copy().update(
HOME=env.paths['home'],
)
environment.run_setup_py(
cmd=['egg_info'],
pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]),
data_stream=1,
env=environ,
)
egg_info_dir = os.path.join('.', 'foo.egg-info')
with open(os.path.join(egg_info_dir, 'PKG-INFO'), encoding="utf-8") as fp:
pkg_info_lines = fp.read().split('\n')
assert 'Provides-Extra: foobar' in pkg_info_lines
assert 'Metadata-Version: 2.1' in pkg_info_lines
def test_doesnt_provides_extra(self, tmpdir_cwd, env):
self._setup_script_with_requires(
"""install_requires=["spam ; python_version<'3.6'"]"""
)
environ = os.environ.copy().update(
HOME=env.paths['home'],
)
environment.run_setup_py(
cmd=['egg_info'],
pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]),
data_stream=1,
env=environ,
)
egg_info_dir = os.path.join('.', 'foo.egg-info')
with open(os.path.join(egg_info_dir, 'PKG-INFO'), encoding="utf-8") as fp:
pkg_info_text = fp.read()
assert 'Provides-Extra:' not in pkg_info_text
@pytest.mark.parametrize(
('files', 'license_in_sources'),
[
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE
"""
),
'LICENSE': "Test license",
},
True,
), # with license
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = INVALID_LICENSE
"""
),
'LICENSE': "Test license",
},
False,
), # with an invalid license
(
{
'setup.cfg': DALS(
"""
"""
),
'LICENSE': "Test license",
},
True,
), # no license_file attribute, LICENSE auto-included
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE
"""
),
'MANIFEST.in': "exclude LICENSE",
'LICENSE': "Test license",
},
True,
), # manifest is overwritten by license_file
pytest.param(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICEN[CS]E*
"""
),
'LICENSE': "Test license",
},
True,
id="glob_pattern",
),
],
)
def test_setup_cfg_license_file(self, tmpdir_cwd, env, files, license_in_sources):
self._create_project()
path.build(files)
environment.run_setup_py(
cmd=['egg_info'],
pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]),
)
egg_info_dir = os.path.join('.', 'foo.egg-info')
sources_text = Path(egg_info_dir, "SOURCES.txt").read_text(encoding="utf-8")
if license_in_sources:
assert 'LICENSE' in sources_text
else:
assert 'LICENSE' not in sources_text
# for invalid license test
assert 'INVALID_LICENSE' not in sources_text
@pytest.mark.parametrize(
('files', 'incl_licenses', 'excl_licenses'),
[
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE-ABC
LICENSE-XYZ
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
['LICENSE-ABC', 'LICENSE-XYZ'],
[],
), # with licenses
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files = LICENSE-ABC, LICENSE-XYZ
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
['LICENSE-ABC', 'LICENSE-XYZ'],
[],
), # with commas
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE-ABC
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
['LICENSE-ABC'],
['LICENSE-XYZ'],
), # with one license
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
[],
['LICENSE-ABC', 'LICENSE-XYZ'],
), # empty
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files = LICENSE-XYZ
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
['LICENSE-XYZ'],
['LICENSE-ABC'],
), # on same line
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE-ABC
INVALID_LICENSE
"""
),
'LICENSE-ABC': "Test license",
},
['LICENSE-ABC'],
['INVALID_LICENSE'],
), # with an invalid license
(
{
'setup.cfg': DALS(
"""
"""
),
'LICENSE': "Test license",
},
['LICENSE'],
[],
), # no license_files attribute, LICENSE auto-included
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files = LICENSE
"""
),
'MANIFEST.in': "exclude LICENSE",
'LICENSE': "Test license",
},
['LICENSE'],
[],
), # manifest is overwritten by license_files
(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE-ABC
LICENSE-XYZ
"""
),
'MANIFEST.in': "exclude LICENSE-XYZ",
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
# manifest is overwritten by license_files
},
['LICENSE-ABC', 'LICENSE-XYZ'],
[],
),
pytest.param(
{
'setup.cfg': "",
'LICENSE-ABC': "ABC license",
'COPYING-ABC': "ABC copying",
'NOTICE-ABC': "ABC notice",
'AUTHORS-ABC': "ABC authors",
'LICENCE-XYZ': "XYZ license",
'LICENSE': "License",
'INVALID-LICENSE': "Invalid license",
},
[
'LICENSE-ABC',
'COPYING-ABC',
'NOTICE-ABC',
'AUTHORS-ABC',
'LICENCE-XYZ',
'LICENSE',
],
['INVALID-LICENSE'],
# ('LICEN[CS]E*', 'COPYING*', 'NOTICE*', 'AUTHORS*')
id="default_glob_patterns",
),
pytest.param(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE*
"""
),
'LICENSE-ABC': "ABC license",
'NOTICE-XYZ': "XYZ notice",
},
['LICENSE-ABC'],
['NOTICE-XYZ'],
id="no_default_glob_patterns",
),
pytest.param(
{
'setup.cfg': DALS(
"""
[metadata]
license_files =
LICENSE-ABC
LICENSE*
"""
),
'LICENSE-ABC': "ABC license",
},
['LICENSE-ABC'],
[],
id="files_only_added_once",
),
],
)
def test_setup_cfg_license_files(
self, tmpdir_cwd, env, files, incl_licenses, excl_licenses
):
self._create_project()
path.build(files)
environment.run_setup_py(
cmd=['egg_info'],
pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]),
)
egg_info_dir = os.path.join('.', 'foo.egg-info')
sources_text = Path(egg_info_dir, "SOURCES.txt").read_text(encoding="utf-8")
sources_lines = [line.strip() for line in sources_text.splitlines()]
for lf in incl_licenses:
assert sources_lines.count(lf) == 1
for lf in excl_licenses:
assert sources_lines.count(lf) == 0
@pytest.mark.parametrize(
('files', 'incl_licenses', 'excl_licenses'),
[
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file =
license_files =
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
},
[],
['LICENSE-ABC', 'LICENSE-XYZ'],
), # both empty
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file =
LICENSE-ABC
LICENSE-XYZ
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-XYZ': "XYZ license",
# license_file is still singular
},
[],
['LICENSE-ABC', 'LICENSE-XYZ'],
),
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE-ABC
license_files =
LICENSE-XYZ
LICENSE-PQR
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-PQR': "PQR license",
'LICENSE-XYZ': "XYZ license",
},
['LICENSE-ABC', 'LICENSE-PQR', 'LICENSE-XYZ'],
[],
), # combined
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE-ABC
license_files =
LICENSE-ABC
LICENSE-XYZ
LICENSE-PQR
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-PQR': "PQR license",
'LICENSE-XYZ': "XYZ license",
# duplicate license
},
['LICENSE-ABC', 'LICENSE-PQR', 'LICENSE-XYZ'],
[],
),
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE-ABC
license_files =
LICENSE-XYZ
"""
),
'LICENSE-ABC': "ABC license",
'LICENSE-PQR': "PQR license",
'LICENSE-XYZ': "XYZ license",
# combined subset
},
['LICENSE-ABC', 'LICENSE-XYZ'],
['LICENSE-PQR'],
),
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE-ABC
license_files =
LICENSE-XYZ
LICENSE-PQR
"""
),
'LICENSE-PQR': "Test license",
# with invalid licenses
},
['LICENSE-PQR'],
['LICENSE-ABC', 'LICENSE-XYZ'],
),
(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE-ABC
license_files =
LICENSE-PQR
LICENSE-XYZ
"""
),
'MANIFEST.in': "exclude LICENSE-ABC\nexclude LICENSE-PQR",
'LICENSE-ABC': "ABC license",
'LICENSE-PQR': "PQR license",
'LICENSE-XYZ': "XYZ license",
# manifest is overwritten
},
['LICENSE-ABC', 'LICENSE-PQR', 'LICENSE-XYZ'],
[],
),
pytest.param(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE*
"""
),
'LICENSE-ABC': "ABC license",
'NOTICE-XYZ': "XYZ notice",
},
['LICENSE-ABC'],
['NOTICE-XYZ'],
id="no_default_glob_patterns",
),
pytest.param(
{
'setup.cfg': DALS(
"""
[metadata]
license_file = LICENSE*
license_files =
NOTICE*
"""
),
'LICENSE-ABC': "ABC license",
'NOTICE-ABC': "ABC notice",
'AUTHORS-ABC': "ABC authors",
},
['LICENSE-ABC', 'NOTICE-ABC'],
['AUTHORS-ABC'],
id="combined_glob_patterrns",
),
],
)
def test_setup_cfg_license_file_license_files(
self, tmpdir_cwd, env, files, incl_licenses, excl_licenses