blob: 84e3f07caf4b3856b2ae1978e9007a8a1316422a [file] [log] [blame]
#!/bin/bash
. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh
# ---- do the actual testing ----
result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE
# check that a bad key ID fails correctly
marker "CHECK BAD KEY ID"
list_keyring --fail 0
expect_error ENOKEY
pretty_list_keyring --fail 0
expect_error ENOKEY
# create a non-keyring
marker "CREATE KEY"
create_key --new=keyid user lizard gizzard @s
# dispose of the key we were using
marker "UNLINK KEY"
unlink_key --wait $keyid @s
# check that a non-existent key ID fails correctly
marker "CHECK NON-EXISTENT KEY ID"
list_keyring --fail $keyid
expect_error ENOKEY
pretty_list_keyring --fail $keyid
expect_error ENOKEY
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
# --- then report the results in the database ---
toolbox_report_result $TEST $result