1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-07-03 04:50:11 +03:00
zsh-autoenv/tests/autoenv.t

95 lines
2.0 KiB
Perl
Raw Normal View History

2013-09-08 19:32:16 +03:00
Ensure we have our mocked out ENV_AUTHORIZATION_FILE
$ [[ $ENV_AUTHORIZATION_FILE[0,4] == '/tmp' ]] || return 1
Lets set a simple .env action
$ echo 'echo ENTERED' >> .env
2013-09-08 19:32:16 +03:00
Manually create auth file
$ echo "$PWD/.env:$(echo echo ENTERED | shasum)" > $ENV_AUTHORIZATION_FILE
2013-09-08 19:32:16 +03:00
$ cd .
ENTERED
2013-09-08 19:32:16 +03:00
Now try to make it accept it
$ unset _dotenv_stack_entered
2013-09-08 19:32:16 +03:00
$ rm $ENV_AUTHORIZATION_FILE
$ _dotenv_read_answer() { echo 'y' }
2013-09-08 19:32:16 +03:00
$ cd .
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
echo ENTERED
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
Would you like to authorize it? [y/N]
ENTERED
2013-09-08 19:32:16 +03:00
2013-09-08 19:54:17 +03:00
The last "ENTERED" is because it executed the command
2013-09-08 19:32:16 +03:00
Now lets see that it actually checks the shasum value
$ unset _dotenv_stack_entered
2013-09-08 19:32:16 +03:00
$ cd .
ENTERED
$ unset _dotenv_stack_entered
2013-09-08 19:32:16 +03:00
$ rm $ENV_AUTHORIZATION_FILE
$ echo "$PWD/.env:$(echo mischief | shasum)" > $ENV_AUTHORIZATION_FILE
$ cd .
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
echo ENTERED
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
Would you like to authorize it? [y/N]
ENTERED
2013-09-08 19:32:16 +03:00
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
Now, will it take no for an answer?
$ unset _dotenv_stack_entered
2013-09-08 19:32:16 +03:00
$ rm $ENV_AUTHORIZATION_FILE
$ _dotenv_read_answer() { echo 'n' }
2013-09-08 19:32:16 +03:00
$ cd .
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
echo ENTERED
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
Would you like to authorize it? [y/N]
2013-09-08 19:32:16 +03:00
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
Lets also try one more time to ensure it didnt add it
$ cd .
Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
echo ENTERED
2013-09-08 19:54:17 +03:00
2013-09-08 19:32:16 +03:00
**********************************************
2013-09-08 19:54:17 +03:00
Would you like to authorize it? [y/N]