diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-11 04:07:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 04:07:18 +0100 |
commit | 72dcc45f5ad7cb6f8b45305694bd6675d65989d8 (patch) | |
tree | 5fa1fe9cda77a7047aaf30c91e139ec284c0ec3a /test | |
parent | 34c9aeaffa2a8a0e9ef282e8480d6199fdedd529 (diff) | |
parent | d99f2ee78478853803c6ae25be52f2bd677e9cec (diff) | |
download | podman-72dcc45f5ad7cb6f8b45305694bd6675d65989d8.tar.gz podman-72dcc45f5ad7cb6f8b45305694bd6675d65989d8.tar.bz2 podman-72dcc45f5ad7cb6f8b45305694bd6675d65989d8.zip |
Merge pull request #5156 from mheon/fix_entrypoint_format
Remove incorrect validation of --change for commit
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/commit_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/e2e/commit_test.go b/test/e2e/commit_test.go index e9d274649..d4503d5a8 100644 --- a/test/e2e/commit_test.go +++ b/test/e2e/commit_test.go @@ -115,6 +115,25 @@ var _ = Describe("Podman commit", func() { Expect(foundBlue).To(Equal(true)) }) + It("podman commit container with change flag and JSON entrypoint with =", func() { + test := podmanTest.Podman([]string{"run", "--name", "test1", "-d", ALPINE, "ls"}) + test.WaitWithDefaultTimeout() + Expect(test.ExitCode()).To(Equal(0)) + Expect(podmanTest.NumberOfContainers()).To(Equal(1)) + + session := podmanTest.Podman([]string{"commit", "--change", `ENTRYPOINT ["foo", "bar=baz"]`, "test1", "foobar.com/test1-image:latest"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + + check := podmanTest.Podman([]string{"inspect", "foobar.com/test1-image:latest"}) + check.WaitWithDefaultTimeout() + data := check.InspectImageJSON() + Expect(len(data)).To(Equal(1)) + Expect(len(data[0].Config.Entrypoint)).To(Equal(2)) + Expect(data[0].Config.Entrypoint[0]).To(Equal("foo")) + Expect(data[0].Config.Entrypoint[1]).To(Equal("bar=baz")) + }) + It("podman commit container with change CMD flag", func() { test := podmanTest.Podman([]string{"run", "--name", "test1", "-d", ALPINE, "ls"}) test.WaitWithDefaultTimeout() |