mirror of
https://github.com/containers/podman.git
synced 2025-06-20 09:03:43 +08:00
test/e2e: network dis-/connect test remove unhelpful assertions
Using `To(BeTrue()/BeFalse())` provides very bas error messages. It is not clear to a log reader what went wrong. Using ContainsSubstring() make the error message much more useful. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
@ -2,7 +2,6 @@ package integration
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
|
||||||
|
|
||||||
. "github.com/containers/podman/v4/test/utils"
|
. "github.com/containers/podman/v4/test/utils"
|
||||||
"github.com/containers/storage/pkg/stringid"
|
"github.com/containers/storage/pkg/stringid"
|
||||||
@ -94,7 +93,7 @@ var _ = Describe("Podman network connect and disconnect", func() {
|
|||||||
exec2 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
exec2 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
||||||
exec2.WaitWithDefaultTimeout()
|
exec2.WaitWithDefaultTimeout()
|
||||||
Expect(exec2).Should(Exit(0))
|
Expect(exec2).Should(Exit(0))
|
||||||
Expect(strings.Contains(exec2.OutputToString(), ns)).To(BeTrue())
|
Expect(exec2.OutputToString()).To(ContainSubstring(ns))
|
||||||
|
|
||||||
dis := podmanTest.Podman([]string{"network", "disconnect", netName, "test"})
|
dis := podmanTest.Podman([]string{"network", "disconnect", netName, "test"})
|
||||||
dis.WaitWithDefaultTimeout()
|
dis.WaitWithDefaultTimeout()
|
||||||
@ -113,7 +112,7 @@ var _ = Describe("Podman network connect and disconnect", func() {
|
|||||||
exec3 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
exec3 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
||||||
exec3.WaitWithDefaultTimeout()
|
exec3.WaitWithDefaultTimeout()
|
||||||
Expect(exec3).Should(Exit(0))
|
Expect(exec3).Should(Exit(0))
|
||||||
Expect(strings.Contains(exec3.OutputToString(), ns)).To(BeFalse())
|
Expect(exec3.OutputToString()).ToNot(ContainSubstring(ns))
|
||||||
|
|
||||||
// make sure stats still works https://github.com/containers/podman/issues/13824
|
// make sure stats still works https://github.com/containers/podman/issues/13824
|
||||||
stats := podmanTest.Podman([]string{"stats", "test", "--no-stream"})
|
stats := podmanTest.Podman([]string{"stats", "test", "--no-stream"})
|
||||||
@ -211,7 +210,7 @@ var _ = Describe("Podman network connect and disconnect", func() {
|
|||||||
exec2 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
exec2 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
||||||
exec2.WaitWithDefaultTimeout()
|
exec2.WaitWithDefaultTimeout()
|
||||||
Expect(exec2).Should(Exit(0))
|
Expect(exec2).Should(Exit(0))
|
||||||
Expect(strings.Contains(exec2.OutputToString(), ns)).To(BeFalse())
|
Expect(exec2.OutputToString()).ToNot(ContainSubstring(ns))
|
||||||
|
|
||||||
ip := "10.11.100.99"
|
ip := "10.11.100.99"
|
||||||
mac := "44:11:44:11:44:11"
|
mac := "44:11:44:11:44:11"
|
||||||
@ -240,7 +239,7 @@ var _ = Describe("Podman network connect and disconnect", func() {
|
|||||||
exec3 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
exec3 := podmanTest.Podman([]string{"exec", "-it", "test", "cat", "/etc/resolv.conf"})
|
||||||
exec3.WaitWithDefaultTimeout()
|
exec3.WaitWithDefaultTimeout()
|
||||||
Expect(exec3).Should(Exit(0))
|
Expect(exec3).Should(Exit(0))
|
||||||
Expect(strings.Contains(exec3.OutputToString(), ns)).To(BeTrue())
|
Expect(exec3.OutputToString()).To(ContainSubstring(ns))
|
||||||
|
|
||||||
// make sure stats works https://github.com/containers/podman/issues/13824
|
// make sure stats works https://github.com/containers/podman/issues/13824
|
||||||
stats := podmanTest.Podman([]string{"stats", "test", "--no-stream"})
|
stats := podmanTest.Podman([]string{"stats", "test", "--no-stream"})
|
||||||
|
Reference in New Issue
Block a user