asdf/test/asdf_fish.bats

87 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-04-06 11:19:57 -07:00
#!/usr/bin/env bats
load test_helpers
setup() {
cd "$(dirname "$BATS_TEST_DIRNAME")"
2019-04-06 11:19:57 -07:00
}
cleaned_path() {
echo "$PATH" | tr ':' '\n' | grep -v "asdf" | tr '\n' ' '
2019-04-06 11:19:57 -07:00
}
@test "exports ASDF_DIR" {
run fish -c "
2019-04-06 11:19:57 -07:00
set -e asdf
set -e ASDF_DIR
set -e ASDF_DATA_DIR
set PATH $(cleaned_path)
2021-05-21 09:03:06 -07:00
. asdf.fish
echo \$ASDF_DIR"
[ "$status" -eq 0 ]
2021-11-18 03:05:27 -07:00
[ "$output" != "" ]
2019-04-06 11:19:57 -07:00
}
2019-04-07 14:07:50 -07:00
@test "adds asdf dirs to PATH" {
run fish -c "
set -e asdf
set -e ASDF_DIR
set -e ASDF_DATA_DIR
set PATH $(cleaned_path)
2019-04-07 14:07:50 -07:00
. (pwd)/asdf.fish # if the full path is not passed, status -f will return the relative path
echo \$PATH"
[ "$status" -eq 0 ]
result=$(echo "$output" | grep "asdf")
[ "$result" != "" ]
2019-04-07 14:07:50 -07:00
}
2019-04-06 11:19:57 -07:00
@test "does not add paths to PATH more than once" {
run fish -c "
2019-04-06 11:19:57 -07:00
set -e asdf
set -e ASDF_DIR
set -e ASDF_DATA_DIR
set PATH $(cleaned_path)
2021-05-21 09:03:06 -07:00
. asdf.fish
. asdf.fish
echo \$PATH"
[ "$status" -eq 0 ]
result=$(echo "$output" | tr ' ' '\n' | grep "asdf" | sort | uniq -d)
[ "$result" = "" ]
2019-04-06 11:19:57 -07:00
}
@test "defines the asdf function" {
run fish -c "
2019-04-06 11:19:57 -07:00
set -e asdf
set -e ASDF_DIR
set PATH $(cleaned_path)
2021-05-21 09:03:06 -07:00
. asdf.fish
type asdf"
[ "$status" -eq 0 ]
2019-04-06 11:19:57 -07:00
[[ "$output" =~ "is a function" ]]
}
2021-11-18 03:05:27 -07:00
@test "function calls asdf command" {
run fish -c "
2021-11-18 03:05:27 -07:00
set -e asdf
set -x ASDF_DIR $(pwd) # checkstyle-ignore
2021-11-18 03:05:27 -07:00
set PATH $(cleaned_path)
. asdf.fish
asdf info"
[ "$status" -eq 0 ]
result=$(echo "$output" | grep "ASDF INSTALLED PLUGINS:")
[ "$result" != "" ]
2021-11-18 03:05:27 -07:00
}