blob: 2eeb1b5acae063e11137699d3a9b527d7b368e8c (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/usr/bin/env bats
load helpers
function teardown() {
cleanup_test
}
function setup() {
copy_images
}
@test "podman history default" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history with Go template format" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history --format "{{.ID}} {{.Created}}" $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history human flag" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history --human=false $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history quiet flag" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history -q $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history no-trunc flag" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history --no-trunc $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history json flag" {
run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} history --format json $ALPINE | python -m json.tool"
echo "$output"
[ "$status" -eq 0 ]
}
@test "podman history short options" {
run ${PODMAN_BINARY} ${PODMAN_OPTIONS} history -qH $ALPINE
echo "$output"
[ "$status" -eq 0 ]
}
|