password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 3691b66a31266b83b0b047ee955139cdb91f3ede
parent 5db9993af05ea358c0d5b3b270a40c37beb162f5
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Sat, 25 Feb 2017 13:31:45 +0100

tests: fix for recent changes

Diffstat:
Mtests/setup.sh | 18+++++++++++++++++-
Mtests/t0010-generate-tests.sh | 2+-
Rtests/pwgen -> tests/tr | 0
3 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/tests/setup.sh b/tests/setup.sh @@ -7,7 +7,23 @@ # $TEST_HOME This folder -# We must be called from tests/ !! +# Unset config vars +unset PASSWORD_STORE_DIR +unset PASSWORD_STORE_KEY +unset PASSWORD_STORE_GIT +unset PASSWORD_STORE_GPG_OPTS +unset PASSWORD_STORE_X_SELECTION +unset PASSWORD_STORE_CLIP_TIME +unset PASSWORD_STORE_UMASK +unset PASSWORD_STORE_GENERATED_LENGTH +unset PASSWORD_STORE_CHARACTER_SET +unset PASSWORD_STORE_CHARACTER_SET_NO_SYMBOLS +unset PASSWORD_STORE_ENABLE_EXTENSIONS +unset PASSWORD_STORE_EXTENSIONS_DIR +unset PASSWORD_STORE_SIGNING_KEY +unset EDITOR + +# We must be called from tests/ TEST_HOME="$(pwd)" . ./sharness.sh diff --git a/tests/t0010-generate-tests.sh b/tests/t0010-generate-tests.sh @@ -12,7 +12,7 @@ test_expect_success 'Test "generate" command' ' test_expect_success 'Test replacement of first line' ' "$PASS" insert -m cred2 <<<"$(printf "this is a big\\npassword\\nwith\\nmany\\nlines\\nin it bla bla")" && - PATH="$TEST_HOME:$PATH" FAKE_PWGEN_PASSWORD="This is a fake password" "$PASS" generate -i cred2 88 && + PATH="$TEST_HOME:$PATH" FAKE_PWGEN_PASSWORD="This is a fake password" "$PASS" generate -i cred2 23 && [[ $("$PASS" show cred2) == "$(printf "This is a fake password\\npassword\\nwith\\nmany\\nlines\\nin it bla bla")" ]] ' diff --git a/tests/pwgen b/tests/tr