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

load helpers

function setup() {
    copy_images
}

function teardown() {
    cleanup_test
}

@test "test diff of image and parent" {
    run ${PODMAN_BINARY} $PODMAN_OPTIONS diff $BB
    echo "$output"
    [ "$status" -eq 0 ]
}

@test "test diff on non-existent layer" {
    run ${PODMAN_BINARY} $PODMAN_OPTIONS diff "abc123"
    echo "$output"
    [ "$status" -ne 0 ]
}

@test "test diff with json output" {
    run ${PODMAN_BINARY} $PODMAN_OPTIONS diff --format json $BB
    echo "$output"
    [ "$status" -eq 0 ]
}