0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00
n/test/tests/install-options.bats

66 lines
1.5 KiB
Bash

#!/usr/bin/env bats
load shared-functions
function setup() {
unset_n_env
setup_tmp_prefix
}
function teardown() {
rm -rf "${TMP_PREFIX_DIR}"
}
@test "n --download 4.9.1" {
n --download 4.9.1
[ -d "${N_PREFIX}/n/versions/node/4.9.1" ]
# Remember, we installed a dumy node so do have a bin/node
[ ! -f "${N_PREFIX}/bin/npm" ]
[ ! -d "${N_PREFIX}/include" ]
[ ! -d "${N_PREFIX}/lib" ]
[ ! -d "${N_PREFIX}/shared" ]
}
@test "n --quiet 4.9.1" {
# just checking option is allowed, not testing functionality
n --quiet 4.9.1
output="$(node --version)"
[ "${output}" = "v4.9.1" ]
}
# mostly --preserve, but also variations with i/install and lts/numeric
@test "--preserve variations # (4 installs)" {
local ARGON_VERSION="v4.9.1"
local ARGON_NPM_VERSION="2.15.11"
local LTS_VERSION="$(display_remote_version lts)"
n ${ARGON_VERSION}
output="$("${N_PREFIX}/bin/node" --version)"
[ "$output" = "${ARGON_VERSION}" ]
output="$("${N_PREFIX}/bin/npm" --version)"
[ "$output" = "${ARGON_NPM_VERSION}" ]
n --preserve "${LTS_VERSION}"
output="$("${N_PREFIX}/bin/node" --version)"
[ "$output" = "v${LTS_VERSION}" ]
output="$("${N_PREFIX}/bin/npm" --version)"
[ "$output" = "${ARGON_NPM_VERSION}" ]
N_PRESERVE_NPM=1 n "${LTS_VERSION}"
output="$("${N_PREFIX}/bin/npm" --version)"
[ "$output" = "${ARGON_NPM_VERSION}" ]
N_PRESERVE_NPM=1 n --no-preserve "${LTS_VERSION}"
output="$("${N_PREFIX}/bin/npm" --version)"
[ "$output" != "${ARGON_NPM_VERSION}" ]
}
# ToDo: --arch