summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/instantiating/bad-args/runtest.sh
blob: 7aa27924daaad932ae77850cc8ecb86bc80d0ac0 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/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"
instantiate_key --fail 0 a @p
expect_error EPERM
pinstantiate_key --fail a 0 @p
expect_error EPERM
negate_key --fail 0 10 @p
expect_error EPERM

# create a non-keyring
marker "CREATE KEY"
create_key user lizard gizzard @s
expect_keyid keyid

# check that instantiation of an instantiated key fails
marker "CHECK ALREADY INSTANTIATED KEY"
instantiate_key --fail $keyid a @p
expect_error EPERM
pinstantiate_key --fail a $keyid @p
expect_error EPERM
negate_key --fail $keyid 10 @p
expect_error EPERM

# check negative key timeout must be a number
marker "CHECK NEGATE TIMEOUT"
expect_args_error keyctl negate $keyid aa @p

# dispose of the key we were using
marker "UNLINK KEY"
unlink_key --wait $keyid @s

# check that a non-existent key ID fails correctly
marker "CHECK NON-EXISTENT KEY ID"
instantiate_key --fail 0 a @p
expect_error EPERM
pinstantiate_key --fail a 0 @p
expect_error EPERM
negate_key --fail 0 10 @p
expect_error EPERM

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

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