-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix]:
nvm ls
, nvm alias
, nvm install
: error when an LTS name i…
…s invalid
- Loading branch information
Showing
3 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
test/fast/Unit tests/nvm install with nonlowercase LTS name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/sh | ||
|
||
die () { echo "$@" ; exit 1; } | ||
|
||
\. ../../../nvm.sh | ||
|
||
REMOTE="${PWD}/mocks/nvm_ls_remote.txt" | ||
REMOTE_IOJS="${PWD}/mocks/nvm_ls_remote_iojs.txt" | ||
|
||
nvm_download() { | ||
if [ "$*" = "-L -s $(nvm_get_mirror node std)/index.tab -o -" ]; then | ||
cat "${REMOTE}" | ||
elif [ "$*" = "-L -s $(nvm_get_mirror iojs)/index.tab -o -" ]; then | ||
cat "${REMOTE_IOJS}" | ||
else | ||
nvm_err "unknown nvm_download call: $*" | ||
return 42 | ||
fi | ||
} | ||
|
||
nvm_install_binary() { | ||
return 42 | ||
} | ||
nvm_install_source() { | ||
return 42 | ||
} | ||
|
||
ACTUAL="$(nvm install lts/ARGON 2>&1)" | ||
EXIT_CODE=$? | ||
if [ $EXIT_CODE -ne 3 ]; then | ||
die "Expected exit code of 3, got ${EXIT_CODE}" | ||
fi | ||
|
||
EXPECTED="LTS names must be lowercase | ||
Version with LTS filter 'ARGON' not found - try \`nvm ls-remote --lts=ARGON\` to browse available versions." | ||
|
||
[ "${ACTUAL}" = "${EXPECTED}" ] || die "Expected >${EXPECTED}<, got >${ACTUAL}<" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters