]> Sergey Matveev's repositories - zsh-autoenv.git/blob - tests/setup.zsh
Automatically upgrade v1 hashes (SHA-1) to v2 (`cksum`) (#55)
[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 if [[ $AUTOENV_AUTH_FILE[0,4] != '/tmp' ]]; then
15   echo "AUTOENV_AUTH_FILE is not in /tmp. Aborting."
16   return 1
17 fi
18
19 # Abort this setup script on any error.
20 _save_errexit=${options[errexit]}
21 set -e
22
23 # Defined in .zshenv, e.g. tests/ZDOTDIR/.zshenv.
24 $TEST_SOURCE_AUTOENV
25
26 # Reset any authentication.
27 if [[ -f $AUTOENV_AUTH_FILE ]]; then
28   echo -n >| $AUTOENV_AUTH_FILE
29 fi
30
31 # Add file ($1), version ($2), and optional hash ($3) to authentication file.
32 test_autoenv_add_to_env() {
33   _autoenv_hash_pair $1 1 ${2:-} >>| $AUTOENV_AUTH_FILE
34 }
35
36 # Add enter and leave env files to authentication file.
37 test_autoenv_auth_env_files() {
38   local dir=${1:-$PWD}
39   test_autoenv_add_to_env $dir/$AUTOENV_FILE_ENTER
40   test_autoenv_add_to_env $dir/$AUTOENV_FILE_LEAVE
41 }
42
43 # Now keep on going on errors again.
44 options[errexit]=$_save_errexit
45 unset _save_errexit