reliably detect parent shell in rbenv init

`$SHELL` variable is a terrible way of detecting the current shell
because it's not even supposed to reflect the current shell; it's meant
for keeping the value of the default shell for programs to start.

If an explicit `<shell>` argument wasn't passed to `rbenv init`, it
tries to detect the shell by getting the name of its parent process. If
this fails, it falls back on the value of `$SHELL` as before.

Furthermore, `rbenv init` will set the RBENV_SHELL variable in the
current shell to the value of the detected shell so that `sh-shell` and
`sh-rehash` commands don't have to repeat the detection.
This commit is contained in:
Mislav Marohnić 2013-09-28 18:43:39 +02:00
parent ff23666d56
commit 878bd87328
6 changed files with 34 additions and 17 deletions

View file

@ -22,7 +22,8 @@ done
shell="$1" shell="$1"
if [ -z "$shell" ]; then if [ -z "$shell" ]; then
shell="$(basename "$SHELL")" shell="$(ps c -p $(ps -p $$ -o 'ppid=' 2>/dev/null) -o 'comm=' 2>/dev/null || true)"
shell="$(basename "${shell:-$SHELL}")"
fi fi
READLINK=$(type -p greadlink readlink | head -1) READLINK=$(type -p greadlink readlink | head -1)
@ -100,6 +101,15 @@ if [[ ":${PATH}:" != *:"${RBENV_ROOT}/shims":* ]]; then
esac esac
fi fi
case "$shell" in
fish )
echo "setenv RBENV_SHELL $shell"
;;
* )
echo "export RBENV_SHELL=$shell"
;;
esac
completion="${root}/completions/rbenv.${shell}" completion="${root}/completions/rbenv.${shell}"
if [ -r "$completion" ]; then if [ -r "$completion" ]; then
case "$shell" in case "$shell" in

View file

@ -7,7 +7,7 @@ if [ "$1" = "--complete" ]; then
exec rbenv-rehash --complete exec rbenv-rehash --complete
fi fi
shell="$(basename "$SHELL")" shell="$(basename "${RBENV_SHELL:-$SHELL}")"
# When rbenv shell integration is enabled, delegate to rbenv-rehash, # When rbenv shell integration is enabled, delegate to rbenv-rehash,
# then tell the shell to empty its command lookup cache. # then tell the shell to empty its command lookup cache.

View file

@ -24,7 +24,7 @@ if [ "$1" = "--complete" ]; then
fi fi
version="$1" version="$1"
shell="$(basename "$SHELL")" shell="$(basename "${RBENV_SHELL:-$SHELL}")"
if [ -z "$version" ]; then if [ -z "$version" ]; then
if [ -z "$RBENV_VERSION" ]; then if [ -z "$RBENV_VERSION" ]; then

View file

@ -19,14 +19,21 @@ load test_helper
@test "setup shell completions" { @test "setup shell completions" {
root="$(cd $BATS_TEST_DIRNAME/.. && pwd)" root="$(cd $BATS_TEST_DIRNAME/.. && pwd)"
SHELL=/bin/bash run rbenv-init - run rbenv-init - bash
assert_success assert_success
assert_line "source '${root}/libexec/../completions/rbenv.bash'" assert_line "source '${root}/libexec/../completions/rbenv.bash'"
} }
@test "detect parent shell" {
root="$(cd $BATS_TEST_DIRNAME/.. && pwd)"
SHELL=/bin/false run rbenv-init -
assert_success
assert_line "export RBENV_SHELL=bash"
}
@test "setup shell completions (fish)" { @test "setup shell completions (fish)" {
root="$(cd $BATS_TEST_DIRNAME/.. && pwd)" root="$(cd $BATS_TEST_DIRNAME/.. && pwd)"
SHELL=/usr/bin/fish run rbenv-init - run rbenv-init - fish
assert_success assert_success
assert_line ". '${root}/libexec/../completions/rbenv.fish'" assert_line ". '${root}/libexec/../completions/rbenv.fish'"
} }
@ -39,28 +46,28 @@ load test_helper
@test "adds shims to PATH" { @test "adds shims to PATH" {
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin" export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin"
SHELL=/bin/bash run rbenv-init - run rbenv-init - bash
assert_success assert_success
assert_line 0 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"' assert_line 0 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
} }
@test "adds shims to PATH (fish)" { @test "adds shims to PATH (fish)" {
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin" export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin"
SHELL=/usr/bin/fish run rbenv-init - run rbenv-init - fish
assert_success assert_success
assert_line 0 "setenv PATH '${RBENV_ROOT}/shims' \$PATH" assert_line 0 "setenv PATH '${RBENV_ROOT}/shims' \$PATH"
} }
@test "doesn't add shims to PATH more than once" { @test "doesn't add shims to PATH more than once" {
export PATH="${RBENV_ROOT}/shims:$PATH" export PATH="${RBENV_ROOT}/shims:$PATH"
SHELL=/bin/bash run rbenv-init - run rbenv-init - bash
assert_success assert_success
refute_line 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"' refute_line 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
} }
@test "doesn't add shims to PATH more than once (fish)" { @test "doesn't add shims to PATH more than once (fish)" {
export PATH="${RBENV_ROOT}/shims:$PATH" export PATH="${RBENV_ROOT}/shims:$PATH"
SHELL=/usr/bin/fish run rbenv-init - run rbenv-init - fish
assert_success assert_success
refute_line 'setenv PATH "'${RBENV_ROOT}'/shims" $PATH ;' refute_line 'setenv PATH "'${RBENV_ROOT}'/shims" $PATH ;'
} }

View file

@ -101,14 +101,14 @@ SH
@test "sh-rehash in bash" { @test "sh-rehash in bash" {
create_executable "2.0" "ruby" create_executable "2.0" "ruby"
SHELL=/bin/bash run rbenv-sh-rehash RBENV_SHELL=bash run rbenv-sh-rehash
assert_success "hash -r 2>/dev/null || true" assert_success "hash -r 2>/dev/null || true"
assert [ -x "${RBENV_ROOT}/shims/ruby" ] assert [ -x "${RBENV_ROOT}/shims/ruby" ]
} }
@test "sh-rehash in fish" { @test "sh-rehash in fish" {
create_executable "2.0" "ruby" create_executable "2.0" "ruby"
SHELL=/usr/bin/fish run rbenv-sh-rehash RBENV_SHELL=fish run rbenv-sh-rehash
assert_success "hash -r 2>/dev/null ; or true" assert_success "hash -r 2>/dev/null ; or true"
assert [ -x "${RBENV_ROOT}/shims/ruby" ] assert [ -x "${RBENV_ROOT}/shims/ruby" ]
} }

View file

@ -11,22 +11,22 @@ load test_helper
} }
@test "shell version" { @test "shell version" {
SHELL=/bin/bash RBENV_VERSION="1.2.3" run rbenv-sh-shell RBENV_SHELL=bash RBENV_VERSION="1.2.3" run rbenv-sh-shell
assert_success 'echo "$RBENV_VERSION"' assert_success 'echo "$RBENV_VERSION"'
} }
@test "shell version (fish)" { @test "shell version (fish)" {
SHELL=/usr/bin/fish RBENV_VERSION="1.2.3" run rbenv-sh-shell RBENV_SHELL=fish RBENV_VERSION="1.2.3" run rbenv-sh-shell
assert_success 'echo "$RBENV_VERSION"' assert_success 'echo "$RBENV_VERSION"'
} }
@test "shell unset" { @test "shell unset" {
SHELL=/bin/bash run rbenv-sh-shell --unset RBENV_SHELL=bash run rbenv-sh-shell --unset
assert_success "unset RBENV_VERSION" assert_success "unset RBENV_VERSION"
} }
@test "shell unset (fish)" { @test "shell unset (fish)" {
SHELL=/usr/bin/fish run rbenv-sh-shell --unset RBENV_SHELL=fish run rbenv-sh-shell --unset
assert_success "set -e RBENV_VERSION" assert_success "set -e RBENV_VERSION"
} }
@ -41,12 +41,12 @@ SH
@test "shell change version" { @test "shell change version" {
mkdir -p "${RBENV_ROOT}/versions/1.2.3" mkdir -p "${RBENV_ROOT}/versions/1.2.3"
SHELL=/bin/bash run rbenv-sh-shell 1.2.3 RBENV_SHELL=bash run rbenv-sh-shell 1.2.3
assert_success 'export RBENV_VERSION="1.2.3"' assert_success 'export RBENV_VERSION="1.2.3"'
} }
@test "shell change version (fish)" { @test "shell change version (fish)" {
mkdir -p "${RBENV_ROOT}/versions/1.2.3" mkdir -p "${RBENV_ROOT}/versions/1.2.3"
SHELL=/usr/bin/fish run rbenv-sh-shell 1.2.3 RBENV_SHELL=fish run rbenv-sh-shell 1.2.3
assert_success 'setenv RBENV_VERSION "1.2.3"' assert_success 'setenv RBENV_VERSION "1.2.3"'
} }