summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-03 09:31:43 -0500
committerGitHub <noreply@github.com>2020-12-03 09:31:43 -0500
commitcaa84cd35d1bf18c530daf96c48c3185d073e7b6 (patch)
tree5ef5774ed11ac6b28f7139f387793114bd739824 /test
parent85b412ddcdacb635e13ec67ecd2df5990dbdca02 (diff)
parentee418c8565a46fc500c5e17067966a478efd4197 (diff)
downloadpodman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.tar.gz
podman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.tar.bz2
podman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.zip
Merge pull request #8551 from rhatdan/default
Support --network=default as if it was private
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_networking_test.go23
1 files changed, 21 insertions, 2 deletions
diff --git a/test/e2e/run_networking_test.go b/test/e2e/run_networking_test.go
index 3e80e953e..3fb00a28b 100644
--- a/test/e2e/run_networking_test.go
+++ b/test/e2e/run_networking_test.go
@@ -49,9 +49,28 @@ var _ = Describe("Podman run networking", func() {
Expect(session.ExitCode()).To(Equal(0))
})
+ It("podman run network connection with default", func() {
+ session := podmanTest.Podman([]string{"run", "--network", "default", ALPINE, "wget", "www.podman.io"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ })
+
+ It("podman run network connection with none", func() {
+ session := podmanTest.Podman([]string{"run", "--network", "none", ALPINE, "wget", "www.podman.io"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(1))
+ Expect(session.ErrorToString()).To(ContainSubstring("wget: bad address 'www.podman.io'"))
+ })
+
+ It("podman run network connection with private", func() {
+ session := podmanTest.Podman([]string{"run", "--network", "private", ALPINE, "wget", "www.podman.io"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ })
+
It("podman run network connection with loopback", func() {
- session := podmanTest.Podman([]string{"run", "-dt", "--network", "host", ALPINE, "wget", "www.podman.io"})
- session.Wait(90)
+ session := podmanTest.Podman([]string{"run", "--network", "host", ALPINE, "wget", "www.podman.io"})
+ session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
})