blob: 942af8805cdd000278e4c1d9041e0bb868f5d7a3 (
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
|
#!/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 ]
}
|