blob: 98d6833eb7f9f852073b447c0795bf3e52938d72 (
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
|
#!/usr/bin/env bats
load helpers
function teardown() {
cleanup_test
}
function setup() {
prepare_network_conf
copy_images
}
@test "run baddevice test" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run -q --device /dev/baddevice ${ALPINE} ls /dev/kmsg
echo $output
[ "$status" -ne 0 ]
}
@test "run device test" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run -q --device /dev/kmsg ${ALPINE} ls --color=never /dev/kmsg
echo "$output"
[ "$status" -eq 0 ]
device=$(echo $output | tr -d '\r')
echo "<$device>"
[ "$device" = "/dev/kmsg" ]
}
|