summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/timeout/bad-args/runtest.sh
blob: 4ad216b8056776b0635f45c2f391b25f1a493f6f (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
#!/bin/sh

. ../../../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"
timeout_key --fail 0 10
expect_error EINVAL

# get a key
marker "CREATE KEY"
create_key user a a @s
expect_keyid keyid

# dispose of the key so we can use its ID
marker "DESTROY KEY ID"
unlink_key --wait $keyid @s

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

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

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