From 58e99d605c9a58537a22c66f33615df2b43ac34b Mon Sep 17 00:00:00 2001 From: Zifei Tong Date: Tue, 9 Sep 2025 13:16:00 -0700 Subject: [PATCH] Add system test Signed-off-by: Zifei Tong --- test/system/070-build.bats | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 7fcf5c87f3..ecf4f79b42 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -6,6 +6,7 @@ load helpers load helpers.network +load helpers.registry @test "podman build - basic test" { rand_filename=$(random_string 20) @@ -951,6 +952,61 @@ EOF "--pull-never fails with expected error message" } +@test "podman build --pull=newer" { + skip_if_remote "tests depend on start_registry which does not work with podman-remote" + start_registry + + local registry=localhost:${PODMAN_LOGIN_REGISTRY_PORT} + local image_for_test=$registry/i-$(safename):$(random_string) + local authfile=$PODMAN_TMPDIR/authfile.json + local tmpdir=$PODMAN_TMPDIR/build-test + + run_podman login --authfile=$authfile \ + --tls-verify=false \ + --username ${PODMAN_LOGIN_USER} \ + --password ${PODMAN_LOGIN_PASS} \ + $registry + + # Generate a test image and push it to the registry. + # For safety in parallel runs, test image must be isolated + # from $IMAGE. A simple add-tag will not work. (#23756) + run_podman create -q $IMAGE true + local tmpcid=$output + run_podman commit -q $tmpcid $image_for_test + run_podman rm $tmpcid + run_podman image push --tls-verify=false --authfile=$authfile $image_for_test + + local tmpdir=$PODMAN_TMPDIR/build-test + mkdir -p $tmpdir + + # Now build using $image_for_test + cat >$tmpdir/Containerfile <