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

93 lines
1.8 KiB
Perl
Raw Normal View History

$ source $TESTDIR/setup.sh
2013-09-08 19:32:16 +03:00
Lets set a simple .env action
$ echo 'echo ENTERED' >> .env
2013-09-08 19:32:16 +03:00
Manually create auth file
$ test_autoenv_add_to_env $PWD/.env
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 _autoenv_stack_entered
$ rm $AUTOENV_ENV_FILENAME
$ _autoenv_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 _autoenv_stack_entered
2013-09-08 19:32:16 +03:00
$ cd .
ENTERED
$ unset _autoenv_stack_entered
$ rm $AUTOENV_ENV_FILENAME
$ test_autoenv_add_to_env $PWD/.env mischief
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
2013-09-08 19:32:16 +03:00
Now, will it take no for an answer?
$ unset _autoenv_stack_entered
$ rm $AUTOENV_ENV_FILENAME
$ _autoenv_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]