mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-17 09:41:58 +00:00
test(install): cover bundled-Node npm global prefix redirect
Guards that install.sh and node-bootstrap.sh redirect the bundled Node's npm global prefix to the command link dir's parent via a prefix-local global npmrc, so `npm install -g` binaries land on PATH instead of the off-PATH $HERMES_HOME/node/bin.
This commit is contained in:
parent
a4ee1f223d
commit
98205da008
1 changed files with 39 additions and 0 deletions
39
tests/test_install_sh_node_global_prefix.py
Normal file
39
tests/test_install_sh_node_global_prefix.py
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
"""Regression tests for the Hermes-managed Node's npm global prefix.
|
||||
|
||||
When the installer falls back to a bundled Node under ``$HERMES_HOME/node``,
|
||||
npm's default global prefix is that Node dir, so ``npm install -g <pkg>``
|
||||
drops the package binary in ``$HERMES_HOME/node/bin`` — which is NOT on PATH
|
||||
(only the command link dir is) and is wiped on every Node upgrade. Users then
|
||||
report "I can ``npm i -g`` but the package isn't usable on the command line".
|
||||
|
||||
The fix redirects the bundled Node's global prefix to the command link dir's
|
||||
parent (so global bins land in the already-on-PATH link dir alongside
|
||||
node/npm/npx), scoped to the bundled Node via its prefix-local global npmrc.
|
||||
"""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
REPO_ROOT = Path(__file__).resolve().parent.parent
|
||||
INSTALL_SH = REPO_ROOT / "scripts" / "install.sh"
|
||||
NODE_BOOTSTRAP = REPO_ROOT / "scripts" / "lib" / "node-bootstrap.sh"
|
||||
|
||||
|
||||
def test_install_sh_redirects_bundled_npm_global_prefix_to_link_dir() -> None:
|
||||
text = INSTALL_SH.read_text()
|
||||
|
||||
# The redirect must target the link dir's PARENT so global bins resolve to
|
||||
# <parent>/bin == the command link dir (node/npm/npx live there and it is
|
||||
# guaranteed on PATH by the installer's PATH setup).
|
||||
assert 'printf \'prefix=%s\\n\' "$(dirname "$node_link_dir")" > "$HERMES_HOME/node/etc/npmrc"' in text
|
||||
|
||||
# The npmrc lives under the bundled Node so it only affects this npm, not
|
||||
# the user's other Node installs or their ~/.npmrc.
|
||||
assert '"$HERMES_HOME/node/etc/npmrc"' in text
|
||||
|
||||
|
||||
def test_node_bootstrap_redirects_bundled_npm_global_prefix_to_link_dir() -> None:
|
||||
text = NODE_BOOTSTRAP.read_text()
|
||||
|
||||
assert 'printf \'prefix=%s\\n\' "$(dirname "$_link_dir")" > "$HERMES_HOME/node/etc/npmrc"' in text
|
||||
assert '"$HERMES_HOME/node/etc/npmrc"' in text
|
||||
Loading…
Add table
Add a link
Reference in a new issue