-
-
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.
[New] allow
.nvmrc
files to support comments
In theory, `npx nvmrc` can now be used to validate an `.nvmrc` file that `nvm` will support. Allowances have been made for future extensibility, and aliases may no longer contain a `#`. Fixes #3336. Closes #2288. Co-authored-by: Jordan Harband <[email protected]> Co-authored-by: Yash Singh <[email protected]>
- Loading branch information
1 parent
95081f0
commit 29dce5e
Showing
8 changed files
with
278 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
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,3 @@ | ||
[submodule "test/fixtures/nvmrc"] | ||
path = test/fixtures/nvmrc | ||
url = [email protected]:nvm-sh/nvmrc.git |
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
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
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
26 changes: 26 additions & 0 deletions
26
test/fast/Aliases/'nvm alias' should not accept aliases with a hash
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,26 @@ | ||
#!/bin/sh | ||
|
||
\. ../../../nvm.sh | ||
|
||
die () { echo "$@" ; exit 1; } | ||
|
||
OUTPUT="$(nvm alias foo#bar baz 2>&1)" | ||
EXPECTED_OUTPUT="Aliases with a comment delimiter (#) are not supported." | ||
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "trying to create an alias with a hash should fail with '$EXPECTED_OUTPUT', got '$OUTPUT'" | ||
|
||
EXIT_CODE="$(nvm alias foo#bar baz >/dev/null 2>&1 ; echo $?)" | ||
[ "$EXIT_CODE" = "1" ] || die "trying to create an alias with a hash should fail with code 1, got '$EXIT_CODE'" | ||
|
||
OUTPUT="$(nvm alias foo# baz 2>&1)" | ||
EXPECTED_OUTPUT="Aliases with a comment delimiter (#) are not supported." | ||
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "trying to create an alias ending with a hash should fail with '$EXPECTED_OUTPUT', got '$OUTPUT'" | ||
|
||
EXIT_CODE="$(nvm alias foo# baz >/dev/null 2>&1 ; echo $?)" | ||
[ "$EXIT_CODE" = "1" ] || die "trying to create an alias ending with a hash should fail with code 1, got '$EXIT_CODE'" | ||
|
||
OUTPUT="$(nvm alias \#bar baz 2>&1)" | ||
EXPECTED_OUTPUT="Aliases with a comment delimiter (#) are not supported." | ||
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "trying to create an alias starting with a hash should fail with '$EXPECTED_OUTPUT', got '$OUTPUT'" | ||
|
||
EXIT_CODE="$(nvm alias \#bar baz >/dev/null 2>&1 ; echo $?)" | ||
[ "$EXIT_CODE" = "1" ] || die "trying to create an alias starting with a hash should fail with code 1, got '$EXIT_CODE'" |
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,34 @@ | ||
#!/bin/sh | ||
|
||
die () { echo "$@" ; cleanup ; exit 1; } | ||
|
||
cleanup() { | ||
echo 'cleaned up' | ||
} | ||
|
||
\. ../../../nvm.sh | ||
|
||
\. ../../common.sh | ||
|
||
for f in ../../../test/fixtures/nvmrc/test/fixtures/valid/*; do | ||
STDOUT="$(nvm_process_nvmrc $f/.nvmrc 2>/dev/null)" | ||
EXIT_CODE="$(nvm_process_nvmrc $f/.nvmrc >/dev/null 2>/dev/null; echo $?)" | ||
|
||
EXPECTED="$(extract_value node "$(parse_json "$(cat "$f/expected.json")")")" | ||
|
||
[ "${EXIT_CODE}" = "0" ] || die "$(basename "${f}"): expected exit code of 0 but got ${EXIT_CODE}" | ||
|
||
[ "${STDOUT}" = "${EXPECTED}" ] || die "$(basename "${f}"): expected STDOUT of \`${EXPECTED}\` but got \`${STDOUT}\`" | ||
done | ||
|
||
for f in ../../../test/fixtures/nvmrc/test/fixtures/invalid/*; do | ||
STDOUT="$(nvm_process_nvmrc $f/.nvmrc 2>/dev/null)" | ||
STDERR="$(nvm_process_nvmrc $f/.nvmrc 2>&1 >/dev/null | awk '{if(NR > 8) print $0}' | strip_colors)" | ||
EXIT_CODE="$(nvm_process_nvmrc $f/.nvmrc >/dev/null 2>/dev/null; echo $?)" | ||
|
||
EXPECTED="$(parse_json "$(cat "$f/expected.json")" | sed 's/^[0-9]*="//;s/"$//')" | ||
|
||
[ "${EXIT_CODE}" != "0" ] || die "$(basename "${f}"): expected exit code of 'not 0' but got ${EXIT_CODE}" | ||
|
||
[ "${STDERR}" = "${EXPECTED}" ] || die "$(basename "${f}"): expected STDERR of \`${EXPECTED}\` but got \`${STDERR}\`" | ||
done |