aboutsummaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-04-27 10:39:47 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2022-04-27 15:15:03 -0400
commit22b421dd7e469b2015797ba93849474d39430994 (patch)
treed74a821fd957fd3ba444104cbd6387691b243b8e /test/system
parente4be261755f24e0f12906571b91a1165fea8016e (diff)
downloadpodman-22b421dd7e469b2015797ba93849474d39430994.tar.gz
podman-22b421dd7e469b2015797ba93849474d39430994.tar.bz2
podman-22b421dd7e469b2015797ba93849474d39430994.zip
Add CreatedSince & CreatedAt format fields to podman image history
Fixes: https://github.com/containers/podman/issues/14012 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r--test/system/110-history.bats13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/system/110-history.bats b/test/system/110-history.bats
index 0f6d75cb3..da6f2177c 100644
--- a/test/system/110-history.bats
+++ b/test/system/110-history.bats
@@ -55,4 +55,17 @@ size | -\\\?[0-9]\\\+
}
+@test "podman image history Created" {
+ # Values from image LIST
+ run_podman image list --format '{{.CreatedSince}}--{{.CreatedAt}}' $IMAGE
+ from_imagelist="$output"
+ assert "$from_imagelist" =~ "^[0-9].* ago--[0-9]+-[0-9]+-[0-9]+ [0-9:]+ " \
+ "CreatedSince and CreatedAt look reasonable"
+
+ # Values from image HISTORY
+ run_podman image history --format '{{.CreatedSince}}--{{.CreatedAt}}' $IMAGE
+ assert "${lines[0]}" == "$from_imagelist" \
+ "CreatedSince and CreatedAt from image history should == image list"
+}
+
# vim: filetype=sh