aboutsummaryrefslogtreecommitdiff
path: root/test/system/030-run.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-09-30 17:18:57 +0200
committerGitHub <noreply@github.com>2022-09-30 17:18:57 +0200
commit0a394876bebca48b74f4bad6647ac5ec49187e85 (patch)
tree05d52823d1077ad2f24b618a4b07fc9cb75a2e59 /test/system/030-run.bats
parent3feb56e159a3f1faf52a1df7bcc2025e32fd4ca9 (diff)
parent02b0f9fc393ab7bcbc1d555ac4386899daad59fd (diff)
downloadpodman-0a394876bebca48b74f4bad6647ac5ec49187e85.tar.gz
podman-0a394876bebca48b74f4bad6647ac5ec49187e85.tar.bz2
podman-0a394876bebca48b74f4bad6647ac5ec49187e85.zip
Merge pull request #16010 from vrothberg/container-inspect
container inspect: include image digest
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r--test/system/030-run.bats21
1 files changed, 19 insertions, 2 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats
index 6847880ab..8de1625b5 100644
--- a/test/system/030-run.bats
+++ b/test/system/030-run.bats
@@ -548,11 +548,23 @@ json-file | f
# prior to #8623 `podman run` would error out on untagged images with:
# Error: both RootfsImageName and RootfsImageID must be set if either is set: invalid argument
run_podman untag $IMAGE
- run_podman run --rm $imageID ls
+ run_podman run --rm $randomname $imageID true
run_podman tag $imageID $IMAGE
}
+@test "podman inspect includes image data" {
+ randomname=$(random_string 30)
+
+ run_podman inspect $IMAGE --format "{{.ID}} {{.Digest}}"
+ expected="$IMAGE $output"
+
+ run_podman run --name $randomname $IMAGE true
+ run_podman container inspect $randomname --format "{{.ImageName}} {{.Image}} {{.ImageDigest}}"
+ is "$output" "$expected"
+ run_podman rm -f -t0 $randomname
+}
+
@test "Verify /run/.containerenv exist" {
# Nonprivileged container: file exists, but must be empty
run_podman run --rm $IMAGE stat -c '%s' /run/.containerenv
@@ -620,10 +632,15 @@ json-file | f
run_podman image mount $IMAGE
romount="$output"
+ randomname=$(random_string 30)
# FIXME FIXME FIXME: Remove :O once (if) #14504 is fixed!
- run_podman run --rm --rootfs $romount:O echo "Hello world"
+ run_podman run --name=$randomname --rootfs $romount:O echo "Hello world"
is "$output" "Hello world"
+ run_podman container inspect $randomname --format "{{.ImageDigest}}"
+ is "$output" "" "Empty image digest for --rootfs container"
+
+ run_podman rm -f -t0 $randomname
run_podman image unmount $IMAGE
fi
}