asdf/test/asdf_elvish.bats

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
2.7 KiB
Plaintext
Raw Normal View History

2021-11-18 03:05:27 -07:00
#!/usr/bin/env bats
# shellcheck disable=SC2030,SC2031
2021-11-18 03:05:27 -07:00
load test_helpers
setup() {
2023-01-08 17:59:42 -07:00
export XDG_CONFIG_HOME=
export XDG_DATA_HOME=
export XDG_DATA_DIRS=
local ver_major=
local ver_minor=
local ver_patch=
IFS='.' read -r ver_major ver_minor ver_patch <<<"$(elvish -version)"
if ((ver_major == 0 && ver_minor < 18)); then
skip "Elvish version is not at least 0.18. Found ${ver_major}.${ver_minor}.${ver_patch}"
fi
2021-11-18 03:05:27 -07:00
}
cleaned_path() {
echo "$PATH" | tr ':' '\n' | grep -v "asdf" | tr '\n' ' '
}
@test "exports ASDF_DIR" {
run elvish -norc -c "
unset-env ASDF_DIR
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
echo \$E:ASDF_DIR"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
[ "$output" = "$HOME/.asdf" ]
}
@test "retains ASDF_DIR" {
run elvish -norc -c "
set-env ASDF_DIR \"/path/to/asdf\"
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
echo \$E:ASDF_DIR"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
[ "$output" = "/path/to/asdf" ]
}
@test "retains ASDF_DATA_DIR" {
run elvish -norc -c "
set-env ASDF_DATA_DIR \"/path/to/asdf-data\"
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
echo \$E:ASDF_DATA_DIR"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
[ "$output" = "/path/to/asdf-data" ]
}
@test "adds asdf dirs to PATH" {
run elvish -norc -c "
unset-env ASDF_DIR
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
echo \$E:PATH"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
2021-11-18 03:05:27 -07:00
result=$(echo "$output" | grep "asdf")
[ "$result" != "" ]
}
@test "defines the _asdf namespace" {
run elvish -norc -c "
unset-env ASDF_DIR
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
pprint \$_asdf:"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
[[ "$output" =~ "<ns " ]]
}
@test "does not add paths to PATH more than once" {
run elvish -norc -c "
unset-env ASDF_DIR
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
echo \$E:PATH"
[ "$status" -eq 0 ]
result=$(echo "$result" | tr ':' '\n' | grep "asdf" | sort | uniq -d)
[ "$result" = "" ]
}
2021-11-18 03:05:27 -07:00
@test "defines the asdf function" {
run elvish -norc -c "
unset-env ASDF_DIR
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
pprint \$asdf~"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
[[ "$output" =~ "<closure " ]]
}
@test "function calls asdf command" {
run elvish -norc -c "
set-env ASDF_DIR $(pwd) # checkstyle-ignore
set paths = [$(cleaned_path)]
2023-01-08 17:59:42 -07:00
use ./asdf _asdf; var asdf~ = \$_asdf:asdf~
2021-11-18 03:05:27 -07:00
asdf info"
2021-11-18 03:05:27 -07:00
[ "$status" -eq 0 ]
2021-11-18 03:05:27 -07:00
result=$(echo "$output" | grep "ASDF INSTALLED PLUGINS:")
[ "$result" != "" ]
}