mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
67 lines
1.6 KiB
Bash
67 lines
1.6 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helpers
|
|
|
|
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/where.sh
|
|
|
|
function setup() {
|
|
setup_asdf_dir
|
|
install_dummy_plugin
|
|
install_dummy_version 1.0
|
|
install_dummy_version 2.1
|
|
install_dummy_version ref-master
|
|
}
|
|
|
|
function teardown() {
|
|
clean_asdf_dir
|
|
}
|
|
|
|
@test "where shows install location of selected version" {
|
|
run asdf where 'dummy' '1.0'
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "$ASDF_DIR/installs/dummy/1.0" ]
|
|
}
|
|
|
|
@test "where understands versions installed by ref" {
|
|
run asdf where 'dummy' 'ref:master'
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "$ASDF_DIR/installs/dummy/ref-master" ]
|
|
}
|
|
|
|
@test "where shows install location of current version if no version specified" {
|
|
echo 'dummy 2.1' >> $HOME/.tool-versions
|
|
|
|
run asdf where 'dummy'
|
|
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "$ASDF_DIR/installs/dummy/2.1" ]
|
|
}
|
|
|
|
@test "where should error when the plugin doesn't exist" {
|
|
run asdf where "foobar"
|
|
[ "$status" -eq 1 ]
|
|
[ "$output" = "No such plugin: foobar" ]
|
|
}
|
|
|
|
@test "where should error when version is not installed" {
|
|
run asdf where 'dummy' '1.6'
|
|
[ "$status" -eq 1 ]
|
|
[ "$output" = "Version not installed" ]
|
|
}
|
|
|
|
@test "where should error when system version is set" {
|
|
run asdf where 'dummy' 'system'
|
|
[ "$status" -eq 1 ]
|
|
[ "$output" = "System version is selected" ]
|
|
}
|
|
|
|
@test "where should error when no current version selected and version not specified" {
|
|
run asdf where 'dummy'
|
|
|
|
local expected
|
|
expected="No version set for dummy; please run \`asdf <global | local> dummy <version>\`"
|
|
|
|
[ "$status" -eq 1 ]
|
|
[ "$output" = "$expected" ]
|
|
}
|