asdf/test/uninstall_command.bats
Victor Borja d1f0b64c2f Remove shims on uninstall or plugin-remove
- Remove plugin shims when last version is uninstalled.
- Remove shims on plugin-remove

When the latest version of a tool is uninstalled,
Remove the plugin shims (marked with metadata at #122)

Also found lots of missing tests and added them.

Closes #67
2016-12-15 06:05:23 -06:00

74 lines
2.0 KiB
Bash

#!/usr/bin/env bats
load test_helpers
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/reshim.sh
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/install.sh
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/uninstall.sh
setup() {
setup_asdf_dir
install_dummy_plugin
PROJECT_DIR=$HOME/project
mkdir $PROJECT_DIR
}
teardown() {
clean_asdf_dir
}
@test "uninstall_command should fail when no such version is installed" {
run uninstall_command dummy 3.14
[ "$output" == "No such version" ]
[ "$status" -eq 1 ]
}
@test "uninstall_command should remove the plugin with that version from asdf" {
run install_command dummy 1.1
[ "$status" -eq 0 ]
[ $(cat $ASDF_DIR/installs/dummy/1.1/version) = "1.1" ]
run uninstall_command dummy 1.1
[ ! -f $ASDF_DIR/installs/dummy/1.1/version ]
}
@test "uninstall_command should invoke the plugin bin/uninstall if available" {
run install_command dummy 1.1
[ "$status" -eq 0 ]
mkdir -p $ASDF_DIR/plugins/dummy/bin
echo "echo custom uninstall" > $ASDF_DIR/plugins/dummy/bin/uninstall
chmod 755 $ASDF_DIR/plugins/dummy/bin/uninstall
run uninstall_command dummy 1.1
[ "$output" == "custom uninstall" ]
[ "$status" -eq 0 ]
}
@test "uninstall_command should remove the plugin shims if no other version is installed" {
run install_command dummy 1.1
[ -f $ASDF_DIR/shims/dummy ]
run uninstall_command dummy 1.1
[ ! -f $ASDF_DIR/shims/dummy ]
}
@test "uninstall_command should leave the plugin shims if other version is installed" {
run install_command dummy 1.0
[ -f $ASDF_DIR/installs/dummy/1.0/bin/dummy ]
run install_command dummy 1.1
[ -f $ASDF_DIR/installs/dummy/1.1/bin/dummy ]
[ -f $ASDF_DIR/shims/dummy ]
run uninstall_command dummy 1.0
[ -f $ASDF_DIR/shims/dummy ]
}
@test "uninstall_command should not remove other unrelated shims" {
run install_command dummy 1.0
[ -f $ASDF_DIR/shims/dummy ]
touch $ASDF_DIR/shims/gummy
[ -f $ASDF_DIR/shims/gummy ]
run uninstall_command dummy 1.0
[ -f $ASDF_DIR/shims/gummy ]
}