diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-02-15 15:08:11 +0100 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-02-18 10:45:35 -0500 |
commit | 8dc2fb2c78a8404341e9e037ee4418d876c26366 (patch) | |
tree | 5196b71ee8445b770f5819e4bf6b54ae702ecf06 /test | |
parent | 2f3ae7ce5bbe03db13acfa529b5a396e65de1655 (diff) | |
download | podman-8dc2fb2c78a8404341e9e037ee4418d876c26366.tar.gz podman-8dc2fb2c78a8404341e9e037ee4418d876c26366.tar.bz2 podman-8dc2fb2c78a8404341e9e037ee4418d876c26366.zip |
fix create container: handle empty host port
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/python/docker/test_containers.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/python/docker/test_containers.py b/test/python/docker/test_containers.py index 5c2a5fef2..337cacd5c 100644 --- a/test/python/docker/test_containers.py +++ b/test/python/docker/test_containers.py @@ -86,6 +86,13 @@ class TestContainers(unittest.TestCase): containers = self.client.containers.list(all=True) self.assertEqual(len(containers), 2) + def test_start_container_with_random_port_bind(self): + container = self.client.containers.create(image=constant.ALPINE, + name="containerWithRandomBind", + ports={'1234/tcp': None}) + containers = self.client.containers.list(all=True) + self.assertTrue(container in containers) + def test_stop_container(self): top = self.client.containers.get(TestContainers.topContainerId) self.assertEqual(top.status, "running") |