2015-01-25 19:50:27 +01:00
|
|
|
# Setup for tests.
|
|
|
|
#
|
|
|
|
# It returns 1 in case of errors, and no tests should be run then!
|
|
|
|
#
|
2014-11-21 20:15:08 +01:00
|
|
|
# Ensure we have our mocked out AUTOENV_ENV_FILENAME
|
2014-11-21 23:07:53 +01:00
|
|
|
# (via .zshenv).
|
2014-11-21 20:07:06 +01:00
|
|
|
|
2014-12-08 21:37:25 +01:00
|
|
|
# Treat unset variables as errors.
|
|
|
|
# Not handled in varstash yet.
|
|
|
|
# setopt nounset
|
|
|
|
|
2015-04-24 17:33:09 +02:00
|
|
|
export AUTOENV_ENV_FILENAME="$CRAMTMP/.env_auth"
|
|
|
|
|
2015-01-25 19:50:27 +01:00
|
|
|
if [[ $AUTOENV_ENV_FILENAME[0,4] != '/tmp' ]]; then
|
|
|
|
echo "AUTOENV_ENV_FILENAME is not in /tmp. Aborting."
|
|
|
|
return 1
|
|
|
|
fi
|
2014-11-21 20:08:30 +01:00
|
|
|
|
2015-03-15 22:16:12 +01:00
|
|
|
# Abort this setup script on any error.
|
|
|
|
_save_errexit=${options[errexit]}
|
|
|
|
set -e
|
|
|
|
|
2015-04-24 17:33:09 +02:00
|
|
|
# Defined in .zshenv, e.g. tests/ZDOTDIR/.zshenv.
|
2015-04-23 16:00:12 +02:00
|
|
|
$TEST_SOURCE_AUTOENV
|
2015-03-15 22:10:50 +01:00
|
|
|
|
2014-11-24 17:48:51 +01:00
|
|
|
# Reset any authentication.
|
2014-12-08 22:12:30 +01:00
|
|
|
echo -n >| $AUTOENV_ENV_FILENAME
|
2014-11-24 17:48:51 +01:00
|
|
|
|
|
|
|
# Add file $1 (with optional hash $2) to authentication file.
|
2014-11-21 23:07:53 +01:00
|
|
|
test_autoenv_add_to_env() {
|
2014-12-08 22:12:30 +01:00
|
|
|
_autoenv_hash_pair $1 ${2:-} >>| $AUTOENV_ENV_FILENAME
|
2014-11-21 23:07:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Add enter and leave env files to authentication file.
|
|
|
|
test_autoenv_auth_env_files() {
|
2014-11-21 22:51:28 +01:00
|
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_ENTER
|
|
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_LEAVE
|
2014-11-21 23:07:53 +01:00
|
|
|
}
|
2015-03-15 22:16:12 +01:00
|
|
|
|
|
|
|
# Now keep on going on errors again.
|
|
|
|
options[errexit]=$_save_errexit
|
|
|
|
unset _save_errexit
|