| #!/bin/bash |
| |
| . ../../../prepare.inc.sh |
| . ../../../toolbox.inc.sh |
| |
| |
| # ---- do the actual testing ---- |
| |
| result=PASS |
| echo "++++ BEGINNING TEST" >$OUTPUTFILE |
| |
| # attempt to update the session keyring |
| marker "CHECK UPDATE SESSION KEYRING" |
| pupdate_key --fail @s a |
| expect_error EOPNOTSUPP |
| |
| # attempt to update an invalid key |
| marker "CHECK UPDATE INVALID KEY" |
| pupdate_key --fail 0 a |
| expect_error EINVAL |
| |
| # add a user key to the session keyring for us to play with |
| marker "ADD USER KEY" |
| create_key user wibble stuff @s |
| expect_keyid keyid |
| |
| # remove the key we just added |
| marker "UNLINK KEY" |
| unlink_key --wait $keyid @s |
| |
| # it should fail when we attempt to update it |
| marker "UPDATE UNLINKED KEY" |
| pupdate_key --fail $keyid @s |
| expect_error ENOKEY |
| |
| echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE |
| |
| # --- then report the results in the database --- |
| toolbox_report_result $TEST $result |