2014-10-29 20:05:11 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-01-02 09:45:36 +08:00
|
|
|
setup () {
|
|
|
|
HOME="."
|
|
|
|
NVM_ENV=testing . ../../install.sh
|
|
|
|
touch ".bashrc"
|
|
|
|
touch ".bash_profile"
|
|
|
|
touch ".zshrc"
|
|
|
|
touch ".profile"
|
|
|
|
touch "test_profile"
|
2014-10-29 20:05:11 +08:00
|
|
|
}
|
|
|
|
|
2016-01-02 09:45:36 +08:00
|
|
|
cleanup () {
|
|
|
|
unset HOME
|
|
|
|
unset NVM_ENV
|
|
|
|
unset NVM_DETECT_PROFILE
|
|
|
|
unset -f setup cleanup die
|
|
|
|
rm -f ".bashrc" ".bash_profile" ".zshrc" ".profile" "test_profile" > "/dev/null" 2>&1
|
2014-10-29 20:05:11 +08:00
|
|
|
}
|
|
|
|
|
2016-01-03 00:16:50 +08:00
|
|
|
die () { echo "$@" '$NVM_DETECT_PROFILE:' "$NVM_DETECT_PROFILE"; cleanup; exit 1; }
|
2014-10-29 20:05:11 +08:00
|
|
|
|
|
|
|
setup
|
|
|
|
|
2016-01-02 09:45:36 +08:00
|
|
|
#
|
|
|
|
# Confirm profile detection via $SHELL works and that $PROFILE overrides profile detection
|
|
|
|
#
|
|
|
|
|
|
|
|
# .bashrc should be detected for bash
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(SHELL="/bin/bash"; unset PROFILE; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.bashrc" ]; then
|
|
|
|
die "nvm_detect_profile didn't pick \$HOME/.bashrc for bash"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# $PROFILE should override .bashrc profile detection
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(SHELL="/bin/bash"; PROFILE="test_profile"; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" != "test_profile" ]; then
|
|
|
|
die "nvm_detect_profile ignored \$PROFILE"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# .zshrc should be detected for zsh
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(SHELL="/usr/bin/zsh"; unset PROFILE; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.zshrc" ]; then
|
|
|
|
die "nvm_detect_profile didn't pick \$HOME/.zshrc for zsh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# $PROFILE should override .zshrc profile detection
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(SHELL="/usr/bin/zsh"; PROFILE="test_profile"; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" != "test_profile" ]; then
|
|
|
|
die "nvm_detect_profile ignored \$PROFILE"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Confirm $PROFILE is only returned when it points to a valid file
|
|
|
|
#
|
|
|
|
|
|
|
|
# $PROFILE is a valid file
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(PROFILE="test_profile"; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" != "test_profile" ]; then
|
|
|
|
die "nvm_detect_profile didn't pick \$PROFILE when it was a valid file"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# $PROFILE is not a valid file
|
|
|
|
rm "test_profile"
|
2016-01-02 11:33:45 +08:00
|
|
|
NVM_DETECT_PROFILE="$(PROFILE="test_profile"; nvm_detect_profile)"
|
2016-01-02 09:45:36 +08:00
|
|
|
if [ "$NVM_DETECT_PROFILE" = "test_profile" ]; then
|
|
|
|
die "nvm_detect_profile picked \$PROFILE when it was an invalid file"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# When profile detection fails via both $PROFILE and $SHELL, profile detection should select based on the existence of
|
|
|
|
# one of the following files is the following order: .profile, .bashrc, .bash_profile, .zshrc and
|
|
|
|
# return an empty value if everything fails
|
|
|
|
#
|
2014-10-29 20:05:11 +08:00
|
|
|
|
2015-07-19 08:01:06 +08:00
|
|
|
# It should favor .profile if file exists
|
2016-01-02 09:45:36 +08:00
|
|
|
NVM_DETECT_PROFILE="$(unset SHELL; nvm_detect_profile)"
|
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.profile" ]; then
|
2016-01-03 00:16:50 +08:00
|
|
|
die "nvm_detect_profile should have selected .profile"
|
2016-01-02 09:45:36 +08:00
|
|
|
fi
|
2015-07-19 08:01:06 +08:00
|
|
|
|
|
|
|
# Otherwise, it should favor .bashrc if file exists
|
2016-01-02 09:45:36 +08:00
|
|
|
rm ".profile"
|
|
|
|
NVM_DETECT_PROFILE="$(unset SHELL; nvm_detect_profile)"
|
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.bashrc" ]; then
|
|
|
|
die "nvm_detect_profile should have selected .bashrc"
|
|
|
|
fi
|
2014-10-29 20:05:11 +08:00
|
|
|
|
|
|
|
# Otherwise, it should favor .bash_profile if file exists
|
2016-01-02 09:45:36 +08:00
|
|
|
rm ".bashrc"
|
|
|
|
NVM_DETECT_PROFILE="$(unset SHELL; nvm_detect_profile)"
|
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.bash_profile" ]; then
|
|
|
|
die "nvm_detect_profile should have selected .bash_profile"
|
|
|
|
fi
|
2014-10-29 20:05:11 +08:00
|
|
|
|
|
|
|
# Otherwise, it should favor .zshrc if file exists
|
2016-01-02 09:45:36 +08:00
|
|
|
rm ".bash_profile"
|
|
|
|
NVM_DETECT_PROFILE="$(unset SHELL; nvm_detect_profile)"
|
|
|
|
if [ "$NVM_DETECT_PROFILE" != "$HOME/.zshrc" ]; then
|
|
|
|
die "nvm_detect_profile should have selected .zshrc"
|
|
|
|
fi
|
2014-10-29 20:05:11 +08:00
|
|
|
|
|
|
|
# It should be empty if none is found
|
2016-01-02 09:45:36 +08:00
|
|
|
rm ".zshrc"
|
|
|
|
NVM_DETECT_PROFILE="$(unset SHELL; nvm_detect_profile)"
|
|
|
|
if [ ! -z "$NVM_DETECT_PROFILE" ]; then
|
|
|
|
die "nvm_detect_profile should have returned an empty value"
|
|
|
|
fi
|
2014-10-29 20:05:11 +08:00
|
|
|
|
|
|
|
cleanup
|