Skip to content

Commit 0ba18f2

Browse files
jdewinneJGAntunes
authored andcommitted
Enable TestSingleNodeNetworkReport (#3192)
* Enable TestSingleNodeNetworkReport * Adding * * w
1 parent eeb3a2e commit 0ba18f2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

e2e/install_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package e2e
33
import (
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+
}

0 commit comments

Comments
 (0)