2015-04-23 17:03:21 +03:00
|
|
|
$ source $TESTDIR/setup.zsh || return 1
|
2013-09-08 19:32:16 +03:00
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
Lets set a simple .autoenv.zsh action
|
2013-09-08 19:32:16 +03:00
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
$ echo 'echo ENTERED' > .autoenv.zsh
|
2013-09-08 19:32:16 +03:00
|
|
|
|
|
|
|
Manually create auth file
|
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
$ test_autoenv_add_to_env $PWD/.autoenv.zsh
|
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-12-08 22:37:25 +02:00
|
|
|
$ _autoenv_stack_entered=()
|
2015-05-22 00:58:26 +03:00
|
|
|
$ rm $AUTOENV_AUTH_FILE
|
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!
|
2015-05-22 00:58:26 +03:00
|
|
|
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (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-12-08 22:37:25 +02:00
|
|
|
$ _autoenv_stack_entered=()
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-15 16:08:52 +02:00
|
|
|
ENTERED
|
|
|
|
|
2014-12-08 22:37:25 +02:00
|
|
|
$ _autoenv_stack_entered=()
|
2015-05-22 00:58:26 +03:00
|
|
|
$ rm $AUTOENV_AUTH_FILE
|
|
|
|
$ test_autoenv_add_to_env $PWD/.autoenv.zsh mischief
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
Attempting to load unauthorized env file!
|
2015-05-22 00:58:26 +03:00
|
|
|
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (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-12-08 22:37:25 +02:00
|
|
|
$ _autoenv_stack_entered=()
|
2015-05-22 00:58:26 +03:00
|
|
|
$ rm $AUTOENV_AUTH_FILE
|
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!
|
2015-05-22 00:58:26 +03:00
|
|
|
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (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
|
|
|
|
2015-03-15 23:10:50 +02:00
|
|
|
$ _autoenv_ask_for_yes() { echo "yes"; return 0 }
|
2013-09-08 19:32:16 +03:00
|
|
|
$ cd .
|
2014-11-27 14:33:04 +02:00
|
|
|
Attempting to load unauthorized env file!
|
2015-05-22 00:58:26 +03:00
|
|
|
-* /tmp/cramtests-*/autoenv.t/.autoenv.zsh (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
|
|
|
|
2015-03-15 23:10:50 +02:00
|
|
|
Would you like to authorize it? (type 'yes') yes
|
|
|
|
ENTERED
|
|
|
|
|
|
|
|
Reloading the script should keep the current state, e.g. when reloading your
|
|
|
|
~/.zshrc.
|
|
|
|
|
2015-04-23 17:00:12 +03:00
|
|
|
$ $TEST_SOURCE_AUTOENV
|
2015-03-15 23:10:50 +02:00
|
|
|
$ cd .
|