diff options
author | Matthew Heon <mheon@redhat.com> | 2018-11-07 16:06:55 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2018-11-07 16:26:42 -0500 |
commit | b598d6829b983c878dcf54d3d12ed43c758e3765 (patch) | |
tree | 5baf4cabc8b0801d9d99f85759848895b27f5a69 /test/e2e | |
parent | e9f8aed407f3e05f47e3eb40b23aa7c2f57e0a60 (diff) | |
download | podman-b598d6829b983c878dcf54d3d12ed43c758e3765.tar.gz podman-b598d6829b983c878dcf54d3d12ed43c758e3765.tar.bz2 podman-b598d6829b983c878dcf54d3d12ed43c758e3765.zip |
Fix run --hostname test that started failing post-merge
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/run_dns_test.go | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/test/e2e/run_dns_test.go b/test/e2e/run_dns_test.go index 674a57aeb..a617035a1 100644 --- a/test/e2e/run_dns_test.go +++ b/test/e2e/run_dns_test.go @@ -3,7 +3,6 @@ package integration import ( "fmt" "os" - "strings" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" @@ -83,23 +82,12 @@ var _ = Describe("Podman run dns", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(session.OutputToString()).To(Equal("foobar")) + }) - session = podmanTest.Podman([]string{"run", "-d", "--hostname=foobar", ALPINE, "cat", "/etc/hosts"}) - session.WaitWithDefaultTimeout() - cid := session.OutputToString() - session = podmanTest.Podman([]string{"start", "-ia", cid}) - session.WaitWithDefaultTimeout() - Expect(session.ExitCode()).To(Equal(0)) - session.LineInOutputContains("foobar") - line := strings.Split(session.OutputToStringArray()[len(session.OutputToStringArray())-1], "\t") - ip1 := line[0] - - session = podmanTest.Podman([]string{"start", "-ia", cid}) + It("podman run add hostname sets /etc/hosts", func() { + session := podmanTest.Podman([]string{"run", "-t", "-i", "--hostname=foobar", ALPINE, "cat", "/etc/hosts"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) - session.LineInOutputContains("foobar") - line = strings.Split(session.OutputToStringArray()[len(session.OutputToStringArray())-1], "\t") - ip2 := line[0] - Expect(ip2).To(Not(Equal(ip1))) + Expect(session.LineInOutputContains("foobar")).To(BeTrue()) }) }) |