mirror of
https://github.com/nvm-sh/nvm.git
synced 2026-04-03 11:34:50 +08:00
Add `try` and `try_err` helper functions to `test/common.sh` that capture stdout/stderr and exit code from a single invocation, eliminating duplicate command executions in tests. Convert all existing tests that used the `OUTPUT`/`EXIT_CODE` double-invocation pattern to use the new helpers. Also fixes a pre-existing bug in the `nvm_die_on_prefix` test where ASCII apostrophes were used instead of U+2019 to match nvm.sh output.
25 lines
658 B
Bash
Executable File
25 lines
658 B
Bash
Executable File
#!/bin/sh
|
|
|
|
die () { echo "$@" ; exit 1; }
|
|
|
|
\. ../../../nvm.sh
|
|
|
|
\. ../../common.sh
|
|
|
|
nvm deactivate >/dev/null 2>&1 || die 'deactivate failed'
|
|
|
|
nvm_die_on_prefix() {
|
|
echo >&2 "| $1 | $2 |"
|
|
return 3
|
|
}
|
|
|
|
try nvm use --silent node
|
|
EXPECTED_OUTPUT=""
|
|
[ "_$CAPTURED_STDOUT" = "_$EXPECTED_OUTPUT" ] \
|
|
|| die "'nvm use --silent node' did not call through to 'nvm_die_on_prefix' and give output '$EXPECTED_OUTPUT'; got '$CAPTURED_STDOUT'"
|
|
|
|
try_err nvm use --silent node
|
|
EXPECTED_CODE="11"
|
|
[ "_$CAPTURED_EXIT_CODE" = "_$EXPECTED_CODE" ] \
|
|
|| die "'nvm use --silent node' when 'nvm_die_on_prefix' fails did not return '$EXPECTED_CODE'; got '$CAPTURED_EXIT_CODE'"
|