]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - tests/autoenv.t
tests: define/use $TEST_SOURCE_AUTOENV
[zsh-autoenv.git] / tests / autoenv.t
index f3ede0cd0116baa3a64836d4fec02e9aec853e3f..67be7ca7f27891ca676f32ca90f42fe06166f4cb 100644 (file)
@@ -1,24 +1,23 @@
-Ensure we have our mocked out ENV_AUTHORIZATION_FILE
-
-  $ [[ $ENV_AUTHORIZATION_FILE[0,4] == '/tmp' ]] || return 1
+  $ source $TESTDIR/setup.sh || return 1
 
 Lets set a simple .env action
 
-  $ echo 'echo ENTERED' >> .env
+  $ echo 'echo ENTERED' > .env
 
 Manually create auth file
 
-  $ echo "$PWD/.env:$(echo echo ENTERED | shasum)" > $ENV_AUTHORIZATION_FILE
+  $ test_autoenv_add_to_env $PWD/.env
   $ cd .
   ENTERED
 
 Now try to make it accept it
 
-  $ unset _dotenv_stack_entered
-  $ rm $ENV_AUTHORIZATION_FILE
-  $ _dotenv_read_answer() { echo 'y' }
+  $ _autoenv_stack_entered=()
+  $ rm $AUTOENV_ENV_FILENAME
+  $ _autoenv_ask_for_yes() { echo "yes" }
   $ cd .
-  Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
+  Attempting to load unauthorized env file!
+  -* /tmp/cramtests-*/autoenv.t/.env (glob)
   
   **********************************************
   
@@ -26,26 +25,24 @@ Now try to make it accept it
   
   **********************************************
   
-  Would you like to authorize it? [y/N] 
+  Would you like to authorize it? (type 'yes') yes
   ENTERED
 
 
+The last "ENTERED" is because it executed the command.
 
+Now lets see that it actually checks the shasum value.
 
-
-The last "ENTERED" is because it executed the command
-
-Now lets see that it actually checks the shasum value
-
-  $ unset _dotenv_stack_entered
+  $ _autoenv_stack_entered=()
   $ cd .
   ENTERED
 
-  $ unset _dotenv_stack_entered
-  $ rm $ENV_AUTHORIZATION_FILE
-  $ echo "$PWD/.env:$(echo mischief | shasum)" > $ENV_AUTHORIZATION_FILE
+  $ _autoenv_stack_entered=()
+  $ rm $AUTOENV_ENV_FILENAME
+  $ test_autoenv_add_to_env $PWD/.env mischief
   $ cd .
-  Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
+  Attempting to load unauthorized env file!
+  -* /tmp/cramtests-*/autoenv.t/.env (glob)
   
   **********************************************
   
@@ -53,20 +50,18 @@ Now lets see that it actually checks the shasum value
   
   **********************************************
   
-  Would you like to authorize it? [y/N] 
+  Would you like to authorize it? (type 'yes') yes
   ENTERED
 
 
-
-
-
 Now, will it take no for an answer?
 
-  $ unset _dotenv_stack_entered
-  $ rm $ENV_AUTHORIZATION_FILE
-  $ _dotenv_read_answer() { echo 'n' }
+  $ _autoenv_stack_entered=()
+  $ rm $AUTOENV_ENV_FILENAME
+  $ _autoenv_ask_for_yes() { echo "no"; return 1 }
   $ cd .
-  Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
+  Attempting to load unauthorized env file!
+  -* /tmp/cramtests-*/autoenv.t/.env (glob)
   
   **********************************************
   
@@ -74,16 +69,15 @@ Now, will it take no for an answer?
   
   **********************************************
   
-  Would you like to authorize it? [y/N] 
+  Would you like to authorize it? (type 'yes') no
 
 
+Lets also try one more time to ensure it didn't add it.
 
-
-
-Lets also try one more time to ensure it didnt add it
-
+  $ _autoenv_ask_for_yes() { echo "yes"; return 0 }
   $ cd .
-  Attempting to load unauthorized env file: /tmp/cramtests-??????/autoenv.t/.env (glob)
+  Attempting to load unauthorized env file!
+  -* /tmp/cramtests-*/autoenv.t/.env (glob)
   
   **********************************************
   
@@ -91,4 +85,11 @@ Lets also try one more time to ensure it didnt add it
   
   **********************************************
   
-  Would you like to authorize it? [y/N] 
+  Would you like to authorize it? (type 'yes') yes
+  ENTERED
+
+Reloading the script should keep the current state, e.g. when reloading your
+~/.zshrc.
+
+  $ $TEST_SOURCE_AUTOENV
+  $ cd .