-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_pnpmprovider.py
More file actions
815 lines (746 loc) · 34.5 KB
/
Copy pathtest_pnpmprovider.py
File metadata and controls
815 lines (746 loc) · 34.5 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
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
import logging
import os
import subprocess
import tempfile
from pathlib import Path
import pytest
from abxpkg import Binary, PnpmProvider, SemVer
from abxpkg.exceptions import BinaryInstallError, BinProviderInstallError
class TestPnpmProvider:
def test_store_dir_reuses_existing_install_root_store(self, tmp_path):
install_root = tmp_path / "pnpm"
expected_store = tmp_path / "existing-store"
provider = PnpmProvider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
assert provider.install_root is not None
modules_dir = provider.install_root / "node_modules"
modules_dir.mkdir(parents=True)
(modules_dir / ".modules.yaml").write_text(
f"storeDir: {expected_store}\n",
encoding="utf-8",
)
assert provider._store_dir() == expected_store
def test_refresh_bin_link_preserves_pnpm_shim_basedir_behavior(self):
with tempfile.TemporaryDirectory() as temp_dir:
temp_path = Path(temp_dir)
package_bin_dir = temp_path / "package" / "node_modules" / ".bin"
exposed_bin_dir = temp_path / "bin"
target = package_bin_dir / "demo"
package_bin_dir.mkdir(parents=True)
target.write_text('#!/bin/sh\ncat "$(dirname "$0")/payload.txt"\n')
target.chmod(0o755)
(package_bin_dir / "payload.txt").write_text("ok")
provider = PnpmProvider(
install_root=temp_path / "pnpm",
bin_dir=exposed_bin_dir,
postinstall_scripts=True,
min_release_age=3,
)
exposed = provider._refresh_bin_link("demo", target)
result = subprocess.run(
[str(exposed)],
check=True,
capture_output=True,
text=True,
)
assert result.stdout == "ok"
def test_self_bootstrap_installs_pnpm_when_host_pnpm_is_not_on_path(
self,
test_machine,
):
npm_binary = test_machine.require_tool("npm")
node_binary = test_machine.require_tool("node")
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "pnpm-root"
node_bin_dir = Path(node_binary).resolve().parent
constrained_path = os.pathsep.join([str(node_bin_dir), "/usr/bin", "/bin"])
old_path = os.environ.get("PATH", "")
old_npm_binary = os.environ.get("NPM_BINARY")
os.environ["PATH"] = constrained_path
os.environ["NPM_BINARY"] = npm_binary
try:
assert (
PnpmProvider(PATH=os.environ["PATH"]).load(
"pnpm",
quiet=True,
no_cache=True,
)
is None
)
provider = PnpmProvider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
installer = provider.INSTALLER_BINARY(no_cache=True)
installed = provider.install("zx")
finally:
os.environ["PATH"] = old_path
if old_npm_binary is None:
os.environ.pop("NPM_BINARY", None)
else:
os.environ["NPM_BINARY"] = old_npm_binary
assert installer.loaded_abspath is not None
assert installer.loaded_abspath.is_relative_to(
install_root / "npm",
)
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert (
installed.loaded_abspath
== install_root / "node_modules" / ".bin" / "zx"
)
def test_self_bootstrap_uses_host_npm_when_top_level_provider_excludes_env(
self,
test_machine,
):
npm_binary = test_machine.require_tool("npm")
test_machine.require_tool("node")
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "pnpm-root"
old_path = os.environ.get("PATH", "")
old_binproviders = os.environ.get("ABXPKG_BINPROVIDERS")
old_npm_binary = os.environ.get("NPM_BINARY")
os.environ["PATH"] = "/usr/bin:/bin"
os.environ["ABXPKG_BINPROVIDERS"] = "playwright"
os.environ["NPM_BINARY"] = npm_binary
try:
provider = PnpmProvider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
installer = provider.INSTALLER_BINARY(no_cache=True)
installed = provider.install("zx")
finally:
os.environ["PATH"] = old_path
if old_binproviders is None:
os.environ.pop("ABXPKG_BINPROVIDERS", None)
else:
os.environ["ABXPKG_BINPROVIDERS"] = old_binproviders
if old_npm_binary is None:
os.environ.pop("NPM_BINARY", None)
else:
os.environ["NPM_BINARY"] = old_npm_binary
assert installer.loaded_abspath is not None
assert installer.loaded_abspath.is_relative_to(install_root / "npm")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert (
installed.loaded_abspath
== install_root / "node_modules" / ".bin" / "zx"
)
def test_install_args_win_for_ignore_scripts_and_min_release_age(self):
with tempfile.TemporaryDirectory() as temp_dir:
pnpm_prefix = Path(temp_dir) / "pnpm"
provider = PnpmProvider(
install_root=pnpm_prefix,
postinstall_scripts=True,
min_release_age=36500,
).get_provider_with_overrides(
overrides={
"gifsicle": {
"install_args": [
"gifsicle",
"--ignore-scripts",
"--config.minimumReleaseAge=0",
],
},
},
)
installed = provider.install("gifsicle")
assert installed is not None
assert installed.loaded_abspath is not None
assert installed.loaded_abspath.exists()
# The wrapper exists but the postinstall download was skipped via
# explicit --ignore-scripts, so the vendored binary is missing.
proc = installed.exec(cmd=("--version",), quiet=True)
assert proc.returncode != 0
# The provider's strict 100-year min_release_age was overridden
# by the explicit --config.minimumReleaseAge=0 in install_args,
# so the resolver was able to pick a real version.
assert (pnpm_prefix / "node_modules" / "gifsicle" / "package.json").exists()
# And the lockfile / package.json side effects must exist.
assert (pnpm_prefix / "package.json").exists()
assert (pnpm_prefix / "pnpm-lock.yaml").exists()
def test_install_root_alias_installs_into_the_requested_prefix(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "pnpm-root"
provider = PnpmProvider.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
bin_dir = provider.bin_dir
assert bin_dir is not None
assert provider.install_root == install_root
assert bin_dir == install_root / "node_modules" / ".bin"
assert bin_dir.exists()
assert installed.loaded_abspath == bin_dir / "zx"
assert installed.loaded_abspath.parent == bin_dir
# Real on-disk pnpm install side effects.
assert (install_root / "node_modules" / "zx" / "package.json").exists()
assert (install_root / "package.json").exists()
assert (install_root / "pnpm-lock.yaml").exists()
# The pnpm content-addressable store should also have been
# populated under cache_dir.
store_root = provider.cache_dir
assert store_root.exists()
def test_managed_package_root_keeps_store_and_installer_under_same_lib(
self,
tmp_path,
test_machine,
):
lib_dir = tmp_path / "abx-lib"
install_root = lib_dir / "pnpm" / "packages" / "zx"
provider = PnpmProvider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
assert provider.cache_dir == lib_dir / "cache" / "pnpm"
assert (
provider._installer_provider_root() == lib_dir / "npm" / "packages" / "pnpm"
)
installed = provider.install("zx")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert installed.loaded_abspath == install_root / "node_modules" / ".bin" / "zx"
assert (install_root / "node_modules" / "zx" / "package.json").exists()
modules_yaml = install_root / "node_modules" / ".modules.yaml"
assert modules_yaml.exists()
assert str(provider.cache_dir) in modules_yaml.read_text()
proc = installed.exec(cmd=("--version",), quiet=True)
assert proc.returncode == 0, proc.stderr
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 = PnpmProvider(
install_root=temp_dir_path / "ambient-pnpm",
postinstall_scripts=True,
min_release_age=3,
).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 / "pnpm-root"
provider = PnpmProvider(
PATH=str(ambient_provider.bin_dir),
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
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
bin_dir = provider.bin_dir
assert bin_dir is not None
assert provider.install_root == install_root
assert bin_dir == install_root / "node_modules" / ".bin"
assert bin_dir.exists()
assert installed.loaded_abspath == bin_dir / "zx"
assert installed.loaded_abspath.parent == bin_dir
# The two installs must have produced two different on-disk binaries.
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_setup_falls_back_to_temp_store_when_cache_dir_is_not_a_directory(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as temp_dir:
tmp_path = Path(temp_dir)
provider = PnpmProvider(
install_root=tmp_path / "pnpm",
postinstall_scripts=True,
min_release_age=3,
)
installed = provider.install("zx")
assert provider.cache_dir.is_dir()
test_machine.assert_shallow_binary_loaded(installed)
assert (tmp_path / "pnpm" / "node_modules" / "zx" / "package.json").exists()
def test_provider_direct_methods_exercise_real_lifecycle(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
provider = PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
postinstall_scripts=True,
min_release_age=3,
)
installed, _ = test_machine.exercise_provider_lifecycle(
provider,
bin_name="zx",
)
assert installed.loaded_abspath is not None
assert installed.loaded_abspath.is_relative_to(provider.install_root)
def test_scoped_package_resolves_all_pnpm_exposed_clis(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as temp_dir:
provider = PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
postinstall_scripts=True,
min_release_age=3,
).get_provider_with_overrides(
overrides={"lit": {"install_args": ["@llamaindex/liteparse"]}},
)
installed = provider.install("lit")
test_machine.assert_shallow_binary_loaded(
installed,
assert_version_command=False,
)
assert installed is not None
assert installed.loaded_abspath is not None
assert installed.loaded_version is not None
assert provider.bin_dir is not None
assert provider.install_root is not None
assert (
installed.loaded_abspath.resolve()
== (provider.bin_dir / "lit").resolve()
)
assert (provider.bin_dir / "lit").is_file()
assert (provider.bin_dir / "liteparse").is_file()
package_json = (
provider.install_root
/ "node_modules"
/ "@llamaindex"
/ "liteparse"
/ "package.json"
)
assert package_json.exists()
import json as _json
assert (
str(installed.loaded_version)
== _json.loads(package_json.read_text())["version"]
)
exposed_bins = provider._available_cli_paths()
assert set(exposed_bins) >= {"lit", "liteparse"}
assert exposed_bins["lit"].resolve() == (provider.bin_dir / "lit").resolve()
assert (
exposed_bins["liteparse"].resolve()
== (provider.bin_dir / "liteparse").resolve()
)
lit_proc = installed.exec(cmd=("--version",), quiet=True)
assert lit_proc.returncode == 0, lit_proc.stderr
assert "2." in (lit_proc.stdout + lit_proc.stderr)
liteparse = provider.load("liteparse")
test_machine.assert_shallow_binary_loaded(
liteparse,
assert_version_command=False,
)
assert liteparse is not None
assert liteparse.loaded_abspath is not None
assert (
liteparse.loaded_abspath.resolve()
== (provider.bin_dir / "liteparse").resolve()
)
liteparse_proc = liteparse.exec(cmd=("--version",), quiet=True)
assert liteparse_proc.returncode == 0, liteparse_proc.stderr
assert "2." in (liteparse_proc.stdout + liteparse_proc.stderr)
def test_global_mode_resolves_pnpm_global_bin_dir_and_exposed_clis(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as temp_dir:
pnpm_home = (Path(temp_dir) / "pnpm-home").resolve()
previous_home = os.environ.get("PNPM_HOME")
previous_path = os.environ.get("PATH", "")
os.environ["PNPM_HOME"] = str(pnpm_home)
os.environ["PATH"] = os.pathsep.join([str(pnpm_home), previous_path])
try:
provider = PnpmProvider(
install_root=None,
postinstall_scripts=True,
min_release_age=3,
).get_provider_with_overrides(
overrides={"lit": {"install_args": ["@llamaindex/liteparse"]}},
)
installed = provider.install("lit", no_cache=True)
test_machine.assert_shallow_binary_loaded(
installed,
assert_version_command=False,
)
assert installed is not None
provided_bin_dir = provider._provided_bin_dir(no_cache=True)
assert provided_bin_dir is not None
assert provided_bin_dir.resolve() == pnpm_home.resolve()
exposed_bins = provider._available_cli_paths(no_cache=True)
assert set(exposed_bins) >= {"lit", "liteparse"}
assert exposed_bins["lit"].resolve().is_relative_to(pnpm_home)
assert exposed_bins["liteparse"].resolve().is_relative_to(pnpm_home)
liteparse = provider.load("liteparse", no_cache=True)
test_machine.assert_shallow_binary_loaded(
liteparse,
assert_version_command=False,
)
assert liteparse is not None
assert liteparse.loaded_abspath is not None
assert liteparse.loaded_abspath.resolve().is_relative_to(pnpm_home)
assert provider.uninstall("lit", no_cache=True) is True
finally:
if previous_home is None:
os.environ.pop("PNPM_HOME", None)
else:
os.environ["PNPM_HOME"] = previous_home
os.environ["PATH"] = previous_path
def test_provider_direct_min_version_revalidates_old_install_and_upgrades(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as tmpdir:
pnpm_prefix = Path(tmpdir) / "pnpm"
old_provider = PnpmProvider(
install_root=pnpm_prefix,
postinstall_scripts=True,
min_release_age=3,
).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 = PnpmProvider(
install_root=pnpm_prefix,
postinstall_scripts=True,
min_release_age=3,
).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_abspath is not None
assert upgraded.loaded_version is not None
assert old_installed.loaded_version is not None
# The new install replaced the old one in the same prefix.
assert upgraded.loaded_abspath == old_installed.loaded_abspath
assert upgraded.loaded_version > old_installed.loaded_version
installed_pkg = pnpm_prefix / "node_modules" / "zx" / "package.json"
assert installed_pkg.exists()
import json as _json
assert _json.loads(installed_pkg.read_text())["version"] == str(
upgraded.loaded_version,
)
# update() with an unreachable min_version must surface a real error.
with pytest.raises(Exception):
PnpmProvider(
install_root=pnpm_prefix,
postinstall_scripts=True,
min_release_age=3,
).update("zx", min_version=SemVer("999.0.0"))
def test_provider_defaults_and_binary_overrides_enforce_min_release_age(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = PnpmProvider(
install_root=Path(tmpdir) / "strict-pnpm",
postinstall_scripts=True,
min_release_age=36500,
)
assert strict_provider.supports_min_release_age("install") is True
with pytest.raises(BinProviderInstallError):
strict_provider.install("zx")
test_machine.assert_provider_missing(strict_provider, "zx")
direct_override = strict_provider.install("zx", min_release_age=3)
test_machine.assert_shallow_binary_loaded(direct_override)
assert strict_provider.uninstall("zx", min_release_age=3)
binary = Binary(
name="zx",
binproviders=[
PnpmProvider(
install_root=Path(tmpdir) / "binary-pnpm",
postinstall_scripts=True,
min_release_age=36500,
),
],
postinstall_scripts=True,
min_release_age=3,
)
installed = binary.install()
test_machine.assert_shallow_binary_loaded(installed)
def test_provider_defaults_and_binary_overrides_enforce_postinstall_scripts(
self,
test_machine,
):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = PnpmProvider(
install_root=Path(tmpdir) / "strict-pnpm",
postinstall_scripts=False,
min_release_age=3,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
)
assert strict_provider.supports_postinstall_disable("install") is True
strict_installed = strict_provider.install("optipng")
assert strict_installed is not None
assert strict_installed.loaded_abspath is not None
assert strict_installed.loaded_abspath.exists()
strict_proc = strict_installed.exec(cmd=("--version",), quiet=True)
assert strict_proc.returncode != 0, (
f"strict optipng install with postinstall_scripts=False should "
f"have left the binary broken (no vendor download), but exec "
f"returned {strict_proc.returncode}"
)
# Use a fresh prefix to verify postinstall_scripts=True actually
# runs the postinstall hook end-to-end. (Reinstalling into the
# same prefix would hit pnpm's content-addressable store, which
# caches the package without the vendor binaries from the
# previous --ignore-scripts run.)
override_provider = PnpmProvider(
install_root=Path(tmpdir) / "override-pnpm",
postinstall_scripts=False,
min_release_age=3,
).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}"
)
assert override_provider.uninstall("optipng", postinstall_scripts=True)
binary = Binary(
name="optipng",
binproviders=[
PnpmProvider(
install_root=Path(tmpdir) / "binary-pnpm",
postinstall_scripts=False,
min_release_age=3,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
),
],
postinstall_scripts=True,
min_release_age=3,
)
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
failing_binary = Binary(
name="optipng",
binproviders=[
PnpmProvider(
install_root=Path(tmpdir) / "failing-pnpm",
postinstall_scripts=False,
min_release_age=3,
).get_provider_with_overrides(
overrides={"optipng": {"install_args": ["optipng-bin"]}},
),
],
postinstall_scripts=False,
min_release_age=3,
)
failing_installed = failing_binary.install()
assert failing_installed is not None
failing_proc = failing_installed.exec(cmd=("--version",), quiet=True)
assert failing_proc.returncode != 0
def test_binary_direct_methods_exercise_real_lifecycle(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
binary = Binary(
name="zx",
binproviders=[
PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
postinstall_scripts=True,
min_release_age=3,
),
],
postinstall_scripts=True,
min_release_age=3,
)
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 = PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
postinstall_scripts=True,
min_release_age=3,
)
test_machine.exercise_provider_dry_run(provider, bin_name="zx")
# dry_run must not have actually installed anything.
modules_dir = Path(temp_dir) / "pnpm" / "node_modules"
if modules_dir.exists():
assert not (modules_dir / "zx").exists()
def test_provider_action_args_override_provider_defaults(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
provider = PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
dry_run=True,
postinstall_scripts=False,
min_release_age=36500,
)
installed = provider.install(
"zx",
dry_run=False,
postinstall_scripts=True,
min_release_age=3,
)
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert installed.loaded_abspath.parent == provider.bin_dir
def test_global_install_uses_pnpm_home(self, test_machine):
# Hermetic global install: point PNPM_HOME at a temp dir so we can
# verify the global install side effects without polluting $HOME.
with tempfile.TemporaryDirectory() as temp_dir:
# ``.resolve()`` so macOS's /var/folders tempdirs (which resolve
# through /private) compare equal to the paths pnpm produces.
pnpm_home = (Path(temp_dir) / "pnpm-home").resolve()
previous = os.environ.get("PNPM_HOME")
os.environ["PNPM_HOME"] = str(pnpm_home)
try:
provider = PnpmProvider(
install_root=None, # global mode
postinstall_scripts=True,
min_release_age=3,
)
installed = provider.install("zx", no_cache=True)
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
# The shim must end up under PNPM_HOME, not the user's $HOME.
assert installed.loaded_abspath.resolve().is_relative_to(pnpm_home)
# Real on-disk side effect: pnpm's global package manifest exists.
assert (pnpm_home / "global").exists()
assert provider.uninstall("zx", no_cache=True) is True
assert provider.load("zx", quiet=True, no_cache=True) is None
finally:
if previous is None:
os.environ.pop("PNPM_HOME", None)
else:
os.environ["PNPM_HOME"] = previous
def test_no_cache_install_does_not_create_managed_store(self, test_machine):
test_machine.require_tool("node")
test_machine.require_tool("npm")
with tempfile.TemporaryDirectory() as temp_dir:
lib_dir = Path(temp_dir) / "lib"
install_root = lib_dir / "pnpm" / "packages" / "zx"
previous_lib_dir = os.environ.get("ABXPKG_LIB_DIR")
previous_xdg_cache_home = os.environ.get("XDG_CACHE_HOME")
os.environ["ABXPKG_LIB_DIR"] = str(lib_dir)
os.environ["XDG_CACHE_HOME"] = str(lib_dir / "cache")
try:
provider = PnpmProvider(
install_root=install_root,
postinstall_scripts=True,
min_release_age=3,
)
installed = provider.install("zx", no_cache=True)
finally:
if previous_lib_dir is None:
os.environ.pop("ABXPKG_LIB_DIR", None)
else:
os.environ["ABXPKG_LIB_DIR"] = previous_lib_dir
if previous_xdg_cache_home is None:
os.environ.pop("XDG_CACHE_HOME", None)
else:
os.environ["XDG_CACHE_HOME"] = previous_xdg_cache_home
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert installed.loaded_abspath.resolve().is_relative_to(
install_root.resolve(),
)
assert not (lib_dir / "cache" / "pnpm").exists()
def test_min_release_age_pins_to_older_version_when_strict(self):
with tempfile.TemporaryDirectory() as tmpdir:
strict_provider = PnpmProvider(
install_root=Path(tmpdir) / "pnpm",
postinstall_scripts=True,
min_release_age=365,
)
assert strict_provider.supports_min_release_age("install") is True
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
def test_supports_methods_do_not_emit_unsupported_warnings(self, caplog):
# Sanity check: when the provider IS supported on this host (which
# it always is for pnpm 10+), no "ignoring unsupported" warnings
# should be emitted at install/update/uninstall time.
with tempfile.TemporaryDirectory() as tmpdir:
with caplog.at_level(logging.WARNING, logger="abxpkg.binprovider"):
provider = PnpmProvider(
install_root=Path(tmpdir) / "pnpm",
postinstall_scripts=False,
min_release_age=3,
)
installed = provider.install("zx")
assert installed is not None
assert "ignoring unsupported postinstall_scripts" not in caplog.text
assert "ignoring unsupported min_release_age" not in caplog.text
def test_binary_install_failure_propagates_as_BinaryInstallError(self):
# Strict 100-year release age + no override forces a real install
# failure, which the Binary layer must surface as BinaryInstallError.
with tempfile.TemporaryDirectory() as tmpdir:
failing_binary = Binary(
name="zx",
binproviders=[
PnpmProvider(
install_root=Path(tmpdir) / "pnpm",
postinstall_scripts=True,
min_release_age=36500,
),
],
postinstall_scripts=True,
min_release_age=36500,
)
failing_provider = failing_binary.binproviders[0]
assert isinstance(failing_provider, PnpmProvider)
assert failing_provider.supports_min_release_age("install") is True
with pytest.raises(BinaryInstallError):
failing_binary.install()
def test_search_finds_real_npm_package_and_install_works(self, test_machine):
with tempfile.TemporaryDirectory() as temp_dir:
provider = PnpmProvider(
install_root=Path(temp_dir) / "pnpm",
postinstall_scripts=True,
min_release_age=3,
)
results = provider.search("zx")
assert results, "pnpm search zx should return registry 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 == {"pnpm": {"install_args": ["zx"]}}
assert match.loaded_abspath is None
assert match.loaded_version is None
installed = match.install()
test_machine.assert_shallow_binary_loaded(installed)
assert installed.name == "zx"