2014-11-21 21:07:06 +02:00
|
|
|
$ source $TESTDIR/setup.sh
|
2013-09-08 19:32:16 +03:00
|
|
|
|
|
|
|
Lets set a simple .env action
|
|
|
|
|
2014-11-15 16:08:52 +02:00
|
|
|
$ echo 'echo ENTERED' >> .env
|
2013-09-08 19:32:16 +03:00
|
|
|
|
|
|
|
Manually create auth file
|
|
|
|
|
2014-11-22 00:07:53 +02:00
|
|
|
$ test_autoenv_add_to_env $PWD/.env
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +02:00
|
|
|
ENTERED
|
2013-09-08 19:32:16 +03:00
|
|
|
|
|
|
|
Now try to make it accept it
|
|
|
|
|
2014-11-21 23:51:28 +02:00
|
|
|
$ unset _autoenv_stack_entered
|
2014-11-21 21:15:08 +02:00
|
|
|
$ rm $AUTOENV_ENV_FILENAME
|
2014-11-27 14:33:04 +02:00
|
|
|
$ _autoenv_ask_for_yes() { echo "yes" }
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
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
|
|
|
|
2014-11-15 16:08:52 +02: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
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Would you like to authorize it? (type 'yes') yes
|
2014-11-15 16:08:52 +02:00
|
|
|
ENTERED
|
2013-09-08 19:32:16 +03:00
|
|
|
|
2013-09-08 19:54:17 +03:00
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
The last "ENTERED" is because it executed the command.
|
2013-09-08 19:54:17 +03:00
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Now lets see that it actually checks the shasum value.
|
2013-09-08 19:32:16 +03:00
|
|
|
|
2014-11-21 23:51:28 +02:00
|
|
|
$ unset _autoenv_stack_entered
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +02:00
|
|
|
ENTERED
|
|
|
|
|
2014-11-21 23:51:28 +02:00
|
|
|
$ unset _autoenv_stack_entered
|
2014-11-21 21:15:08 +02:00
|
|
|
$ rm $AUTOENV_ENV_FILENAME
|
2014-11-22 00:07:53 +02:00
|
|
|
$ test_autoenv_add_to_env $PWD/.env mischief
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
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
|
|
|
|
2014-11-15 16:08:52 +02: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
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Would you like to authorize it? (type 'yes') yes
|
2014-11-15 16:08:52 +02:00
|
|
|
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?
|
|
|
|
|
2014-11-21 23:51:28 +02:00
|
|
|
$ unset _autoenv_stack_entered
|
2014-11-21 21:15:08 +02:00
|
|
|
$ rm $AUTOENV_ENV_FILENAME
|
2014-11-27 14:33:04 +02:00
|
|
|
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
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
|
|
|
|
2014-11-15 16:08:52 +02: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
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Would you like to authorize it? (type 'yes') no
|
2013-09-08 19:54:17 +03:00
|
|
|
|
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Lets also try one more time to ensure it didn't add it.
|
2013-09-08 19:32:16 +03:00
|
|
|
|
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
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
|
|
|
|
2014-11-15 16:08:52 +02: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
|
|
|
|
2014-11-27 14:33:04 +02:00
|
|
|
Would you like to authorize it? (type 'yes') no
|