diff options
author | Qi Wang <qiwan@redhat.com> | 2020-09-22 16:24:31 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-09-30 14:12:32 -0400 |
commit | 7ac8000cc1925c3c46a3afcd4ff23b1d09bddfe3 (patch) | |
tree | 3c3d6f4e944490045670f68d0242e9357c46e930 /test | |
parent | f86e01ab10821d99cebb82d10c3bd5dad77af8c6 (diff) | |
download | podman-7ac8000cc1925c3c46a3afcd4ff23b1d09bddfe3.tar.gz podman-7ac8000cc1925c3c46a3afcd4ff23b1d09bddfe3.tar.bz2 podman-7ac8000cc1925c3c46a3afcd4ff23b1d09bddfe3.zip |
fix allowing inspect manifest of non-local image
Add support of `podman manifest inspect` returning manifest list of non-local manifest.
Close #https://github.com/containers/podman/issues/7726
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/manifest_test.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index 33aac48d5..b85132814 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -8,6 +8,7 @@ import ( . "github.com/containers/podman/v2/test/utils" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" + . "github.com/onsi/gomega/gexec" ) var _ = Describe("Podman manifest", func() { @@ -49,6 +50,16 @@ var _ = Describe("Podman manifest", func() { Expect(session.ExitCode()).To(Equal(0)) }) + It("podman manifest inspect", func() { + session := podmanTest.Podman([]string{"manifest", "inspect", BB}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + + session = podmanTest.PodmanNoCache([]string{"manifest", "inspect", "docker.io/library/busybox"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + }) + It("podman manifest add", func() { session := podmanTest.Podman([]string{"manifest", "create", "foo"}) session.WaitWithDefaultTimeout() |