diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-03 07:12:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 07:12:12 -0800 |
commit | f3a3d8e28e4b8ec06dd11ec156c10e243165f19d (patch) | |
tree | 716b5088d5f97ee85dc0adf19e43622044a41b5d /test/e2e/commit_test.go | |
parent | 9adcda73892fa0a33cbdf971ad97cf079e8e425f (diff) | |
parent | d231cfba92ef440404f936a2cb0a64503b9c8c46 (diff) | |
download | podman-f3a3d8e28e4b8ec06dd11ec156c10e243165f19d.tar.gz podman-f3a3d8e28e4b8ec06dd11ec156c10e243165f19d.tar.bz2 podman-f3a3d8e28e4b8ec06dd11ec156c10e243165f19d.zip |
Merge pull request #2477 from rhatdan/test
Add tests to make sure podman container and podman image commands work
Diffstat (limited to 'test/e2e/commit_test.go')
-rw-r--r-- | test/e2e/commit_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/e2e/commit_test.go b/test/e2e/commit_test.go index 34b218621..6b65d9b75 100644 --- a/test/e2e/commit_test.go +++ b/test/e2e/commit_test.go @@ -50,6 +50,21 @@ var _ = Describe("Podman commit", func() { Expect(StringInSlice("foobar.com/test1-image:latest", data[0].RepoTags)).To(BeTrue()) }) + It("podman container commit container", func() { + _, ec, _ := podmanTest.RunLsContainer("test1") + Expect(ec).To(Equal(0)) + Expect(podmanTest.NumberOfContainers()).To(Equal(1)) + + session := podmanTest.Podman([]string{"container", "commit", "test1", "foobar.com/test1-image:latest"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + + check := podmanTest.Podman([]string{"container", "inspect", "foobar.com/test1-image:latest"}) + check.WaitWithDefaultTimeout() + data := check.InspectImageJSON() + Expect(StringInSlice("foobar.com/test1-image:latest", data[0].RepoTags)).To(BeTrue()) + }) + It("podman commit container with message", func() { _, ec, _ := podmanTest.RunLsContainer("test1") Expect(ec).To(Equal(0)) |