]> Sergey Matveev's repositories - zsh-autoenv.git/blob - tests/setup.zsh
_autoenv_hash_pair: do not use a subshell (#81)
[zsh-autoenv.git] / tests / setup.zsh
1 # Setup for tests.
2 #
3 # It returns 1 in case of errors, and no tests should be run then!
4 #
5 # Ensure we have our mocked out AUTOENV_AUTH_FILE
6 # (via .zshenv).
7
8 # Treat unset variables as errors.
9 # Not handled in varstash yet.
10 # setopt nounset
11
12 export AUTOENV_AUTH_FILE="$CRAMTMP/autoenv/.autoenv_auth"
13
14 # Abort this setup script on any error.
15 _save_errexit=${options[errexit]}
16 set -e
17
18 # Defined in .zshenv, e.g. tests/ZDOTDIR/.zshenv.
19 $TEST_SOURCE_AUTOENV
20
21 # Reset any authentication.
22 if [[ -f $AUTOENV_AUTH_FILE ]]; then
23   echo -n >| $AUTOENV_AUTH_FILE
24 fi
25
26 # Add file ($1), version ($2), and optional hash ($3) to authentication file.
27 test_autoenv_add_to_env() {
28   [[ -d ${AUTOENV_AUTH_FILE:h} ]] || mkdir -p ${AUTOENV_AUTH_FILE:h}
29   {
30     local ret_pair
31     _autoenv_hash_pair $1 1 ${2:-} && echo $ret_pair
32   } >>| $AUTOENV_AUTH_FILE
33 }
34
35 # Add enter and leave env files to authentication file.
36 test_autoenv_auth_env_files() {
37   local dir=${1:-$PWD}
38   test_autoenv_add_to_env $dir/$AUTOENV_FILE_ENTER
39   test_autoenv_add_to_env $dir/$AUTOENV_FILE_LEAVE
40 }
41
42 # Now keep on going on errors again.
43 options[errexit]=$_save_errexit
44 unset _save_errexit