diff options
Diffstat (limited to 'test/podman_diff.bats')
-rw-r--r-- | test/podman_diff.bats | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/podman_diff.bats b/test/podman_diff.bats new file mode 100644 index 000000000..942af8805 --- /dev/null +++ b/test/podman_diff.bats @@ -0,0 +1,31 @@ +#!/usr/bin/env bats + +load helpers + +function setup() { + prepare_network_conf + 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 bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} diff --format json $IMAGE | python -m json.tool" + run ${PODMAN_BINARY} $PODMAN_OPTIONS diff --format json $BB + echo "$output" + [ "$status" -eq 0 ] +} |