summaryrefslogtreecommitdiff
path: root/test/podman_run_device.bats
blob: b5a901ff9b821fd53c5a09579dd90be27b6adbe1 (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
#!/usr/bin/env bats

load helpers

function teardown() {
    cleanup_test
}

function setup() {
    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" ]
}