mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-21 23:10:59 +02:00
Fix tests: match $CRAMTMP more losely (#78)
Fixes https://github.com/Tarrasch/zsh-autoenv/issues/76.
This commit is contained in:
parent
d6bfdff968
commit
468fa71d15
@ -46,41 +46,41 @@ Now adding some auth pair.
|
|||||||
$ echo first > first
|
$ echo first > first
|
||||||
$ _autoenv_authorize first
|
$ _autoenv_authorize first
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
||||||
|
|
||||||
And a second one.
|
And a second one.
|
||||||
|
|
||||||
$ echo second > second
|
$ echo second > second
|
||||||
$ _autoenv_authorize second
|
$ _autoenv_authorize second
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
||||||
|
|
||||||
And a third.
|
And a third.
|
||||||
|
|
||||||
$ echo third > third
|
$ echo third > third
|
||||||
$ _autoenv_authorize third
|
$ _autoenv_authorize third
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
||||||
|
|
||||||
Re-add the second one, with the same hash.
|
Re-add the second one, with the same hash.
|
||||||
|
|
||||||
$ _autoenv_authorize second
|
$ _autoenv_authorize second
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/first:2715464726.6:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
||||||
|
|
||||||
Re-add the first one, with a new hash.
|
Re-add the first one, with a new hash.
|
||||||
|
|
||||||
$ echo one more line >> first
|
$ echo one more line >> first
|
||||||
$ _autoenv_authorize first
|
$ _autoenv_authorize first
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/third:451243482.6:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/second:594940475.7:2 (glob)
|
||||||
:/tmp/cramtests-*/_autoenv_utils.t/first:3620404822.20:2 (glob)
|
:/*/cramtests-*/_autoenv_utils.t/first:3620404822.20:2 (glob)
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ Now try to make it accept it
|
|||||||
$ _autoenv_ask_for_yes() { echo "yes" }
|
$ _autoenv_ask_for_yes() { echo "yes" }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ Now lets see that it actually checks the shasum value.
|
|||||||
$ test_autoenv_add_to_env $PWD/.autoenv.zsh mischief
|
$ test_autoenv_add_to_env $PWD/.autoenv.zsh mischief
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ Now, will it take no for an answer?
|
|||||||
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
|
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ Lets also try one more time to ensure it didn't add it.
|
|||||||
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ Change to the directory.
|
|||||||
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/leave.t/sub/.autoenv.zsh (glob)
|
-* /*/cramtests-*/leave.t/sub/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ Leave the directory and answer "no".
|
|||||||
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
|
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
|
||||||
$ cd ..
|
$ cd ..
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/leave.t/sub/.autoenv_leave.zsh (glob)
|
-* /*/cramtests-*/leave.t/sub/.autoenv_leave.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ Leave the directory and answer "no".
|
|||||||
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
||||||
$ cd ..
|
$ cd ..
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/leave.t/sub/.autoenv_leave.zsh (glob)
|
-* /*/cramtests-*/leave.t/sub/.autoenv_leave.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ First, let's answer "no".
|
|||||||
$ cd sub
|
$ cd sub
|
||||||
autoenv_source_parent_from_sub:
|
autoenv_source_parent_from_sub:
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/recurse-upwards.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/recurse-upwards.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ Touching the .autoenv.zsh file will now source the parent env file.
|
|||||||
$ cd .
|
$ cd .
|
||||||
autoenv_source_parent_from_sub:
|
autoenv_source_parent_from_sub:
|
||||||
Attempting to load unauthorized env file!
|
Attempting to load unauthorized env file!
|
||||||
-* /tmp/cramtests-*/recurse-upwards.t/.autoenv.zsh (glob)
|
-* /*/cramtests-*/recurse-upwards.t/.autoenv.zsh (glob)
|
||||||
|
|
||||||
**********************************************
|
**********************************************
|
||||||
|
|
||||||
|
@ -11,11 +11,6 @@
|
|||||||
|
|
||||||
export AUTOENV_AUTH_FILE="$CRAMTMP/autoenv/.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."
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Abort this setup script on any error.
|
# Abort this setup script on any error.
|
||||||
_save_errexit=${options[errexit]}
|
_save_errexit=${options[errexit]}
|
||||||
set -e
|
set -e
|
||||||
|
@ -19,7 +19,7 @@ This also tests that there are no empty lines being added to the auth file when
|
|||||||
de-authenticating the old hash.
|
de-authenticating the old hash.
|
||||||
|
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:3679467995.13:2 (glob)
|
:/*/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:3679467995.13:2 (glob)
|
||||||
|
|
||||||
Re-create auth file with v1 hashes for both auth files.
|
Re-create auth file with v1 hashes for both auth files.
|
||||||
|
|
||||||
@ -31,13 +31,13 @@ Only the leave file's hash should get updated.
|
|||||||
$ cd ..
|
$ cd ..
|
||||||
LEAVE
|
LEAVE
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 (glob)
|
:/*/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:4c403f1870af2ab5472370a42b6b2b488cefe83c:1 (glob)
|
||||||
:/tmp/cramtests-*/upgrade_hash.t/sub/.autoenv_leave.zsh:803077150.11:2 (glob)
|
:/*/cramtests-*/upgrade_hash.t/sub/.autoenv_leave.zsh:803077150.11:2 (glob)
|
||||||
|
|
||||||
The enter file's hash should get updated.
|
The enter file's hash should get updated.
|
||||||
|
|
||||||
$ cd sub
|
$ cd sub
|
||||||
ENTERED
|
ENTERED
|
||||||
$ cat $AUTOENV_AUTH_FILE
|
$ cat $AUTOENV_AUTH_FILE
|
||||||
:/tmp/cramtests-*/upgrade_hash.t/sub/.autoenv_leave.zsh:803077150.11:2 (glob)
|
:/*/cramtests-*/upgrade_hash.t/sub/.autoenv_leave.zsh:803077150.11:2 (glob)
|
||||||
:/tmp/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:3679467995.13:2 (glob)
|
:/*/cramtests-*/upgrade_hash.t/sub/.autoenv.zsh:3679467995.13:2 (glob)
|
||||||
|
Loading…
Reference in New Issue
Block a user