mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-11 07:30:56 +00:00
45 lines
1.0 KiB
Bash
45 lines
1.0 KiB
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
export test_description="Testing tomb with GnuPG keys"
|
||
|
|
||
|
source ./setup
|
||
|
|
||
|
test_export "recipient"
|
||
|
test_expect_success 'Testing tomb with GnuPG keys: creation' '
|
||
|
tt_dig -s 20 &&
|
||
|
tt_forge -g -r $KEY1 &&
|
||
|
tt_lock -g -r $KEY1
|
||
|
'
|
||
|
|
||
|
test_expect_success 'Testing tomb with GnuPG keys: open & close' '
|
||
|
tt_open -g &&
|
||
|
tt_close
|
||
|
'
|
||
|
|
||
|
test_export "default"
|
||
|
test_expect_success 'Testing tomb with GnuPG keys using the default recipient' '
|
||
|
tt_dig -s 20 &&
|
||
|
tt_forge -g &&
|
||
|
tt_lock -g &&
|
||
|
gpg -d --status-fd 2 $tomb_key 1> /dev/null 2> $TMP/default.tmp &&
|
||
|
[[ ! -z "$(grep "Tomb Test 2" $TMP/default.tmp)" ]]
|
||
|
'
|
||
|
|
||
|
test_export "hidden"
|
||
|
test_expect_success 'Testing tomb with GnuPG keys using hidden recipient' '
|
||
|
tt_dig -s 20 &&
|
||
|
tt_forge -g -R $KEY1 &&
|
||
|
tt_lock -g -R $KEY1
|
||
|
'
|
||
|
|
||
|
test_export "shared"
|
||
|
test_expect_success 'Testing tomb with GnuPG keys and shared tomb' '
|
||
|
tt_dig -s 20 &&
|
||
|
tt_forge -g -r $KEY1,$KEY2 &&
|
||
|
tt_lock -g -r $KEY1 &&
|
||
|
tt_open -g &&
|
||
|
tt_close
|
||
|
'
|
||
|
|
||
|
test_done
|