summaryrefslogtreecommitdiff
path: root/tests/keyctl/invalidate/bad-args/runtest.sh
blob: b95a8c9d0a37f74747f0463fa9180be24f3f4270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash

. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh


# ---- do the actual testing ----

if [ $have_key_invalidate = 0 ]
then
    toolbox_skip_test $TEST "SKIPPING DUE TO LACK OF KEY INVALIDATION"
    exit 0
fi

result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE

# check that a bad key ID fails correctly
marker "CHECK INVALIDATE BAD KEY ID"
invalidate_key --fail 0
expect_error EINVAL

# create a key
marker "CREATE KEY"
create_key --new=keyid user lizard gizzard @s

# and dispose of it
marker "UNLINK KEY"
unlink_key --wait $keyid @s

# check that a non-existent key ID fails correctly
marker "CHECK INVALIDATE NON-EXISTENT KEY ID"
invalidate_key --fail $keyid
expect_error ENOKEY

echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE

# --- then report the results in the database ---
toolbox_report_result $TEST $result