small pixel drawing of a pufferfish pa

use ./pa instead of $pa
Jes Olson j3s@c3f.net
Mon, 30 Sep 2024 23:13:23 -0400
commit

f168274a64d66763a018673a74198d7872e27906

parent

df212eb779a0bf031940883fa5cb8f4a254798df

1 files changed, 6 insertions(+), 9 deletions(-)

jump to
M testtest

@@ -2,8 +2,6 @@ #!/bin/sh

# # test - a pa test script -export pa="$(pwd)/pa" - export PA_DIR=test-stuff/passwords # clean up previous run

@@ -14,11 +12,11 @@ # that's why we don't clean up on exit

rm -rf test-stuff # pa welcomes you -$pa | grep -q "a simple password manager" || +./pa | grep -q "a simple password manager" || printf "pa should print a welcome message\n" # generate pa dirs/identityfile/recipientfile -$pa list +./pa list # pa auto-generated files are correct test -s test-stuff/identities ||

@@ -30,19 +28,18 @@ printf "git dir should exist\n"

# TODO: ensure git author/email are set correctly, etc # pa add -printf 'y' | $pa add test 2>&1 >/dev/null || +printf 'y' | ./pa add test 2>&1 >/dev/null || printf "pa add should be capable of adding a test password\n" -printf 'y' | $pa add nested/password 2>&1 | +printf 'y' | ./pa add nested/password 2>&1 | grep -q "Saved 'nested/password' to the store." || printf 'pa add should say it stored nested/password\n' test -s test-stuff/passwords/nested/password.age || printf 'pa add should create an encrypted password file\n' # pa list -$pa list | grep -q test || +./pa list | grep -q test || printf "pa list should list the test password\n" # ensure git commits are working -cd test-stuff/passwords/ -git log | grep -q "add 'nested/password'" || +git -C test-stuff/passwords log | grep -q "add 'nested/password'" || printf "git log should have line: add 'nested/password'\n"