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
|
|
|
|
|
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-15 16:08:52 +02:00
|
|
|
$ echo "$PWD/.env:$(echo echo ENTERED | shasum)" > $ENV_AUTHORIZATION_FILE
|
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-15 16:08:52 +02:00
|
|
|
$ unset _dotenv_stack_entered
|
2013-09-08 19:32:16 +03:00
|
|
|
$ rm $ENV_AUTHORIZATION_FILE
|
2014-11-15 16:08:52 +02:00
|
|
|
$ _dotenv_read_answer() { echo 'y' }
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +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-15 16:08:52 +02: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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-11-15 16:08:52 +02: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
|
|
|
|
|
2014-11-15 16:08:52 +02:00
|
|
|
$ unset _dotenv_stack_entered
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +02:00
|
|
|
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 .
|
2014-11-15 16:08:52 +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-15 16:08:52 +02: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?
|
|
|
|
|
2014-11-15 16:08:52 +02:00
|
|
|
$ unset _dotenv_stack_entered
|
2013-09-08 19:32:16 +03:00
|
|
|
$ rm $ENV_AUTHORIZATION_FILE
|
2014-11-15 16:08:52 +02:00
|
|
|
$ _dotenv_read_answer() { echo 'n' }
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +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-15 16:08:52 +02: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 .
|
2014-11-15 16:08:52 +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-15 16:08:52 +02:00
|
|
|
Would you like to authorize it? [y/N]
|