diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-09 09:24:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 09:24:44 +0200 |
commit | a2e1df80bcf71c11d10cc78b49fab4b8909b86e5 (patch) | |
tree | af98954e78bf852d9ff5c5a1ba6e822bef9a6624 /test/e2e/images_test.go | |
parent | da1bade294025a419877484ae35f352984e804d2 (diff) | |
parent | a5ad36c65ea07d839fd9bf55a820c8cb9884eed1 (diff) | |
download | podman-a2e1df80bcf71c11d10cc78b49fab4b8909b86e5.tar.gz podman-a2e1df80bcf71c11d10cc78b49fab4b8909b86e5.tar.bz2 podman-a2e1df80bcf71c11d10cc78b49fab4b8909b86e5.zip |
Merge pull request #10390 from jmguzik/fix-cmd-prune-filter-images
Fix image prune --filter cmd behavior
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r-- | test/e2e/images_test.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index f6321ec1c..b4ec7447e 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -425,4 +425,25 @@ LABEL "com.example.vendor"="Example Vendor" Expect(result.OutputToStringArray()).To(Not(Equal(result1.OutputToStringArray()))) }) + It("podman image prune --filter", func() { + dockerfile := `FROM quay.io/libpod/alpine:latest +RUN > file +` + dockerfile2 := `FROM quay.io/libpod/alpine:latest +RUN > file2 +` + podmanTest.BuildImageWithLabel(dockerfile, "foobar.com/workdir:latest", "false", "abc") + podmanTest.BuildImageWithLabel(dockerfile2, "foobar.com/workdir:latest", "false", "xyz") + // --force used to to avoid y/n question + result := podmanTest.Podman([]string{"image", "prune", "--filter", "label=abc", "--force"}) + result.WaitWithDefaultTimeout() + Expect(result).Should(Exit(0)) + Expect(len(result.OutputToStringArray())).To(Equal(1)) + + //check if really abc is removed + result = podmanTest.Podman([]string{"image", "list", "--filter", "label=abc"}) + Expect(len(result.OutputToStringArray())).To(Equal(0)) + + }) + }) |