summaryrefslogtreecommitdiff
path: root/test/e2e/container_inspect_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-22 12:33:45 -0400
committerGitHub <noreply@github.com>2021-09-22 12:33:45 -0400
commit420ff1da921e284b80ac3724408a21bba102a533 (patch)
tree5932b5ce036a40380c9fc6738bc1313152a15f0a /test/e2e/container_inspect_test.go
parentad8f72949a4d61991a6bb7f0eb826e59b733e515 (diff)
parent5acf8ae120518cd69437bee778c5fa4ba03eff9b (diff)
downloadpodman-420ff1da921e284b80ac3724408a21bba102a533.tar.gz
podman-420ff1da921e284b80ac3724408a21bba102a533.tar.bz2
podman-420ff1da921e284b80ac3724408a21bba102a533.zip
Merge pull request #11694 from edsantiago/prevent_port_collisions
Eighty-six eighty-eighty
Diffstat (limited to 'test/e2e/container_inspect_test.go')
-rw-r--r--test/e2e/container_inspect_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/container_inspect_test.go b/test/e2e/container_inspect_test.go
index 7d05b09fb..597eeb1a4 100644
--- a/test/e2e/container_inspect_test.go
+++ b/test/e2e/container_inspect_test.go
@@ -47,25 +47,25 @@ var _ = Describe("Podman container inspect", func() {
It("podman inspect shows exposed ports", func() {
name := "testcon"
- session := podmanTest.Podman([]string{"run", "-d", "--stop-timeout", "0", "--expose", "8080/udp", "--name", name, ALPINE, "sleep", "inf"})
+ session := podmanTest.Podman([]string{"run", "-d", "--stop-timeout", "0", "--expose", "8787/udp", "--name", name, ALPINE, "sleep", "inf"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
data := podmanTest.InspectContainer(name)
Expect(data).To(HaveLen(1))
Expect(data[0].NetworkSettings.Ports).
- To(Equal(map[string][]define.InspectHostPort{"8080/udp": nil}))
+ To(Equal(map[string][]define.InspectHostPort{"8787/udp": nil}))
})
It("podman inspect shows exposed ports on image", func() {
name := "testcon"
- session := podmanTest.Podman([]string{"run", "-d", "--expose", "8080", "--name", name, nginx})
+ session := podmanTest.Podman([]string{"run", "-d", "--expose", "8989", "--name", name, nginx})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
data := podmanTest.InspectContainer(name)
Expect(data).To(HaveLen(1))
Expect(data[0].NetworkSettings.Ports).
- To(Equal(map[string][]define.InspectHostPort{"80/tcp": nil, "8080/tcp": nil}))
+ To(Equal(map[string][]define.InspectHostPort{"80/tcp": nil, "8989/tcp": nil}))
})
})