mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-08-20 04:23:43 +00:00
Compare commits
No commits in common. "5d977d8a8cfbf2006880062b4d11fab413b2f7c6" and "ff7634577bc6d3cc2c7fe059018aa18b7ed32686" have entirely different histories.
5d977d8a8c
...
ff7634577b
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
@ -58,11 +58,12 @@ jobs:
|
|||||||
- run: sudo ${{ matrix.shell }} --version 2> /dev/null || dpkg -s ${{ matrix.shell }} 2> /dev/null || which ${{ matrix.shell }}
|
- run: sudo ${{ matrix.shell }} --version 2> /dev/null || dpkg -s ${{ matrix.shell }} 2> /dev/null || which ${{ matrix.shell }}
|
||||||
- run: curl --version
|
- run: curl --version
|
||||||
- run: wget --version
|
- run: wget --version
|
||||||
- uses: ljharb/actions/node/install@main
|
- uses: ljharb/actions/node/run@main
|
||||||
name: 'npm install && version checks'
|
name: 'npm install && version checks'
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: 'lts/*'
|
||||||
skip-ls-check: true
|
skip-ls-check: true
|
||||||
|
shell-command: echo installed
|
||||||
- run: npm ls urchin
|
- run: npm ls urchin
|
||||||
- run: npx which urchin
|
- run: npx which urchin
|
||||||
- run: env
|
- run: env
|
||||||
|
26
README.md
26
README.md
@ -6,7 +6,7 @@
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|
||||||
# Node Version Manager [][3] [][4] [](https://bestpractices.dev/projects/684)
|
# Node Version Manager [][3] [][4] [](https://bestpractices.dev/projects/684)
|
||||||
|
|
||||||
<!-- To update this table of contents, ensure you have run `npm install` then `npm run doctoc` -->
|
<!-- To update this table of contents, ensure you have run `npm install` then `npm run doctoc` -->
|
||||||
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
||||||
@ -102,10 +102,10 @@ nvm is a version manager for [node.js](https://nodejs.org/en/), designed to be i
|
|||||||
|
|
||||||
To **install** or **update** nvm, you should run the [install script][2]. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
|
To **install** or **update** nvm, you should run the [install script][2]. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
|
||||||
```sh
|
```sh
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
```
|
```
|
||||||
```sh
|
```sh
|
||||||
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to `~/.nvm`, and attempts to add the source lines from the snippet below to the correct profile file (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).
|
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to `~/.nvm`, and attempts to add the source lines from the snippet below to the correct profile file (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).
|
||||||
@ -127,7 +127,7 @@ Eg: `curl ... | NVM_DIR="path/to/nvm"`. Ensure that the `NVM_DIR` does not conta
|
|||||||
|
|
||||||
- The installer can use `git`, `curl`, or `wget` to download `nvm`, whichever is available.
|
- The installer can use `git`, `curl`, or `wget` to download `nvm`, whichever is available.
|
||||||
|
|
||||||
- You can instruct the installer to not edit your shell config (for example if you already get completions via a [zsh nvm plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/nvm)) by setting `PROFILE=/dev/null` before running the `install.sh` script. Here's an example one-line command to do that: `PROFILE=/dev/null bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash'`
|
- You can instruct the installer to not edit your shell config (for example if you already get completions via a [zsh nvm plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/nvm)) by setting `PROFILE=/dev/null` before running the `install.sh` script. Here's an example one-line command to do that: `PROFILE=/dev/null bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash'`
|
||||||
|
|
||||||
#### Troubleshooting on Linux
|
#### Troubleshooting on Linux
|
||||||
|
|
||||||
@ -175,7 +175,7 @@ You can use a task:
|
|||||||
```yaml
|
```yaml
|
||||||
- name: Install nvm
|
- name: Install nvm
|
||||||
ansible.builtin.shell: >
|
ansible.builtin.shell: >
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
args:
|
args:
|
||||||
creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"
|
creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"
|
||||||
```
|
```
|
||||||
@ -237,7 +237,7 @@ If you have `git` installed (requires git v1.7.10+):
|
|||||||
|
|
||||||
1. clone this repo in the root of your user profile
|
1. clone this repo in the root of your user profile
|
||||||
- `cd ~/` from anywhere then `git clone https://github.com/nvm-sh/nvm.git .nvm`
|
- `cd ~/` from anywhere then `git clone https://github.com/nvm-sh/nvm.git .nvm`
|
||||||
1. `cd ~/.nvm` and check out the latest version with `git checkout v0.40.1`
|
1. `cd ~/.nvm` and check out the latest version with `git checkout v0.40.0`
|
||||||
1. activate `nvm` by sourcing it from your shell: `. ./nvm.sh`
|
1. activate `nvm` by sourcing it from your shell: `. ./nvm.sh`
|
||||||
|
|
||||||
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
|
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
|
||||||
@ -843,13 +843,13 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
|
|||||||
### Alpine Linux 3.13+
|
### Alpine Linux 3.13+
|
||||||
```sh
|
```sh
|
||||||
apk add -U curl bash ca-certificates openssl ncurses coreutils python3 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
|
apk add -U curl bash ca-certificates openssl ncurses coreutils python3 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
### Alpine Linux 3.5 - 3.12
|
### Alpine Linux 3.5 - 3.12
|
||||||
```sh
|
```sh
|
||||||
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
|
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
_Note: Alpine 3.5 can only install NodeJS versions up to v6.9.5, Alpine 3.6 can only install versions up to v6.10.3, Alpine 3.7 installs versions up to v8.9.3, Alpine 3.8 installs versions up to v8.14.0, Alpine 3.9 installs versions up to v10.19.0, Alpine 3.10 installs versions up to v10.24.1, Alpine 3.11 installs versions up to v12.22.6, Alpine 3.12 installs versions up to v12.22.12, Alpine 3.13 & 3.14 install versions up to v14.20.0, Alpine 3.15 & 3.16 install versions up to v16.16.0 (**These are all versions on the main branch**). Alpine 3.5 - 3.12 required the package `python2` to build NodeJS, as they are older versions to build. Alpine 3.13+ requires `python3` to successfully build newer NodeJS versions, but you can use `python2` with Alpine 3.13+ if you need to build versions of node supported in Alpine 3.5 - 3.15, you just need to specify what version of NodeJS you need to install in the package install script._
|
_Note: Alpine 3.5 can only install NodeJS versions up to v6.9.5, Alpine 3.6 can only install versions up to v6.10.3, Alpine 3.7 installs versions up to v8.9.3, Alpine 3.8 installs versions up to v8.14.0, Alpine 3.9 installs versions up to v10.19.0, Alpine 3.10 installs versions up to v10.24.1, Alpine 3.11 installs versions up to v12.22.6, Alpine 3.12 installs versions up to v12.22.12, Alpine 3.13 & 3.14 install versions up to v14.20.0, Alpine 3.15 & 3.16 install versions up to v16.16.0 (**These are all versions on the main branch**). Alpine 3.5 - 3.12 required the package `python2` to build NodeJS, as they are older versions to build. Alpine 3.13+ requires `python3` to successfully build newer NodeJS versions, but you can use `python2` with Alpine 3.13+ if you need to build versions of node supported in Alpine 3.5 - 3.15, you just need to specify what version of NodeJS you need to install in the package install script._
|
||||||
@ -952,9 +952,9 @@ You have to make sure that the user directory name in `$HOME` and the user direc
|
|||||||
To change the user directory and/or account name follow the instructions [here](https://support.apple.com/en-us/HT201548)
|
To change the user directory and/or account name follow the instructions [here](https://support.apple.com/en-us/HT201548)
|
||||||
|
|
||||||
[1]: https://github.com/nvm-sh/nvm.git
|
[1]: https://github.com/nvm-sh/nvm.git
|
||||||
[2]: https://github.com/nvm-sh/nvm/blob/v0.40.1/install.sh
|
[2]: https://github.com/nvm-sh/nvm/blob/v0.40.0/install.sh
|
||||||
[3]: https://app.travis-ci.com/nvm-sh/nvm
|
[3]: https://app.travis-ci.com/nvm-sh/nvm
|
||||||
[4]: https://github.com/nvm-sh/nvm/releases/tag/v0.40.1
|
[4]: https://github.com/nvm-sh/nvm/releases/tag/v0.40.0
|
||||||
[Urchin]: https://git.sdf.org/tlevine/urchin
|
[Urchin]: https://git.sdf.org/tlevine/urchin
|
||||||
[Fish]: https://fishshell.com
|
[Fish]: https://fishshell.com
|
||||||
|
|
||||||
@ -1012,7 +1012,7 @@ Here's what you will need to do:
|
|||||||
If one of these broken versions is installed on your system, the above step will likely still succeed even if you didn't include the `--shared-zlib` flag.
|
If one of these broken versions is installed on your system, the above step will likely still succeed even if you didn't include the `--shared-zlib` flag.
|
||||||
However, later, when you attempt to `npm install` something using your old version of node.js, you will see `incorrect data check` errors.
|
However, later, when you attempt to `npm install` something using your old version of node.js, you will see `incorrect data check` errors.
|
||||||
If you want to avoid the possible hassle of dealing with this, include that flag.
|
If you want to avoid the possible hassle of dealing with this, include that flag.
|
||||||
For more details, see [this issue](https://github.com/nodejs/node/issues/39313) and [this comment](https://github.com/nodejs/node/issues/39313#issuecomment-90.40.176)
|
For more details, see [this issue](https://github.com/nodejs/node/issues/39313) and [this comment](https://github.com/nodejs/node/issues/39313#issuecomment-90.40.076)
|
||||||
|
|
||||||
- Exit back to your native shell.
|
- Exit back to your native shell.
|
||||||
|
|
||||||
@ -1039,7 +1039,7 @@ Now you should be able to use node as usual.
|
|||||||
If you've encountered this error on WSL-2:
|
If you've encountered this error on WSL-2:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
|
||||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||||
Dload Upload Total Spent Left Speed
|
Dload Upload Total Spent Left Speed
|
||||||
0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com
|
0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com
|
||||||
@ -1074,7 +1074,7 @@ Currently, the sole maintainer is [@ljharb](https://github.com/ljharb) - more ma
|
|||||||
|
|
||||||
## Project Support
|
## Project Support
|
||||||
|
|
||||||
Only the latest version (v0.40.1 at this time) is supported.
|
Only the latest version (v0.40.0 at this time) is supported.
|
||||||
|
|
||||||
## Enterprise Support
|
## Enterprise Support
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ nvm_install_dir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
nvm_latest_version() {
|
nvm_latest_version() {
|
||||||
nvm_echo "v0.40.1"
|
nvm_echo "v0.40.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
nvm_profile_is_bash_or_zsh() {
|
nvm_profile_is_bash_or_zsh() {
|
||||||
|
14
nvm.sh
14
nvm.sh
@ -891,10 +891,6 @@ nvm_normalize_lts() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if [ "${LTS}" != "$(echo "${LTS}" | command tr '[:upper:]' '[:lower:]')" ]; then
|
|
||||||
nvm_err 'LTS names must be lowercase'
|
|
||||||
return 3
|
|
||||||
fi
|
|
||||||
nvm_echo "${LTS}"
|
nvm_echo "${LTS}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -1253,9 +1249,7 @@ nvm_alias() {
|
|||||||
nvm_err 'An alias is required.'
|
nvm_err 'An alias is required.'
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
if ! ALIAS="$(nvm_normalize_lts "${ALIAS}")"; then
|
ALIAS="$(nvm_normalize_lts "${ALIAS}")"
|
||||||
return $?
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${ALIAS}" ]; then
|
if [ -z "${ALIAS}" ]; then
|
||||||
return 2
|
return 2
|
||||||
@ -1658,9 +1652,7 @@ $VERSION_LIST
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ -n "${LTS-}" ]; then
|
if [ -n "${LTS-}" ]; then
|
||||||
if ! LTS="$(nvm_normalize_lts "lts/${LTS}")"; then
|
LTS="$(nvm_normalize_lts "lts/${LTS}")"
|
||||||
return $?
|
|
||||||
fi
|
|
||||||
LTS="${LTS#lts/}"
|
LTS="${LTS#lts/}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -4404,7 +4396,7 @@ nvm() {
|
|||||||
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
|
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
|
||||||
;;
|
;;
|
||||||
"--version" | "-v")
|
"--version" | "-v")
|
||||||
nvm_echo '0.40.1'
|
nvm_echo '0.40.0'
|
||||||
;;
|
;;
|
||||||
"unload")
|
"unload")
|
||||||
nvm deactivate >/dev/null 2>&1
|
nvm deactivate >/dev/null 2>&1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nvm",
|
"name": "nvm",
|
||||||
"version": "0.40.1",
|
"version": "0.40.0",
|
||||||
"description": "Node Version Manager - Simple bash script to manage multiple active node.js versions",
|
"description": "Node Version Manager - Simple bash script to manage multiple active node.js versions",
|
||||||
"directories": {
|
"directories": {
|
||||||
"test": "test"
|
"test": "test"
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
die () { echo "$@" ; exit 1; }
|
|
||||||
|
|
||||||
\. ../../../nvm.sh
|
|
||||||
|
|
||||||
REMOTE="${PWD}/mocks/nvm_ls_remote.txt"
|
|
||||||
nvm_ls_remote() {
|
|
||||||
cat "${REMOTE}"
|
|
||||||
}
|
|
||||||
REMOTE_IOJS="${PWD}/mocks/nvm_ls_remote_iojs.txt"
|
|
||||||
nvm_ls_remote_iojs() {
|
|
||||||
cat "${REMOTE_IOJS}"
|
|
||||||
}
|
|
||||||
ACTUAL="$(nvm install lts/ARGON 2>&1)"
|
|
||||||
if [ $? -ne 3 ]; then
|
|
||||||
die "Expected exit code of 3, got $?"
|
|
||||||
fi
|
|
||||||
|
|
||||||
EXPECTED='LTS names must be lowercase'
|
|
||||||
|
|
||||||
[ "${ACTUAL}" = "${EXPECTED}" ] || die "Expected >${EXPECTED}<, got >${ACTUAL}<"
|
|
@ -70,10 +70,4 @@ OUTPUT="$(nvm ls-remote | sed 's/[ \t]*$//')"
|
|||||||
EXPECTED_OUTPUT="$(cat "${EXPECTED_OUTPUT_PATH}" | sed 's/[ \t]*$//' )"
|
EXPECTED_OUTPUT="$(cat "${EXPECTED_OUTPUT_PATH}" | sed 's/[ \t]*$//' )"
|
||||||
[ "_${OUTPUT}" = "_${EXPECTED_OUTPUT}" ] || die "bare nvm ls-remote did not output expected sorted versions; got >${OUTPUT}< expected >${EXPECTED_OUTPUT}<"
|
[ "_${OUTPUT}" = "_${EXPECTED_OUTPUT}" ] || die "bare nvm ls-remote did not output expected sorted versions; got >${OUTPUT}< expected >${EXPECTED_OUTPUT}<"
|
||||||
|
|
||||||
if OUTPUT="$(nvm ls-remote lts/ARGON 2>&1)"; then
|
|
||||||
die "nvm ls-remote lts/ARGON did not exit nonzero, got '$?'"
|
|
||||||
fi
|
|
||||||
EXPECTED_OUTPUT='LTS names must be lowercase'
|
|
||||||
[ "_${OUTPUT}" = "_${EXPECTED_OUTPUT}" ] || die "nvm ls-remote lts/ARGON did not output expected error message; got >${OUTPUT}< expected >${EXPECTED_OUTPUT}<"
|
|
||||||
|
|
||||||
cleanup
|
cleanup
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
# Save the PATH as it was when the test started to restore it when it
|
# Save the PATH as it was when the test started to restore it when it
|
||||||
# finishes
|
# finishes
|
||||||
ORIG_PATH="${PATH}"
|
ORIG_PATH=$PATH
|
||||||
|
|
||||||
cleanup() {
|
cleanup() {
|
||||||
# Restore the PATH as it was when the test started
|
# Restore the PATH as it was when the test started
|
||||||
export PATH="${ORIG_PATH}"
|
export PATH=ORIG_PATH
|
||||||
}
|
}
|
||||||
|
|
||||||
die () { cleanup; echo "$@" ; exit 1; }
|
die () { cleanup; echo "$@" ; exit 1; }
|
||||||
@ -15,23 +15,20 @@ die () { cleanup; echo "$@" ; exit 1; }
|
|||||||
|
|
||||||
# Directory where mocked binaries used by nvm_get_arch for each OS/arch are
|
# Directory where mocked binaries used by nvm_get_arch for each OS/arch are
|
||||||
# located
|
# located
|
||||||
MOCKS_DIR="$(pwd)/../../mocks"
|
MOCKS_DIR=`pwd`/../../mocks
|
||||||
# Sets the PATH for these tests to include the symlinks to the mocked
|
# Sets the PATH for these tests to include the symlinks to the mocked
|
||||||
# binaries
|
# binaries
|
||||||
export PATH=".:${PATH}"
|
export PATH=.:${PATH}
|
||||||
|
|
||||||
# Setups mock binaries for a given OS and arch that mimic
|
# Setups mock binaries for a given OS and arch that mimic
|
||||||
# the output of the real binaries used by nvm_get_arch to guess
|
# the output of the real binaries used by nvm_get_arch to guess
|
||||||
# the architecture of a given system.
|
# the architecture of a given system.
|
||||||
setup_mock_arch() {
|
setup_mock_arch() {
|
||||||
local OS
|
local OS=$1
|
||||||
OS=$1
|
local ARCH=$2
|
||||||
local ARCH
|
local OPT=$3
|
||||||
ARCH=$2
|
|
||||||
local OPT
|
|
||||||
OPT=$3
|
|
||||||
|
|
||||||
if [ "_${OS}" = '_solaris' ] || [ "_${OS}" = '_smartos' ]; then
|
if [ "_$OS" = "_solaris" ] || [ "_$OS" = "_smartos" ]; then
|
||||||
ln -sf "${MOCKS_DIR}/isainfo_${ARCH}" ./isainfo
|
ln -sf "${MOCKS_DIR}/isainfo_${ARCH}" ./isainfo
|
||||||
if [ "_$OPT" != "_no_pkg_info" ]; then
|
if [ "_$OPT" != "_no_pkg_info" ]; then
|
||||||
ln -sf "${MOCKS_DIR}/pkg_info_${ARCH}" ./pkg_info
|
ln -sf "${MOCKS_DIR}/pkg_info_${ARCH}" ./pkg_info
|
||||||
@ -45,12 +42,10 @@ setup_mock_arch() {
|
|||||||
|
|
||||||
# Cleans up the setup done by setup_mock_arch.
|
# Cleans up the setup done by setup_mock_arch.
|
||||||
cleanup_mock_arch() {
|
cleanup_mock_arch() {
|
||||||
local OS
|
local OS=$1
|
||||||
OS=$1
|
local ARCH=$2
|
||||||
local ARCH
|
|
||||||
ARCH=$2
|
|
||||||
|
|
||||||
if [ "_${OS}" = '_solaris' ] || [ "_${OS}" = '_smartos' ]; then
|
if [ "_$OS" = "_solaris" ] || [ "_$OS" = "_smartos" ]; then
|
||||||
rm -f ./isainfo
|
rm -f ./isainfo
|
||||||
rm -f ./pkg_info
|
rm -f ./pkg_info
|
||||||
fi
|
fi
|
||||||
@ -62,22 +57,17 @@ cleanup_mock_arch() {
|
|||||||
# expected output $EXPECTED_OUTPUT with the actual output. Does nothing
|
# expected output $EXPECTED_OUTPUT with the actual output. Does nothing
|
||||||
# and exits cleanly if they match, dies otherwise.
|
# and exits cleanly if they match, dies otherwise.
|
||||||
run_test() {
|
run_test() {
|
||||||
local ARCH
|
local ARCH=$1
|
||||||
ARCH=$1
|
local OS=$2
|
||||||
local OS
|
local EXPECTED_OUTPUT=$3
|
||||||
OS=$2
|
local OPT=$4
|
||||||
local EXPECTED_OUTPUT
|
|
||||||
EXPECTED_OUTPUT=$3
|
|
||||||
local OPT
|
|
||||||
OPT=$4
|
|
||||||
|
|
||||||
setup_mock_arch "${OS}" "${ARCH}" "${OPT}"
|
setup_mock_arch $OS $ARCH $OPT
|
||||||
local OUTPUT
|
local OUTPUT="$(nvm_get_arch)"
|
||||||
OUTPUT="$(nvm_get_arch)"
|
cleanup_mock_arch $OS $ARCH
|
||||||
cleanup_mock_arch "${OS}" "${ARCH}"
|
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] ||
|
||||||
[ "_${OUTPUT}" = "_${EXPECTED_OUTPUT}" ] ||
|
die "nvm_get_arch for OS \"$OS\" and arch \"$ARCH\" with OPT \"$OPT\" did
|
||||||
die "nvm_get_arch for OS \"${OS}\" and arch \"${ARCH}\" with OPT \"${OPT}\" did
|
not return \"$EXPECTED_OUTPUT\"; got \"$OUTPUT\""
|
||||||
not return \"${EXPECTED_OUTPUT}\"; got \"${OUTPUT}\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
run_test x86 smartos x86
|
run_test x86 smartos x86
|
||||||
|
@ -16,9 +16,6 @@ ACTUAL="$(nvm_normalize_lts "lts/*")"
|
|||||||
EXPECTED='lts/*'
|
EXPECTED='lts/*'
|
||||||
[ "${ACTUAL}" = "${EXPECTED}" ] || die "expected >${EXPECTED}<, got >${ACTUAL}<"
|
[ "${ACTUAL}" = "${EXPECTED}" ] || die "expected >${EXPECTED}<, got >${ACTUAL}<"
|
||||||
|
|
||||||
if ACTUAL="$(nvm_normalize_lts lts/ARGON)"; then
|
|
||||||
die "expected failure, got >${ACTUAL}<"
|
|
||||||
fi
|
|
||||||
|
|
||||||
MOCKS_DIR="../Unit tests/mocks"
|
MOCKS_DIR="../Unit tests/mocks"
|
||||||
STAR="$(cat "$MOCKS_DIR/lts-star.txt")"
|
STAR="$(cat "$MOCKS_DIR/lts-star.txt")"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user