summaryrefslogtreecommitdiff
path: root/test/python
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-02-03 07:54:12 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2021-02-03 07:56:13 -0500
commitd87f54fbba8cfdb7a04e50a1427cd17c8a0b06cd (patch)
tree35ff50f7bd2bf2986d21c1af234d65bb8da47167 /test/python
parent4ce8b1281e69b55b6024e87f2dec06638c678f10 (diff)
downloadpodman-d87f54fbba8cfdb7a04e50a1427cd17c8a0b06cd.tar.gz
podman-d87f54fbba8cfdb7a04e50a1427cd17c8a0b06cd.tar.bz2
podman-d87f54fbba8cfdb7a04e50a1427cd17c8a0b06cd.zip
Fix invalid wait condition on kill
When using the compatability tests on kill, the kill function goes into an infinite wait loop taking all of the CPU. This change will use the correct wait function and exit properly. Fixes: https://github.com/containers/podman/issues/9206 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/python')
-rw-r--r--test/python/docker/test_containers.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/python/docker/test_containers.py b/test/python/docker/test_containers.py
index 01e049ed4..5c2a5fef2 100644
--- a/test/python/docker/test_containers.py
+++ b/test/python/docker/test_containers.py
@@ -95,6 +95,15 @@ class TestContainers(unittest.TestCase):
top.reload()
self.assertIn(top.status, ("stopped", "exited"))
+ def test_kill_container(self):
+ top = self.client.containers.get(TestContainers.topContainerId)
+ self.assertEqual(top.status, "running")
+
+ # Kill a running container and validate the state
+ top.kill()
+ top.reload()
+ self.assertIn(top.status, ("stopped", "exited"))
+
def test_restart_container(self):
# Validate the container state
top = self.client.containers.get(TestContainers.topContainerId)