diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-15 15:47:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 15:47:50 +0200 |
commit | 5f72e6ef2ef7b6941cefc3c655903aeacb53e115 (patch) | |
tree | e5b8f880e54664fe73c5e503b71a75396c526276 /test | |
parent | e5de079714a72746c8bdc67bb9fc2f522edfefe1 (diff) | |
parent | 019f19cf4fbc0e17cb46bb6c992147cd9eebb287 (diff) | |
download | podman-5f72e6ef2ef7b6941cefc3c655903aeacb53e115.tar.gz podman-5f72e6ef2ef7b6941cefc3c655903aeacb53e115.tar.bz2 podman-5f72e6ef2ef7b6941cefc3c655903aeacb53e115.zip |
Merge pull request #4195 from vrothberg/fix-4193
inspect: rename ImageID go field to Image
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/inspect_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go index 790115133..ca1e9d384 100644 --- a/test/e2e/inspect_test.go +++ b/test/e2e/inspect_test.go @@ -100,6 +100,23 @@ var _ = Describe("Podman inspect", func() { Expect(len(result.OutputToStringArray())).To(Equal(2)) }) + It("podman inspect container and filter for Image{ID}", func() { + SkipIfRemote() + ls, ec, _ := podmanTest.RunLsContainer("") + Expect(ec).To(Equal(0)) + cid := ls.OutputToString() + + result := podmanTest.Podman([]string{"inspect", "--format={{.ImageID}}", cid}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + Expect(len(result.OutputToStringArray())).To(Equal(1)) + + result = podmanTest.Podman([]string{"inspect", "--format={{.Image}}", cid}) + result.WaitWithDefaultTimeout() + Expect(result.ExitCode()).To(Equal(0)) + Expect(len(result.OutputToStringArray())).To(Equal(1)) + }) + It("podman inspect -l with additional input should fail", func() { SkipIfRemote() result := podmanTest.Podman([]string{"inspect", "-l", "1234foobar"}) |