blob: 213a3410a244658d7e35976295d12c79040ee98c [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"
describe_key --fail 0
expect_error EINVAL
pretty_describe_key --fail 0
expect_error EINVAL
# create a key
marker "CREATE KEY"
create_key --new=keyid user lizard gizzard @s
# dispose of the key
marker "UNLINK KEY"
unlink_key --wait $keyid @s
# check that a non-existent key ID fails correctly
marker "CHECK NON-EXISTENT KEY ID"
describe_key --fail $keyid
expect_error ENOKEY
pretty_describe_key --fail $keyid
expect_error ENOKEY
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
# --- then report the results in the database ---
toolbox_report_result $TEST $result