mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-05 09:20:59 +02:00
tests: add and use test_autoenv_add_to_env and test_autoenv_auth_env_files
Conflicts: autoenv.zsh
This commit is contained in:
parent
f31bb529de
commit
67e8030770
@ -24,6 +24,11 @@ _dotenv_stack_entered=()
|
|||||||
|
|
||||||
_dotenv_hash_pair() {
|
_dotenv_hash_pair() {
|
||||||
local env_file=$1
|
local env_file=$1
|
||||||
|
if (( $+2 )); then
|
||||||
|
env_shasum=$2
|
||||||
|
else
|
||||||
|
env_shasum=$(shasum $env_file | cut -d' ' -f1)
|
||||||
|
fi
|
||||||
echo "$env_file:$env_shasum:1"
|
echo "$env_file:$env_shasum:1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ Lets set a simple .env action
|
|||||||
|
|
||||||
Manually create auth file
|
Manually create auth file
|
||||||
|
|
||||||
$ echo "$PWD/.env:$(echo echo ENTERED | shasum)" > $AUTOENV_ENV_FILENAME
|
$ test_autoenv_add_to_env $PWD/.env
|
||||||
$ cd .
|
$ cd .
|
||||||
ENTERED
|
ENTERED
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ Now lets see that it actually checks the shasum value
|
|||||||
|
|
||||||
$ unset _dotenv_stack_entered
|
$ unset _dotenv_stack_entered
|
||||||
$ rm $AUTOENV_ENV_FILENAME
|
$ rm $AUTOENV_ENV_FILENAME
|
||||||
$ echo "$PWD/.env:$(echo mischief | shasum)" > $AUTOENV_ENV_FILENAME
|
$ test_autoenv_add_to_env $PWD/.env mischief
|
||||||
$ cd .
|
$ cd .
|
||||||
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
|
||||||
|
|
||||||
|
@ -12,8 +12,7 @@ Setup env actions / output.
|
|||||||
|
|
||||||
Manually create auth files.
|
Manually create auth files.
|
||||||
|
|
||||||
$ echo "$PWD/$DOTENV_FILE_ENTER:$(echo $(<$DOTENV_FILE_ENTER) | shasum)" > $AUTOENV_ENV_FILENAME
|
$ test_autoenv_auth_env_files
|
||||||
$ echo "$PWD/$DOTENV_FILE_LEAVE:$(echo $(<$DOTENV_FILE_LEAVE) | shasum)" >> $AUTOENV_ENV_FILENAME
|
|
||||||
|
|
||||||
The actual tests.
|
The actual tests.
|
||||||
|
|
||||||
|
@ -1,6 +1,18 @@
|
|||||||
# Ensure we have our mocked out AUTOENV_ENV_FILENAME
|
# Ensure we have our mocked out AUTOENV_ENV_FILENAME
|
||||||
|
# (via .zshenv).
|
||||||
|
|
||||||
[[ $AUTOENV_ENV_FILENAME[0,4] == '/tmp' ]] || return 1
|
[[ $AUTOENV_ENV_FILENAME[0,4] == '/tmp' ]] || return 1
|
||||||
|
|
||||||
# Inject timeout for `read` while running tests.
|
# Inject timeout for `read` while running tests.
|
||||||
_AUTOENV_TEST_READ_ARGS='-t 1'
|
_AUTOENV_TEST_READ_ARGS='-t 1'
|
||||||
|
|
||||||
|
test_autoenv_add_to_env() {
|
||||||
|
_dotenv_hash_pair $1 $2 >> $AUTOENV_ENV_FILENAME
|
||||||
|
}
|
||||||
|
|
||||||
|
# Add enter and leave env files to authentication file.
|
||||||
|
test_autoenv_auth_env_files() {
|
||||||
|
echo -n > $AUTOENV_ENV_FILENAME
|
||||||
|
test_autoenv_add_to_env $PWD/$DOTENV_FILE_ENTER
|
||||||
|
test_autoenv_add_to_env $PWD/$DOTENV_FILE_LEAVE
|
||||||
|
}
|
||||||
|
@ -16,8 +16,7 @@ Setup test environment.
|
|||||||
|
|
||||||
Manually create auth file
|
Manually create auth file
|
||||||
|
|
||||||
$ echo "$PWD/$DOTENV_FILE_ENTER:$(echo $(<$DOTENV_FILE_ENTER) | shasum)" > $AUTOENV_ENV_FILENAME
|
$ test_autoenv_auth_env_files
|
||||||
$ echo "$PWD/$DOTENV_FILE_LEAVE:$(echo $(<$DOTENV_FILE_LEAVE) | shasum)" >> $AUTOENV_ENV_FILENAME
|
|
||||||
|
|
||||||
Set environment variable.
|
Set environment variable.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user