-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_yarnprovider.py
More file actions
532 lines (489 loc) · 22.9 KB
/
test_yarnprovider.py
File metadata and controls
532 lines (489 loc) · 22.9 KB
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
import logging
import tempfile
from pathlib import Path
import pytest
from abxpkg import Binary, SemVer, YarnProvider
from abxpkg.base_types import bin_abspath
from abxpkg.exceptions import BinaryInstallError, BinProviderInstallError
class TestYarnProvider:
@classmethod
def _provider_for_kind(cls, kind: str, **kwargs) -> YarnProvider:
assert kind in {"classic", "berry"}
version_threshold = SemVer.parse("2.0.0")
current_path = str(YarnProvider(**kwargs).PATH)
if kind == "berry":
berry_alias = bin_abspath("yarn-berry", PATH=current_path) or bin_abspath(
"yarn-berry",
)
assert berry_alias is not None, (
"Could not resolve the globally installed yarn-berry alias on PATH"
)
berry_link = berry_alias.readlink() if berry_alias.is_symlink() else None
berry_bin_dir = (
(berry_alias.parent / berry_link).parent
if berry_link and not berry_link.is_absolute()
else (berry_link or berry_alias).parent
)
candidate_path = ":".join(
dict.fromkeys(
[
str(berry_bin_dir),
*[entry for entry in current_path.split(":") if entry],
],
),
)
provider = YarnProvider(PATH=candidate_path, **kwargs)
installer = provider.INSTALLER_BINARY()
version = installer.loaded_version
assert (
version is not None
and version_threshold is not None
and (version >= version_threshold)
), "yarn-berry must resolve to a Yarn 2+ installer"
return provider
provider = YarnProvider(PATH=current_path, **kwargs)
installer = provider.INSTALLER_BINARY()
version = installer.loaded_version
assert (
version is not None
and version_threshold is not None
and (version < version_threshold)
), "ambient yarn on PATH must resolve to Yarn 1.x for classic coverage"
return provider
@classmethod
def _berry_provider(cls, **kwargs) -> YarnProvider:
return cls._provider_for_kind("berry", **kwargs)
@classmethod
def _classic_provider(cls, **kwargs) -> YarnProvider:
return cls._provider_for_kind("classic", **kwargs)
def test_install_root_alias_installs_into_the_requested_prefix(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "yarn-root"
provider = YarnProvider.model_validate(
{
"install_root": install_root,
"postinstall_scripts": True,
"min_release_age": 0,
},
)
installed = provider.install("zx")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root == install_root
assert provider.bin_dir == install_root / "node_modules" / ".bin"
assert installed.loaded_abspath.parent == provider.bin_dir
# The auto-initialized install_root project dir must exist on disk.
assert (install_root / "package.json").exists()
assert (install_root / "node_modules" / "zx" / "package.json").exists()
# The corepack-trap field must NOT be written, otherwise Yarn 1
# would refuse to run in the same install_root project dir.
import json as _json
pkg = _json.loads((install_root / "package.json").read_text())
assert "packageManager" not in pkg
def test_explicit_prefix_bin_dir_takes_precedence_over_existing_PATH_entries(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_path = Path(temp_dir)
ambient_provider = YarnProvider(
install_root=temp_dir_path / "ambient-yarn",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={"zx": {"install_args": ["zx@7.2.3"]}},
)
ambient_installed = ambient_provider.install(
"zx",
min_version=SemVer("1.0.0"),
)
assert ambient_installed is not None
assert ambient_installed.loaded_abspath is not None
assert ambient_installed.loaded_abspath.parent == ambient_provider.bin_dir
install_root = temp_dir_path / "yarn-root"
provider = YarnProvider(
PATH=str(ambient_provider.bin_dir),
install_root=install_root,
postinstall_scripts=True,
min_release_age=0,
)
installed = provider.install("zx", min_version=SemVer("8.8.0"))
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root == install_root
assert provider.bin_dir == install_root / "node_modules" / ".bin"
assert installed.loaded_abspath.parent == provider.bin_dir
assert installed.loaded_abspath != ambient_installed.loaded_abspath
assert installed.loaded_version is not None
assert ambient_installed.loaded_version is not None
assert installed.loaded_version > ambient_installed.loaded_version
def test_provider_direct_methods_exercise_real_lifecycle(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
provider = YarnProvider(
install_root=Path(temp_dir) / "yarn",
postinstall_scripts=True,
min_release_age=0,
)
installed, _ = test_machine.exercise_provider_lifecycle(
provider,
bin_name="zx",
)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root is not None
assert installed.loaded_abspath.is_relative_to(provider.install_root)
def test_provider_direct_min_version_revalidates_old_install_and_upgrades(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as tmpdir:
yarn_prefix = Path(tmpdir) / "yarn"
old_provider = YarnProvider(
install_root=yarn_prefix,
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={"zx": {"install_args": ["zx@7.2.3"]}},
)
old_installed = old_provider.install("zx", min_version=SemVer("1.0.0"))
assert old_installed is not None
assert old_installed.loaded_version == SemVer("7.2.3")
upgraded = YarnProvider(
install_root=yarn_prefix,
postinstall_scripts=True,
min_release_age=0,
).install("zx", min_version=SemVer("8.8.0"))
test_machine.assert_shallow_binary_loaded(
upgraded,
expected_version=SemVer("8.8.0"),
)
assert upgraded is not None
assert upgraded.loaded_version is not None
assert old_installed.loaded_version is not None
assert upgraded.loaded_version > old_installed.loaded_version
def test_provider_defaults_and_binary_overrides_enforce_min_release_age(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = self._berry_provider(
install_root=Path(tmpdir) / "strict-yarn",
postinstall_scripts=True,
min_release_age=36500,
)
assert strict_provider.supports_min_release_age("install")
with pytest.raises(BinProviderInstallError):
strict_provider.install("zx")
test_machine.assert_provider_missing(strict_provider, "zx")
# The .yarnrc.yml side effect must reflect the strict 36500 days.
yarnrc = Path(tmpdir) / "strict-yarn" / ".yarnrc.yml"
assert yarnrc.exists()
assert "npmMinimalAgeGate: 36500d" in yarnrc.read_text()
direct_override = strict_provider.install("zx", min_release_age=0)
test_machine.assert_shallow_binary_loaded(direct_override)
assert strict_provider.uninstall("zx", min_release_age=0)
# After the override, the .yarnrc.yml entry must have been
# rewritten away (no longer enforces the strict gate).
assert "npmMinimalAgeGate" not in yarnrc.read_text()
binary = Binary(
name="zx",
binproviders=[
self._berry_provider(
install_root=Path(tmpdir) / "binary-yarn",
postinstall_scripts=True,
min_release_age=36500,
),
],
postinstall_scripts=True,
min_release_age=0,
)
installed = binary.install()
test_machine.assert_shallow_binary_loaded(installed)
def test_min_release_age_pins_to_older_version_when_strict(self):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = self._berry_provider(
install_root=Path(tmpdir) / "yarn",
postinstall_scripts=True,
min_release_age=365,
)
assert strict_provider.supports_min_release_age("install")
installed = strict_provider.install("zx")
assert installed is not None
assert installed.loaded_version is not None
ceiling = SemVer.parse("8.8.0")
assert ceiling is not None
# zx 8.8.x was published too recently to clear a 365-day gate.
assert installed.loaded_version < ceiling
# Side effect: the .yarnrc.yml records the gate.
yarnrc = Path(tmpdir) / "yarn" / ".yarnrc.yml"
assert yarnrc.exists()
assert "npmMinimalAgeGate: 365d" in yarnrc.read_text()
def test_provider_defaults_and_binary_overrides_enforce_postinstall_scripts(
self,
):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = self._berry_provider(
install_root=Path(tmpdir) / "strict-yarn",
postinstall_scripts=False,
min_release_age=0,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
assert strict_provider.supports_postinstall_disable("install")
strict_installed = strict_provider.install("optipng")
assert strict_installed is not None
assert strict_installed.loaded_abspath is not None
strict_proc = strict_installed.exec(cmd=("--version",), quiet=True)
assert strict_proc.returncode != 0, (
"strict optipng install with postinstall_scripts=False "
"should have left the binary broken (no vendor download)"
)
yarnrc = Path(tmpdir) / "strict-yarn" / ".yarnrc.yml"
assert "enableScripts: false" in yarnrc.read_text()
# Use a fresh prefix for the override case so we don't reuse the
# cached package from the previous --mode skip-build run.
override_provider = self._berry_provider(
install_root=Path(tmpdir) / "override-yarn",
postinstall_scripts=False,
min_release_age=0,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
direct_override = override_provider.install(
"optipng",
postinstall_scripts=True,
)
assert direct_override is not None
assert direct_override.loaded_abspath is not None
override_proc = direct_override.exec(cmd=("--version",), quiet=True)
assert override_proc.returncode == 0, (
f"postinstall_scripts=True override should produce a working "
f"binary, but exec returned {override_proc.returncode}: "
f"stdout={override_proc.stdout!r} stderr={override_proc.stderr!r}"
)
binary = Binary(
name="optipng",
binproviders=[
self._berry_provider(
install_root=Path(tmpdir) / "binary-yarn",
postinstall_scripts=False,
min_release_age=0,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
),
],
postinstall_scripts=True,
min_release_age=0,
)
installed = binary.install()
assert installed is not None
assert installed.loaded_abspath is not None
installed_proc = installed.exec(cmd=("--version",), quiet=True)
assert installed_proc.returncode == 0
def test_no_cache_install_replaces_broken_cached_package_when_scripts_reenabled(
self,
):
with tempfile.TemporaryDirectory() as tmpdir:
install_root = Path(tmpdir) / "yarn"
strict_provider = self._berry_provider(
install_root=install_root,
postinstall_scripts=False,
min_release_age=0,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
strict_installed = strict_provider.install("optipng")
assert strict_installed is not None
assert strict_installed.loaded_abspath is not None
strict_proc = strict_installed.exec(cmd=("--version",), quiet=True)
if strict_provider.supports_postinstall_disable("install"):
assert strict_proc.returncode != 0
else:
assert strict_proc.returncode == 0
refreshed = (
self._berry_provider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=0,
)
.get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
.install(
"optipng",
no_cache=True,
)
)
assert refreshed is not None
assert refreshed.loaded_abspath is not None
refreshed_proc = refreshed.exec(cmd=("--version",), quiet=True)
assert refreshed_proc.returncode == 0, (
f"no_cache=True should force Yarn to refresh the broken cached "
f"package when postinstall scripts are re-enabled, but exec "
f"returned {refreshed_proc.returncode}: "
f"stdout={refreshed_proc.stdout!r} stderr={refreshed_proc.stderr!r}"
)
def test_no_cache_update_replaces_broken_cached_package_when_scripts_reenabled(
self,
):
with tempfile.TemporaryDirectory() as tmpdir:
install_root = Path(tmpdir) / "yarn"
strict_provider = self._berry_provider(
install_root=install_root,
postinstall_scripts=False,
min_release_age=0,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
strict_installed = strict_provider.install("optipng")
assert strict_installed is not None
assert strict_installed.loaded_abspath is not None
strict_proc = strict_installed.exec(cmd=("--version",), quiet=True)
if strict_provider.supports_postinstall_disable("install"):
assert strict_proc.returncode != 0
else:
assert strict_proc.returncode == 0
updated = (
self._berry_provider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=0,
)
.get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
.update(
"optipng",
no_cache=True,
)
)
assert updated is not None
assert updated.loaded_abspath is not None
updated_proc = updated.exec(cmd=("--version",), quiet=True)
assert updated_proc.returncode == 0, (
f"no_cache=True should force Yarn to refresh the broken cached "
f"package during update when postinstall scripts are "
f"re-enabled, but exec returned {updated_proc.returncode}: "
f"stdout={updated_proc.stdout!r} stderr={updated_proc.stderr!r}"
)
def test_binary_direct_methods_exercise_real_lifecycle(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
binary = Binary(
name="zx",
binproviders=[
YarnProvider(
install_root=Path(temp_dir) / "yarn",
postinstall_scripts=True,
min_release_age=0,
),
],
postinstall_scripts=True,
min_release_age=0,
)
test_machine.exercise_binary_lifecycle(binary)
def test_provider_dry_run_does_not_install_zx(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
provider = YarnProvider(
install_root=Path(temp_dir) / "yarn",
postinstall_scripts=True,
min_release_age=0,
)
test_machine.exercise_provider_dry_run(provider, bin_name="zx")
modules_dir = Path(temp_dir) / "yarn" / "node_modules"
if modules_dir.exists():
assert not (modules_dir / "zx").exists()
def test_workspace_setup_writes_node_modules_linker(self):
# Yarn 4 defaults to PnP. The provider must write a .yarnrc.yml that
# forces ``nodeLinker: node-modules`` so binaries land in
# ``<install_root>/node_modules/.bin``.
with tempfile.TemporaryDirectory() as tmpdir:
yarn_prefix = Path(tmpdir) / "yarn"
provider = self._berry_provider(
install_root=yarn_prefix,
postinstall_scripts=True,
min_release_age=0,
)
provider.setup()
yarnrc = yarn_prefix / ".yarnrc.yml"
assert yarnrc.exists()
content = yarnrc.read_text()
assert "nodeLinker: node-modules" in content
# The auto-init must NOT write a packageManager field, since
# Yarn 1.22 corepack would refuse to run.
import json as _json
pkg = _json.loads((yarn_prefix / "package.json").read_text())
assert "packageManager" not in pkg
def test_berry_supports_methods_do_not_emit_unsupported_warnings(self, caplog):
with tempfile.TemporaryDirectory() as tmpdir:
with caplog.at_level(logging.WARNING, logger="abxpkg.binprovider"):
provider = self._berry_provider(
install_root=Path(tmpdir) / "yarn",
postinstall_scripts=False,
min_release_age=0,
)
installed = provider.install("zx")
assert installed is not None
assert provider.supports_postinstall_disable("install")
assert "ignoring unsupported postinstall_scripts" not in caplog.text
assert "ignoring unsupported min_release_age" not in caplog.text
def test_classic_yarn_warns_and_falls_back_for_unsupported_security_controls(
self,
caplog,
):
with tempfile.TemporaryDirectory() as tmpdir:
with caplog.at_level(logging.WARNING, logger="abxpkg.binprovider"):
provider = self._classic_provider(
install_root=Path(tmpdir) / "yarn",
postinstall_scripts=False,
min_release_age=365,
)
installed = provider.install("zx")
assert installed is not None
assert installed.loaded_abspath is not None
proc = installed.exec(cmd=("--version",), quiet=True)
assert proc.returncode == 0
assert not provider.supports_postinstall_disable("install")
assert not provider.supports_min_release_age("install")
assert "ignoring unsupported postinstall_scripts=False" in caplog.text
assert "ignoring unsupported min_release_age=365" in caplog.text
def test_binary_install_failure_propagates_as_BinaryInstallError(self):
with tempfile.TemporaryDirectory() as tmpdir:
failing_binary = Binary(
name="zx",
binproviders=[
self._berry_provider(
install_root=Path(tmpdir) / "yarn",
postinstall_scripts=True,
min_release_age=36500,
),
],
postinstall_scripts=True,
min_release_age=36500,
)
failing_provider = failing_binary.binproviders[0]
assert isinstance(failing_provider, YarnProvider)
assert failing_provider.supports_min_release_age("install")
with pytest.raises(BinaryInstallError):
failing_binary.install()
def test_search_finds_real_npm_package_via_registry(self):
# yarn 4+ removed ``yarn search`` so YarnProvider.search hits the
# npm registry HTTP API directly. This test only exercises that
# search path — it doesn't install anything because installing
# via yarn requires the host's yarn workspace setup, which is
# exercised by the other test_*_lifecycle tests in this file.
with tempfile.TemporaryDirectory() as temp_dir:
provider = YarnProvider(
install_root=Path(temp_dir) / "yarn",
postinstall_scripts=True,
min_release_age=0,
)
results = provider.search("zx")
assert results, "yarn search zx (via npm registry) should return matches"
names = [r.name for r in results]
assert "zx" in names
match = next(r for r in results if r.name == "zx")
assert match.overrides == {"yarn": {"install_args": ["zx"]}}
assert match.loaded_abspath is None
assert match.loaded_version is None