blob: 320f9ce7aa3724d18b8a872c61d7970466503fd4 [file] [log] [blame]
#!/bin/bash
. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh
# ---- do the actual testing ----
result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE
# check that we can add a user key to the session keyring
marker "ADD USER KEY"
create_key --new=keyid user wibble stuff @s
# read back what we put in it
marker "PRINT PAYLOAD"
print_key $keyid
expect_payload payload "stuff"
# check that we can update a user key
marker "UPDATE USER KEY"
update_key $keyid "lizard"
# read back what we changed it to
marker "PRINT UPDATED PAYLOAD"
print_key $keyid
expect_payload payload "lizard"
# check that we can update a user key with hex-encoded data
marker "UPDATE USER KEY HEX"
update_key -x $keyid " 6c 697a 6172 64 78 "
# read back what we changed it to
marker "PRINT UPDATED PAYLOAD"
print_key $keyid
expect_payload payload "lizardx"
# remove the key we added
marker "UNLINK KEY"
unlink_key $keyid @s
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
# --- then report the results in the database ---
toolbox_report_result $TEST $result