File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package e2e
33import (
44 "encoding/base64"
55 "fmt"
6+ "net"
67 "os"
78 "strings"
89 "testing"
@@ -690,8 +691,7 @@ spec:
690691 t .Logf ("%s: test complete" , time .Now ().Format (time .RFC3339 ))
691692}
692693
693- //Temporarily disable network test until the reporting is enriched to the point where we can properly filter out domains as part of a CNAME chain
694- /*func TestSingleNodeNetworkReport(t *testing.T) {
694+ func TestSingleNodeNetworkReport (t * testing.T ) {
695695 t .Parallel ()
696696 RequireEnvVars (t , []string {"SHORT_SHA" })
697697 tc := cmx .NewCluster (& cmx.ClusterInput {
@@ -746,6 +746,7 @@ spec:
746746 allowedDomains := map [string ]struct {}{
747747 "ec-e2e-proxy.testcluster.net" : {},
748748 "ec-e2e-replicated-app.testcluster.net" : {},
749+ "*" : {}, // Triggered by host preflight wildcard-check
749750 }
750751
751752 seenAllowedDomains := map [string ]struct {}{}
@@ -773,4 +774,4 @@ spec:
773774 t .Fail ()
774775 }
775776 }
776- }*/
777+ }
You can’t perform that action at this time.
0 commit comments