generated from kubewarden/go-policy-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathe2e.bats
32 lines (26 loc) · 939 Bytes
/
e2e.bats
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
#!/usr/bin/env bats
@test "reject because too much memory is requested" {
run kwctl run \
--allow-context-aware \
-r test_data/ns_not_valid.json \
--replay-host-capabilities-interactions test_data/session.yml \
annotated-policy.wasm
# this prints the output when one the checks below fails
echo "output = ${output}"
# request rejected
[ "$status" -eq 0 ]
[ $(expr "$output" : '.*allowed.*false') -ne 0 ]
[ $(expr "$output" : ".*LimitsMemory limit.*") -ne 0 ]
}
@test "accept because amount of resources requested is not exceeding resource quota" {
run kwctl run \
--allow-context-aware \
-r test_data/ns_valid.json \
--replay-host-capabilities-interactions test_data/session.yml \
annotated-policy.wasm
# this prints the output when one the checks below fails
echo "output = ${output}"
# request accepted
[ "$status" -eq 0 ]
[ $(expr "$output" : '.*allowed.*true') -ne 0 ]
}