mirror of
https://github.com/nvm-sh/nvm.git
synced 2026-04-08 22:14:50 +08:00
[Tests] add try/try_err helpers; convert tests to use them
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.
This commit is contained in:
@@ -22,11 +22,10 @@ npm() {
|
||||
echo '1.2.3'
|
||||
}
|
||||
|
||||
OUTPUT="$(nvm_install_latest_npm 2>&1 >/dev/null)"
|
||||
EXIT_CODE="$(nvm_install_latest_npm >/dev/null 2>&1 ; echo $?)"
|
||||
try_err nvm_install_latest_npm
|
||||
|
||||
EXPECTED="Unable to obtain node version."
|
||||
[ "${OUTPUT}" = "${EXPECTED}" ] || die "When node is unavailable, expected >${EXPECTED}<; got >${OUTPUT}"
|
||||
[ "${CAPTURED_STDERR}" = "${EXPECTED}" ] || die "When node is unavailable, expected >${EXPECTED}<; got >${CAPTURED_STDERR}"
|
||||
|
||||
node() {
|
||||
echo 'v4.5.6'
|
||||
@@ -37,11 +36,10 @@ nvm_ls_current() {
|
||||
npm() {
|
||||
return 1
|
||||
}
|
||||
OUTPUT="$(nvm_install_latest_npm 2>&1 >/dev/null)"
|
||||
EXIT_CODE="$(nvm_install_latest_npm >/dev/null 2>&1 ; echo $?)"
|
||||
try_err nvm_install_latest_npm
|
||||
|
||||
EXPECTED="Unable to obtain npm version."
|
||||
[ "${OUTPUT}" = "${EXPECTED}" ] || die "When node is available and npm is unavailable, expected >${EXPECTED}<; got >${OUTPUT}"
|
||||
[ "${CAPTURED_STDERR}" = "${EXPECTED}" ] || die "When node is available and npm is unavailable, expected >${EXPECTED}<; got >${CAPTURED_STDERR}"
|
||||
|
||||
node() {
|
||||
echo 'v4.5.6'
|
||||
@@ -52,8 +50,7 @@ nvm_ls_current() {
|
||||
npm() {
|
||||
return 1
|
||||
}
|
||||
OUTPUT="$(nvm_install_latest_npm 2>&1 >/dev/null)"
|
||||
EXIT_CODE="$(nvm_install_latest_npm >/dev/null 2>&1 ; echo $?)"
|
||||
try_err nvm_install_latest_npm
|
||||
|
||||
EXPECTED="Unable to obtain npm version."
|
||||
[ "${OUTPUT}" = "${EXPECTED}" ] || die "When node is system and npm is unavailable, expected >${EXPECTED}<; got >${OUTPUT}"
|
||||
[ "${CAPTURED_STDERR}" = "${EXPECTED}" ] || die "When node is system and npm is unavailable, expected >${EXPECTED}<; got >${CAPTURED_STDERR}"
|
||||
|
||||
Reference in New Issue
Block a user