]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - tests/setup.zsh
tests: test_autoenv_add_to_env: create auth file parent dir (#59)
[zsh-autoenv.git] / tests / setup.zsh
index 316074de972983fae62b2a4bd3c8d0cc55884f7e..31aee201214e80dd66c3cf9bd23ffa34f405c6d6 100644 (file)
@@ -9,7 +9,7 @@
 # Not handled in varstash yet.
 # setopt nounset
 
-export AUTOENV_AUTH_FILE="$CRAMTMP/.autoenv_auth"
+export AUTOENV_AUTH_FILE="$CRAMTMP/autoenv/.autoenv_auth"
 
 if [[ $AUTOENV_AUTH_FILE[0,4] != '/tmp' ]]; then
   echo "AUTOENV_AUTH_FILE is not in /tmp. Aborting."
@@ -24,11 +24,14 @@ set -e
 $TEST_SOURCE_AUTOENV
 
 # Reset any authentication.
-echo -n >| $AUTOENV_AUTH_FILE
+if [[ -f $AUTOENV_AUTH_FILE ]]; then
+  echo -n >| $AUTOENV_AUTH_FILE
+fi
 
-# Add file $1 (with optional hash $2) to authentication file.
+# Add file ($1), version ($2), and optional hash ($3) to authentication file.
 test_autoenv_add_to_env() {
-  _autoenv_hash_pair $1 ${2:-} >>| $AUTOENV_AUTH_FILE
+  [[ -d ${AUTOENV_AUTH_FILE:h} ]] || mkdir -p ${AUTOENV_AUTH_FILE:h}
+  _autoenv_hash_pair $1 1 ${2:-} >>| $AUTOENV_AUTH_FILE
 }
 
 # Add enter and leave env files to authentication file.