summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2022-02-15 12:31:20 -0600
committerBrent Baude <bbaude@redhat.com>2022-02-15 12:33:51 -0600
commit5b98efe1d1435b1445cd9737db651d83f2d551b8 (patch)
tree9e04c12900ce92b0f7245a3afb84f5ca6cb4bc6a /test
parent60b0acb7dc6b5bbe05a9556d80e33217b10dde9b (diff)
downloadpodman-5b98efe1d1435b1445cd9737db651d83f2d551b8.tar.gz
podman-5b98efe1d1435b1445cd9737db651d83f2d551b8.tar.bz2
podman-5b98efe1d1435b1445cd9737db651d83f2d551b8.zip
Fix images since/after tests
For the since and after imagve filter tests, instead of using the read-only cache of images, we just use the empty r/w store. We then build three images that are strictly predictable. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/images_test.go20
1 files changed, 12 insertions, 8 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go
index 0a4d9b134..6a534c9c8 100644
--- a/test/e2e/images_test.go
+++ b/test/e2e/images_test.go
@@ -187,23 +187,27 @@ WORKDIR /test
})
It("podman images filter since image", func() {
- dockerfile := `FROM quay.io/libpod/alpine:latest
+ dockerfile := `FROM scratch
`
- podmanTest.BuildImage(dockerfile, "foobar.com/before:latest", "false")
- result := podmanTest.Podman([]string{"images", "-q", "-f", "since=quay.io/libpod/alpine:latest"})
+ 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.PodmanNoCache([]string{"images", "-q", "-f", "since=foobar.com/one:latest"})
result.WaitWithDefaultTimeout()
Expect(result).Should(Exit(0))
- Expect(result.OutputToStringArray()).To(HaveLen(9))
+ Expect(result.OutputToStringArray()).To(HaveLen(2))
})
It("podman image list filter after image", func() {
- dockerfile := `FROM quay.io/libpod/alpine:latest
+ dockerfile := `FROM scratch
`
- podmanTest.BuildImage(dockerfile, "foobar.com/before:latest", "false")
- result := podmanTest.Podman([]string{"image", "list", "-q", "-f", "after=quay.io/libpod/alpine:latest"})
+ 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"})
result.WaitWithDefaultTimeout()
Expect(result).Should(Exit(0))
- Expect(result.OutputToStringArray()).Should(HaveLen(9), "list filter output: %q", result.OutputToString())
+ Expect(result.OutputToStringArray()).Should(HaveLen(2), "list filter output: %q", result.OutputToString())
})
It("podman images filter dangling", func() {