2014-11-21 21:15:08 +02:00
|
|
|
# Ensure we have our mocked out AUTOENV_ENV_FILENAME
|
2014-11-22 00:07:53 +02:00
|
|
|
# (via .zshenv).
|
2014-11-21 21:07:06 +02:00
|
|
|
|
2014-11-21 21:15:08 +02:00
|
|
|
[[ $AUTOENV_ENV_FILENAME[0,4] == '/tmp' ]] || return 1
|
2014-11-21 21:08:30 +02:00
|
|
|
|
2014-11-24 18:48:51 +02:00
|
|
|
# Reset any authentication.
|
|
|
|
echo -n > $AUTOENV_ENV_FILENAME
|
|
|
|
|
2014-11-21 21:08:30 +02:00
|
|
|
# Inject timeout for `read` while running tests.
|
|
|
|
_AUTOENV_TEST_READ_ARGS='-t 1'
|
2014-11-22 00:07:53 +02:00
|
|
|
|
2014-11-24 18:48:51 +02:00
|
|
|
# Add file $1 (with optional hash $2) to authentication file.
|
2014-11-22 00:07:53 +02:00
|
|
|
test_autoenv_add_to_env() {
|
2014-11-21 23:51:28 +02:00
|
|
|
_autoenv_hash_pair $1 $2 >> $AUTOENV_ENV_FILENAME
|
2014-11-22 00:07:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Add enter and leave env files to authentication file.
|
|
|
|
test_autoenv_auth_env_files() {
|
2014-11-21 23:51:28 +02:00
|
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_ENTER
|
|
|
|
test_autoenv_add_to_env $PWD/$AUTOENV_FILE_LEAVE
|
2014-11-22 00:07:53 +02:00
|
|
|
}
|