diff options
author | cdoern <cdoern@redhat.com> | 2021-10-04 10:18:01 -0400 |
---|---|---|
committer | cdoern <cdoern@redhat.com> | 2021-10-18 11:39:12 -0400 |
commit | 4f7a431daf97f33a40609bd4823ed92ab8aa9ca4 (patch) | |
tree | 952877bc10516f3c9abcd05e3fce2ab43e50ee2d /test/e2e/pod_rm_test.go | |
parent | 36821d302e3787a42d6eefdbd0bdbb6d9da261fb (diff) | |
download | podman-4f7a431daf97f33a40609bd4823ed92ab8aa9ca4.tar.gz podman-4f7a431daf97f33a40609bd4823ed92ab8aa9ca4.tar.bz2 podman-4f7a431daf97f33a40609bd4823ed92ab8aa9ca4.zip |
Pod Rm Infra Improvements
Made changes so that if the pod contains all exited containers and only infra is running, remove the pod.
resolves #11713
Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'test/e2e/pod_rm_test.go')
-rw-r--r-- | test/e2e/pod_rm_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/e2e/pod_rm_test.go b/test/e2e/pod_rm_test.go index c5d91d679..ac1f322ef 100644 --- a/test/e2e/pod_rm_test.go +++ b/test/e2e/pod_rm_test.go @@ -301,4 +301,21 @@ var _ = Describe("Podman pod rm", func() { Expect(session).Should(Exit(0)) Expect(podmanTest.NumberOfContainersRunning()).To(Equal(0)) }) + + It("podman pod rm with exited containers", func() { + _, ec, podid := podmanTest.CreatePod(nil) + Expect(ec).To(Equal(0)) + + session := podmanTest.Podman([]string{"run", "--pod", podid, ALPINE}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + session = podmanTest.Podman([]string{"run", "--pod", podid, ALPINE}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + result := podmanTest.Podman([]string{"pod", "rm", podid}) + result.WaitWithDefaultTimeout() + Expect(result).Should(Exit(0)) + }) }) |