diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-24 17:09:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 17:09:24 +0100 |
commit | 2602083f6282b13407569ce8df593fd7703442e0 (patch) | |
tree | 25348acfba805f9aa2220267eacbc2d680f2c364 /pkg/bindings | |
parent | 18dcb84d641f4e8ae7fa31fa446d9461e0c915ab (diff) | |
parent | d92b9b88595b030245d5d74b096ce605b5ae2db7 (diff) | |
download | podman-2602083f6282b13407569ce8df593fd7703442e0.tar.gz podman-2602083f6282b13407569ce8df593fd7703442e0.tar.bz2 podman-2602083f6282b13407569ce8df593fd7703442e0.zip |
Merge pull request #5301 from baude/apiv2imagetests3
more image binding tests
Diffstat (limited to 'pkg/bindings')
-rw-r--r-- | pkg/bindings/test/images_test.go | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/pkg/bindings/test/images_test.go b/pkg/bindings/test/images_test.go index c51ce4a32..8eef28502 100644 --- a/pkg/bindings/test/images_test.go +++ b/pkg/bindings/test/images_test.go @@ -292,5 +292,58 @@ var _ = Describe("Podman images", func() { Expect(data.Comment).To(Equal(testMessage)) }) + It("History Image", func() { + // a bogus name should return a 404 + _, err := images.History(connText, "foobar") + Expect(err).To(Not(BeNil())) + code, _ := bindings.CheckResponseCode(err) + Expect(code).To(BeNumerically("==", http.StatusNotFound)) + + var foundID bool + data, err := images.GetImage(connText, alpine.name, nil) + Expect(err).To(BeNil()) + history, err := images.History(connText, alpine.name) + Expect(err).To(BeNil()) + for _, i := range history { + if i.ID == data.ID { + foundID = true + break + } + } + Expect(foundID).To(BeTrue()) + }) + + It("Search for an image", func() { + imgs, err := images.Search(connText, "alpine", nil, nil) + Expect(err).To(BeNil()) + Expect(len(imgs)).To(BeNumerically(">", 1)) + var foundAlpine bool + for _, i := range imgs { + if i.Name == "docker.io/library/alpine" { + foundAlpine = true + break + } + } + Expect(foundAlpine).To(BeTrue()) + + // Search for alpine with a limit of 10 + ten := 10 + imgs, err = images.Search(connText, "docker.io/alpine", &ten, nil) + Expect(err).To(BeNil()) + Expect(len(imgs)).To(BeNumerically("<=", 10)) + + // Search for alpine with stars greater than 100 + filters := make(map[string][]string) + filters["stars"] = []string{"100"} + imgs, err = images.Search(connText, "docker.io/alpine", nil, filters) + Expect(err).To(BeNil()) + for _, i := range imgs { + Expect(i.Stars).To(BeNumerically(">=", 100)) + } + + // Search with a fqdn + imgs, err = images.Search(connText, "quay.io/libpod/alpine_nginx", nil, nil) + Expect(len(imgs)).To(BeNumerically(">=", 1)) + }) }) |