blob: 3c06103e8eb121b3f9b05b8149eb0acaf7c95d21 (
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
56
|
#!/usr/bin/env bats
load helpers
@test "podman info - basic test" {
skip_if_remote "capitalization inconsistencies"
run_podman info
expected_keys="
buildahversion: *[0-9.]\\\+
conmon:\\\s\\\+package:
distribution:
ociruntime:\\\s\\\+name:
os:
rootless:
registries:
store:
graphdrivername:
graphroot:
graphstatus:
imagestore:\\\s\\\+number: 1
runroot:
"
while read expect; do
is "$output" ".*$expect" "output includes '$expect'"
done < <(parse_table "$expected_keys")
}
@test "podman info - json" {
skip_if_remote "capitalization inconsistencies"
run_podman info --format=json
expr_nvr="[a-z0-9-]\\\+-[a-z0-9.]\\\+-[a-z0-9]\\\+\."
expr_path="/[a-z0-9\\\/.-]\\\+\\\$"
tests="
host.buildahVersion | [0-9.]
host.conmon.path | $expr_path
host.ociRuntime.path | $expr_path
store.configFile | $expr_path
store.graphDriverName | [a-z0-9]\\\+\\\$
store.graphRoot | $expr_path
store.imageStore.number | 1
"
parse_table "$tests" | while read field expect; do
actual=$(echo "$output" | jq -r ".$field")
dprint "# actual=<$actual> expect=<$expect>"
is "$actual" "$expect" "jq .$field"
done
}
# vim: filetype=sh
|