2013-03-07 23:55:02 -05:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load test_helper
|
|
|
|
|
|
|
|
create_hook() {
|
|
|
|
mkdir -p "$1/$2"
|
|
|
|
touch "$1/$2/$3"
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "prints usage help given no argument" {
|
|
|
|
run rbenv-hooks
|
|
|
|
assert_failure "Usage: rbenv hooks <command>"
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "prints list of hooks" {
|
|
|
|
path1="${RBENV_TEST_DIR}/rbenv.d"
|
|
|
|
path2="${RBENV_TEST_DIR}/etc/rbenv_hooks"
|
|
|
|
create_hook "$path1" exec "hello.bash"
|
|
|
|
create_hook "$path1" exec "ahoy.bash"
|
|
|
|
create_hook "$path1" exec "invalid.sh"
|
|
|
|
create_hook "$path1" which "boom.bash"
|
|
|
|
create_hook "$path2" exec "bueno.bash"
|
|
|
|
|
|
|
|
RBENV_HOOK_PATH="$path1:$path2" run rbenv-hooks exec
|
2013-04-06 08:10:44 -04:00
|
|
|
assert_success
|
|
|
|
assert_output <<OUT
|
|
|
|
${RBENV_TEST_DIR}/rbenv.d/exec/ahoy.bash
|
|
|
|
${RBENV_TEST_DIR}/rbenv.d/exec/hello.bash
|
|
|
|
${RBENV_TEST_DIR}/etc/rbenv_hooks/exec/bueno.bash
|
|
|
|
OUT
|
2013-03-07 23:55:02 -05:00
|
|
|
}
|
|
|
|
|
2013-02-24 08:52:50 -05:00
|
|
|
@test "supports hook paths with spaces" {
|
|
|
|
path1="${RBENV_TEST_DIR}/my hooks/rbenv.d"
|
|
|
|
path2="${RBENV_TEST_DIR}/etc/rbenv hooks"
|
|
|
|
create_hook "$path1" exec "hello.bash"
|
|
|
|
create_hook "$path2" exec "ahoy.bash"
|
|
|
|
|
|
|
|
RBENV_HOOK_PATH="$path1:$path2" run rbenv-hooks exec
|
2013-04-06 08:10:44 -04:00
|
|
|
assert_success
|
|
|
|
assert_output <<OUT
|
|
|
|
${RBENV_TEST_DIR}/my hooks/rbenv.d/exec/hello.bash
|
|
|
|
${RBENV_TEST_DIR}/etc/rbenv hooks/exec/ahoy.bash
|
|
|
|
OUT
|
2013-02-24 08:52:50 -05:00
|
|
|
}
|
|
|
|
|
2013-03-07 23:55:02 -05:00
|
|
|
@test "resolves relative paths" {
|
|
|
|
path="${RBENV_TEST_DIR}/rbenv.d"
|
|
|
|
create_hook "$path" exec "hello.bash"
|
|
|
|
mkdir -p "$HOME"
|
|
|
|
|
|
|
|
RBENV_HOOK_PATH="${HOME}/../rbenv.d" run rbenv-hooks exec
|
|
|
|
assert_success "${RBENV_TEST_DIR}/rbenv.d/exec/hello.bash"
|
|
|
|
}
|
2013-03-08 14:35:46 -05:00
|
|
|
|
|
|
|
@test "resolves symlinks" {
|
|
|
|
path="${RBENV_TEST_DIR}/rbenv.d"
|
|
|
|
mkdir -p "${path}/exec"
|
|
|
|
mkdir -p "$HOME"
|
|
|
|
touch "${HOME}/hola.bash"
|
|
|
|
ln -s "../../home/hola.bash" "${path}/exec/hello.bash"
|
|
|
|
|
|
|
|
RBENV_HOOK_PATH="$path" run rbenv-hooks exec
|
|
|
|
assert_success "${HOME}/hola.bash"
|
|
|
|
}
|