diff options
author | Qi Wang <qiwan@redhat.com> | 2019-02-25 10:09:51 -0500 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2019-03-04 20:39:47 -0500 |
commit | a8d6d7dce7a756f058bb61e9268084c9427fc29e (patch) | |
tree | 406a097ccb4aba1a31afb72b74de572ca39e43fa /test | |
parent | 61842031131029351c2b6145b339cd4a350372e1 (diff) | |
download | podman-a8d6d7dce7a756f058bb61e9268084c9427fc29e.tar.gz podman-a8d6d7dce7a756f058bb61e9268084c9427fc29e.tar.bz2 podman-a8d6d7dce7a756f058bb61e9268084c9427fc29e.zip |
Support filter image by reference to the repo name
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/images_test.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index e26f4affd..4cf58e5bf 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -114,6 +114,33 @@ var _ = Describe("Podman images", func() { Expect(len(session.OutputToStringArray())).To(Equal(1)) }) + It("podman images filter reference", func() { + if podmanTest.RemoteTest { + Skip("Does not work on remote client") + } + result := podmanTest.Podman([]string{"images", "-q", "-f", "reference=docker.io*"}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + Expect(len(result.OutputToStringArray())).To(Equal(2)) + + retapline := podmanTest.Podman([]string{"images", "-f", "reference=a*pine"}) + retapline.WaitWithDefaultTimeout() + Expect(retapline.ExitCode()).To(Equal(0)) + Expect(len(retapline.OutputToStringArray())).To(Equal(2)) + Expect(retapline.LineInOutputContains("alpine")) + + retapline = podmanTest.Podman([]string{"images", "-f", "reference=alpine"}) + retapline.WaitWithDefaultTimeout() + Expect(retapline.ExitCode()).To(Equal(0)) + Expect(len(retapline.OutputToStringArray())).To(Equal(2)) + Expect(retapline.LineInOutputContains("alpine")) + + retnone := podmanTest.Podman([]string{"images", "-q", "-f", "reference=bogus"}) + retnone.WaitWithDefaultTimeout() + Expect(retnone.ExitCode()).To(Equal(0)) + Expect(len(retnone.OutputToStringArray())).To(Equal(0)) + }) + It("podman images filter before image", func() { if podmanTest.RemoteTest { Skip("Does not work on remote client") |