-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathconftest.py
570 lines (458 loc) · 15.9 KB
/
conftest.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
# SPDX-FileCopyrightText: 2017 Free Software Foundation Europe e.V. <https://fsfe.org>
# SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <carmenbianca@fsfe.org>
# SPDX-FileCopyrightText: 2022 Florian Snow <florian@familysnow.net>
# SPDX-FileCopyrightText: 2023 Matthias Riße
# SPDX-FileCopyrightText: 2024 Skyler Grey <sky@a.starrysky.fyi>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Global fixtures and configuration."""
# pylint: disable=redefined-outer-name,invalid-name
import contextlib
import datetime
import logging
import multiprocessing as mp
import os
import shutil
import subprocess
import sys
from inspect import cleandoc
from io import StringIO
from pathlib import Path
from typing import Generator, Optional
from unittest.mock import create_autospec
import pytest
from jinja2 import Environment
os.environ["LC_ALL"] = "C"
os.environ["LANGUAGE"] = ""
# A trick that tries to import the installed version of reuse. If that doesn't
# work, import from the src directory. If that also doesn't work (for some
# reason), then an ImportError is raised.
try:
# pylint: disable=unused-import
import reuse
except ImportError:
sys.path.append(os.path.join(Path(__file__).parent.parent, "src"))
finally:
from reuse._util import setup_logging
from reuse.global_licensing import ReuseDep5
from reuse.vcs import GIT_EXE, HG_EXE, JUJUTSU_EXE, PIJUL_EXE
CWD = Path.cwd()
TESTS_DIRECTORY = Path(__file__).parent.resolve()
RESOURCES_DIRECTORY = TESTS_DIRECTORY / "resources"
try:
import pwd
is_root = pwd.getpwuid(os.getuid()).pw_name == "root"
is_posix = True
except ImportError:
is_root = False
is_posix = False
cpython = pytest.mark.skipif(
sys.implementation.name != "cpython", reason="only CPython supported"
)
git = pytest.mark.skipif(not GIT_EXE, reason="requires git")
hg = pytest.mark.skipif(not HG_EXE, reason="requires mercurial")
pijul = pytest.mark.skipif(not PIJUL_EXE, reason="requires pijul")
no_root = pytest.mark.xfail(is_root, reason="fails when user is root")
posix = pytest.mark.skipif(not is_posix, reason="Windows not supported")
# REUSE-IgnoreStart
def pytest_addoption(parser):
"""Allows specification of additional commandline options to parse"""
parser.addoption("--loglevel", action="store", default="DEBUG")
def pytest_configure(config):
"""Called after command line options have been parsed and all plugins and
initial conftest files been loaded.
"""
loglevel = config.getoption("loglevel")
setup_logging(level=logging.getLevelName(loglevel))
def pytest_runtest_setup(item):
"""Called before running a test."""
# pylint: disable=unused-argument
# Make sure to restore CWD
os.chdir(CWD)
# TODO: Awful workaround. In `main`, this environment variable is set under
# certain conditions. This means that all tests that run _after_ that
# condition is met also have the environment variable set, because the
# environment had been changed. There should be a better way to scope this.
with contextlib.suppress(KeyError):
del os.environ["_SUPPRESS_DEP5_WARNING"]
@pytest.fixture()
def git_exe() -> str:
"""Run the test with git."""
if not GIT_EXE:
pytest.skip("cannot run this test without git")
return str(GIT_EXE)
@pytest.fixture(params=[True, False])
def optional_git_exe(
request, monkeypatch
) -> Generator[Optional[str], None, None]:
"""Run the test with or without git."""
exe = GIT_EXE if request.param else ""
monkeypatch.setattr("reuse.vcs.GIT_EXE", exe)
yield exe
@pytest.fixture()
def hg_exe() -> str:
"""Run the test with mercurial (hg)."""
if not HG_EXE:
pytest.skip("cannot run this test without mercurial")
return str(HG_EXE)
@pytest.fixture(params=[True, False])
def optional_hg_exe(
request, monkeypatch
) -> Generator[Optional[str], None, None]:
"""Run the test with or without mercurial."""
exe = HG_EXE if request.param else ""
monkeypatch.setattr("reuse.vcs.HG_EXE", exe)
yield exe
@pytest.fixture()
def jujutsu_exe() -> str:
"""Run the test with Jujutsu."""
if not JUJUTSU_EXE:
pytest.skip("cannot run this test without jujutsu")
return str(JUJUTSU_EXE)
@pytest.fixture(params=[True, False])
def optional_jujutsu_exe(
request, monkeypatch
) -> Generator[Optional[str], None, None]:
"""Run the test with or without Jujutsu."""
exe = JUJUTSU_EXE if request.param else ""
monkeypatch.setattr("reuse.vcs.JUJUTSU_EXE", exe)
yield exe
@pytest.fixture()
def pijul_exe() -> str:
"""Run the test with Pijul."""
if not PIJUL_EXE:
pytest.skip("cannot run this test without pijul")
return str(PIJUL_EXE)
@pytest.fixture(params=[True, False])
def optional_pijul_exe(
request, monkeypatch
) -> Generator[Optional[str], None, None]:
"""Run the test with or without Pijul."""
exe = PIJUL_EXE if request.param else ""
monkeypatch.setattr("reuse.vcs.PIJUL_EXE", exe)
yield exe
@pytest.fixture(params=[True, False])
def multiprocessing(request, monkeypatch) -> Generator[bool, None, None]:
"""Run the test with or without multiprocessing."""
if not request.param:
monkeypatch.delattr(mp, "Pool")
yield request.param
@pytest.fixture(params=[True, False])
def add_license_concluded(request) -> Generator[bool, None, None]:
yield request
@pytest.fixture()
def empty_directory(tmpdir_factory) -> Path:
"""Create a temporary empty directory."""
directory = Path(str(tmpdir_factory.mktemp("empty_directory")))
os.chdir(str(directory))
return directory
@pytest.fixture()
def fake_repository(tmpdir_factory) -> Path:
"""Create a temporary fake repository."""
directory = Path(str(tmpdir_factory.mktemp("fake_repository")))
for file_ in (RESOURCES_DIRECTORY / "fake_repository").iterdir():
if file_.is_file():
shutil.copy(file_, directory / file_.name)
elif file_.is_dir():
shutil.copytree(file_, directory / file_.name)
# Get rid of those pesky pyc files.
shutil.rmtree(directory / "src/__pycache__", ignore_errors=True)
os.chdir(directory)
return directory
@pytest.fixture()
def fake_repository_reuse_toml(fake_repository) -> Path:
"""Add REUSE.toml to the fake repo."""
shutil.copy(
RESOURCES_DIRECTORY / "REUSE.toml", fake_repository / "REUSE.toml"
)
(fake_repository / "doc/index.rst").touch()
return fake_repository
@pytest.fixture()
def fake_repository_dep5(fake_repository) -> Path:
"""Add .reuse/dep5 to the fake repo."""
(fake_repository / ".reuse").mkdir(exist_ok=True)
shutil.copy(RESOURCES_DIRECTORY / "dep5", fake_repository / ".reuse/dep5")
(fake_repository / "doc/index.rst").touch()
return fake_repository
def _repo_contents(
fake_repository, ignore_filename=".gitignore", ignore_prefix=""
):
"""Generate contents for a vcs repository.
Currently defaults to git-like behavior for ignoring files with
the expectation that other tools can be configured to ignore files
by just chanigng the ignore-file-name and enabling git-like behavior
with a prefix line in the ignore file.
"""
gitignore = ignore_prefix + (
"# SPDX-License-Identifier: CC0-1.0\n"
"# SPDX-FileCopyrightText: 2017 Jane Doe\n"
"*.pyc\nbuild"
)
(fake_repository / ignore_filename).write_text(gitignore)
(fake_repository / "LICENSES/CC0-1.0.txt").write_text("License text")
for file_ in (fake_repository / "src").iterdir():
if file_.suffix == ".py":
file_.with_suffix(".pyc").write_text("foo")
build_dir = fake_repository / "build"
build_dir.mkdir()
(build_dir / "hello.py").write_text("foo")
@pytest.fixture()
def git_repository(fake_repository: Path, git_exe: str) -> Path:
"""Create a git repository with ignored files."""
os.chdir(fake_repository)
_repo_contents(fake_repository)
# TODO: To speed this up, maybe directly write to '.gitconfig' instead.
subprocess.run([git_exe, "init", str(fake_repository)], check=True)
subprocess.run([git_exe, "config", "user.name", "Example"], check=True)
subprocess.run(
[git_exe, "config", "user.email", "example@example.com"], check=True
)
subprocess.run([git_exe, "config", "commit.gpgSign", "false"], check=True)
subprocess.run([git_exe, "add", str(fake_repository)], check=True)
subprocess.run(
[
git_exe,
"commit",
"-m",
"initial",
],
check=True,
)
return fake_repository
@pytest.fixture()
def hg_repository(fake_repository: Path, hg_exe: str) -> Path:
"""Create a mercurial repository with ignored files."""
os.chdir(fake_repository)
_repo_contents(
fake_repository,
ignore_filename=".hgignore",
ignore_prefix="syntax:glob",
)
subprocess.run([hg_exe, "init", "."], check=True)
subprocess.run([hg_exe, "addremove"], check=True)
subprocess.run(
[
hg_exe,
"commit",
"--user",
"Example <example@example.com>",
"-m",
"initial",
],
check=True,
)
return fake_repository
@pytest.fixture()
def jujutsu_repository(fake_repository: Path, jujutsu_exe: str) -> Path:
"""Create a jujutsu repository with ignored files."""
os.chdir(fake_repository)
_repo_contents(fake_repository)
subprocess.run(
[jujutsu_exe, "git", "init", str(fake_repository)], check=True
)
return fake_repository
@pytest.fixture()
def pijul_repository(fake_repository: Path, pijul_exe: str) -> Path:
"""Create a pijul repository with ignored files."""
os.chdir(fake_repository)
_repo_contents(
fake_repository,
ignore_filename=".ignore",
)
subprocess.run([pijul_exe, "init", "."], check=True)
subprocess.run([pijul_exe, "add", "--recursive", "."], check=True)
subprocess.run(
[
pijul_exe,
"record",
"--all",
"--message",
"initial",
],
check=True,
)
return fake_repository
@pytest.fixture(params=["submodule-add", "manual"])
def submodule_repository(
git_repository: Path, git_exe: str, tmpdir_factory, request
) -> Path:
"""Create a git repository that contains a submodule."""
header = cleandoc(
"""
SPDX-FileCopyrightText: 2019 Jane Doe
SPDX-License-Identifier: CC0-1.0
"""
)
submodule = Path(str(tmpdir_factory.mktemp("submodule")))
(submodule / "foo.py").write_text(header, encoding="utf-8")
os.chdir(submodule)
subprocess.run([git_exe, "init", str(submodule)], check=True)
subprocess.run([git_exe, "config", "user.name", "Example"], check=True)
subprocess.run(
[git_exe, "config", "user.email", "example@example.com"], check=True
)
subprocess.run([git_exe, "add", str(submodule)], check=True)
subprocess.run(
[
git_exe,
"commit",
"-m",
"initial",
],
check=True,
)
os.chdir(git_repository)
if request.param == "submodule-add":
subprocess.run(
[
git_exe,
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-protocolallow
#
# This circumvents a bug/behaviour caused by CVE-2022-39253
# where you cannot use `git submodule add repository path` where
# repository is a file on the filesystem.
"-c",
"protocol.file.allow=always",
"submodule",
"add",
str(submodule.resolve()),
"submodule",
],
check=True,
)
elif request.param == "manual":
subprocess.run(
[git_exe, "clone", str(submodule.resolve()), "submodule"],
check=True,
)
with open(
git_repository / ".gitmodules", mode="a", encoding="utf-8"
) as gitmodules_file:
gitmodules_file.write(
f"""[submodule "submodule"]
path = submodule
url = {submodule.resolve().as_posix()}
"""
)
subprocess.run(
[
git_exe,
"add",
"--no-warn-embedded-repo",
".gitmodules",
"submodule",
],
check=True,
)
subprocess.run(
[git_exe, "commit", "-m", "add submodule"],
check=True,
)
(git_repository / ".gitmodules.license").write_text(header)
return git_repository
@pytest.fixture()
def subproject_repository(fake_repository: Path) -> Path:
"""Add a Meson subproject to the fake repo."""
(fake_repository / "meson.build").write_text(
cleandoc(
"""
SPDX-FileCopyrightText: 2022 Jane Doe
SPDX-License-Identifier: CC0-1.0
"""
)
)
subprojects_dir = fake_repository / "subprojects"
subprojects_dir.mkdir()
libfoo_dir = subprojects_dir / "libfoo"
libfoo_dir.mkdir()
# ./subprojects/foo.wrap has license and linter succeeds
(subprojects_dir / "foo.wrap").write_text(
cleandoc(
"""
SPDX-FileCopyrightText: 2022 Jane Doe
SPDX-License-Identifier: CC0-1.0
"""
)
)
# ./subprojects/libfoo/foo.c misses license but is ignored
(libfoo_dir / "foo.c").write_text("foo")
return fake_repository
@pytest.fixture(scope="session")
def reuse_dep5():
"""Create a ReuseDep5 object."""
return ReuseDep5.from_file(RESOURCES_DIRECTORY / "dep5")
@pytest.fixture()
def stringio():
"""Create a StringIO object."""
return StringIO()
@pytest.fixture()
def binary_string():
"""Create a binary string."""
return bytes(range(256))
@pytest.fixture()
def template_simple_source():
"""Source code of simple Jinja2 template."""
return cleandoc(
"""
Hello, world!
{% for copyright_line in copyright_lines %}
{{ copyright_line }}
{% endfor %}
{% for expression in spdx_expressions %}
SPDX-License-Identifier: {{ expression }}
{% endfor %}
""".replace(
"spdx-Lic", "SPDX-Lic"
)
)
@pytest.fixture()
def template_simple(template_simple_source):
"""Provide a simple Jinja2 template."""
env = Environment(trim_blocks=True)
return env.from_string(template_simple_source)
@pytest.fixture()
def template_no_spdx_source():
"""Source code of Jinja2 template without SPDX lines."""
return "Hello, world"
@pytest.fixture()
def template_no_spdx(template_no_spdx_source):
"""Provide a Jinja2 template without SPDX lines."""
env = Environment(trim_blocks=True)
return env.from_string(template_no_spdx_source)
@pytest.fixture()
def template_commented_source():
"""Source code of a simple Jinja2 template that is already commented."""
return cleandoc(
"""
# Hello, world!
#
{% for copyright_line in copyright_lines %}
# {{ copyright_line }}
{% endfor %}
#
{% for expression in spdx_expressions %}
# SPDX-License-Identifier: {{ expression }}
{% endfor %}
""".replace(
"spdx-Lic", "SPDX-Lic"
)
)
@pytest.fixture()
def template_commented(template_commented_source):
"""Provide a Jinja2 template that is already commented."""
env = Environment(trim_blocks=True)
return env.from_string(template_commented_source)
@pytest.fixture()
def mock_date_today(monkeypatch):
"""Mock away datetime.date.today to always return 2018."""
date = create_autospec(datetime.date)
date.today.return_value = datetime.date(2018, 1, 1)
monkeypatch.setattr(datetime, "date", date)
@pytest.fixture(
params=[[], ["John Doe"], ["John Doe", "Alice Doe"]],
ids=["None", "John", "John and Alice"],
)
def contributors(request):
"""Provide contributors for SPDX-FileContributor field generation"""
yield request.param
# REUSE-IgnoreEnd