summaryrefslogtreecommitdiff
path: root/test/e2e/images_test.go
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-02-16 10:33:57 +0100
committerValentin Rothberg <vrothberg@redhat.com>2022-02-16 10:33:57 +0100
commitb62816578e38385167abdc401f04e776c54cce56 (patch)
tree240a81573a12628b97933fcf1f29fa0311900932 /test/e2e/images_test.go
parent98962a28f5d89fa7545688bbfca635744279ff7a (diff)
downloadpodman-b62816578e38385167abdc401f04e776c54cce56.tar.gz
podman-b62816578e38385167abdc401f04e776c54cce56.tar.bz2
podman-b62816578e38385167abdc401f04e776c54cce56.zip
e2e: merge after/since image-filter tests
Merge the two tests to speed up testing. Both built the exact same images. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r--test/e2e/images_test.go14
1 files changed, 5 insertions, 9 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go
index 6a534c9c8..d34c911ad 100644
--- a/test/e2e/images_test.go
+++ b/test/e2e/images_test.go
@@ -186,25 +186,21 @@ WORKDIR /test
Expect(result.OutputToString()).To(Equal("/test"))
})
- It("podman images filter since image", func() {
+ It("podman images filter since/after image", func() {
dockerfile := `FROM scratch
`
podmanTest.BuildImage(dockerfile, "foobar.com/one:latest", "false")
podmanTest.BuildImage(dockerfile, "foobar.com/two:latest", "false")
podmanTest.BuildImage(dockerfile, "foobar.com/three:latest", "false")
+
+ // `since` filter
result := podmanTest.PodmanNoCache([]string{"images", "-q", "-f", "since=foobar.com/one:latest"})
result.WaitWithDefaultTimeout()
Expect(result).Should(Exit(0))
Expect(result.OutputToStringArray()).To(HaveLen(2))
- })
- It("podman image list filter after image", func() {
- dockerfile := `FROM scratch
-`
- podmanTest.BuildImage(dockerfile, "foobar.com/one:latest", "false")
- podmanTest.BuildImage(dockerfile, "foobar.com/two:latest", "false")
- podmanTest.BuildImage(dockerfile, "foobar.com/three:latest", "false")
- result := podmanTest.Podman([]string{"image", "list", "-q", "-f", "after=foobar.com/one:latest"})
+ // `after` filter
+ result = podmanTest.Podman([]string{"image", "list", "-q", "-f", "after=foobar.com/one:latest"})
result.WaitWithDefaultTimeout()
Expect(result).Should(Exit(0))
Expect(result.OutputToStringArray()).Should(HaveLen(2), "list filter output: %q", result.OutputToString())