tests: setup for multiple ZDOTDIRs, fix/add "setopt clobber"

This commit is contained in:
Daniel Hahler 2014-12-08 22:12:30 +01:00
parent 027e8fb5de
commit 9c829733ad
10 changed files with 27 additions and 15 deletions

View File

@ -4,4 +4,4 @@ python:
before_script:
- "sudo apt-get install zsh"
install: "sudo pip install cram"
script: "make test"
script: "make test_full"

View File

@ -1,10 +1,17 @@
.PHONY: itest test
export ZDOTDIR=${PWD}/tests/ZDOTDIR
test:
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v tests
cram --shell=zsh -v tests
itest:
ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests
cram -i --shell=zsh tests
# Run tests with all ZDOTDIRs.
test_full:
for i in $(wildcard tests/ZDOTDIR*); do \
echo "ZDOTDIR=$$i"; \
ZDOTDIR=${PWD}/$$i cram --shell=zsh -v tests; \
done
# Define targets for test files, with relative and abolute path.
# Use verbose output, which is useful with Vim's 'errorformat'.
@ -15,3 +22,5 @@ _TESTS_REL_AND_ABS:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
$(_TESTS_REL_AND_ABS):
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v $@
.PHONY: $(_TESTS_REL_AND_ABS)
.PHONY: itest test

View File

@ -147,7 +147,7 @@ _autoenv_authorized_env_file() {
_autoenv_authorize() {
local env_file=${1:A}
_autoenv_deauthorize $env_file
_autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
_autoenv_hash_pair $env_file >>| $AUTOENV_ENV_FILENAME
}
# Deauthorize a given filename, by removing it from the auth file.
@ -156,7 +156,7 @@ _autoenv_authorize() {
_autoenv_deauthorize() {
local env_file=${1:A}
if [[ -s $AUTOENV_ENV_FILENAME ]]; then
echo "$(\grep -vF :${env_file}: $AUTOENV_ENV_FILENAME)" > $AUTOENV_ENV_FILENAME
echo "$(\grep -vF :${env_file}: $AUTOENV_ENV_FILENAME)" >| $AUTOENV_ENV_FILENAME
fi
}

View File

@ -0,0 +1,3 @@
source ${ZDOTDIR}/../ZDOTDIR/.zshenv
setopt noclobber

View File

@ -2,7 +2,7 @@
Lets set a simple .env action
$ echo 'echo ENTERED' >> .env
$ echo 'echo ENTERED' > .env
Manually create auth file

View File

@ -4,8 +4,8 @@ Lets set a simple .env action
$ mkdir sub
$ cd sub
$ echo 'echo ENTERED' >> .env
$ echo 'echo LEFT' >> .env.leave
$ echo 'echo ENTERED' > .env
$ echo 'echo LEFT' > .env.leave
Change to the directory.

View File

@ -86,7 +86,7 @@ Prepend call to autoenv_source_parent to sub/.env file.
Add sub/sub2/.env file.
$ echo -e "echo autoenv_source_parent_from_sub2:\nautoenv_source_parent\necho done_sub2\n" > sub2/.env
$ echo -e "echo autoenv_source_parent_from_sub2:\nautoenv_source_parent\necho done_sub2\n" >| sub2/.env
$ test_autoenv_add_to_env sub2/.env
$ cd sub2
autoenv_source_parent_from_sub2:
@ -109,7 +109,7 @@ Changing the root .env should trigger re-authentication via autoenv_source_paren
First, let's answer "no".
$ echo "echo NEW" > .env
$ echo "echo NEW" >| .env
$ _autoenv_ask_for_yes() { echo "no"; return 1 }
$ cd sub
autoenv_source_parent_from_sub:

View File

@ -8,11 +8,11 @@
[[ $AUTOENV_ENV_FILENAME[0,4] == '/tmp' ]] || return 1
# Reset any authentication.
echo -n > $AUTOENV_ENV_FILENAME
echo -n >| $AUTOENV_ENV_FILENAME
# Add file $1 (with optional hash $2) to authentication file.
test_autoenv_add_to_env() {
_autoenv_hash_pair $1 ${2:-} >> $AUTOENV_ENV_FILENAME
_autoenv_hash_pair $1 ${2:-} >>| $AUTOENV_ENV_FILENAME
}
# Add enter and leave env files to authentication file.

View File

@ -39,8 +39,8 @@ 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
$ 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: