mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-04 17:01:00 +02:00
94 lines
1.4 KiB
Perl
94 lines
1.4 KiB
Perl
Test varstash integration.
|
|
|
|
$ source $TESTDIR/setup.zsh || return 1
|
|
|
|
Setup test environment.
|
|
|
|
$ mkdir sub
|
|
$ cd sub
|
|
$ echo 'echo ENTER; autostash FOO=changed' > $AUTOENV_FILE_ENTER
|
|
$ echo 'echo LEAVE; autounstash' > $AUTOENV_FILE_LEAVE
|
|
|
|
Manually create auth file
|
|
|
|
$ test_autoenv_auth_env_files
|
|
|
|
Set environment variable.
|
|
|
|
$ FOO=orig
|
|
|
|
Activating the env stashes it and applies a new value.
|
|
|
|
$ cd .
|
|
ENTER
|
|
$ echo $FOO
|
|
changed
|
|
|
|
Leaving the directory unstashes it.
|
|
|
|
$ cd ..
|
|
LEAVE
|
|
$ echo $FOO
|
|
orig
|
|
|
|
|
|
Test autounstashing when leaving a directory. {{{
|
|
|
|
Setup:
|
|
|
|
$ unset VAR
|
|
$ cd sub
|
|
ENTER
|
|
$ echo 'echo ENTER; autostash VAR=changed' >| $AUTOENV_FILE_ENTER
|
|
$ echo 'echo LEAVE; echo "no explicit call to autounstash"' >| $AUTOENV_FILE_LEAVE
|
|
$ test_autoenv_auth_env_files
|
|
|
|
$VAR is unset:
|
|
|
|
$ echo VAR_set:$+VAR
|
|
VAR_set:0
|
|
|
|
Trigger the autostashing in the enter file.
|
|
|
|
$ cd ..
|
|
LEAVE
|
|
no explicit call to autounstash
|
|
$ cd sub
|
|
ENTER
|
|
$ echo $VAR
|
|
changed
|
|
|
|
Now leave again.
|
|
|
|
$ cd ..
|
|
LEAVE
|
|
no explicit call to autounstash
|
|
$ echo VAR_set:$+VAR
|
|
VAR_set:0
|
|
|
|
Remove the leave file, auto-unstashing should still happen.
|
|
|
|
$ rm sub/$AUTOENV_FILE_LEAVE
|
|
$ cd sub
|
|
ENTER
|
|
$ echo $VAR
|
|
changed
|
|
$ cd ..
|
|
$ echo VAR_set:$+VAR
|
|
VAR_set:0
|
|
|
|
And once again where a value gets restored.
|
|
|
|
$ VAR=orig_2
|
|
$ echo $VAR
|
|
orig_2
|
|
$ cd sub
|
|
ENTER
|
|
$ echo $VAR
|
|
changed
|
|
$ cd ..
|
|
$ echo $VAR
|
|
orig_2
|
|
|
|
}}}
|