Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for trafficLoopCases (0.27 sec)

  1. tests/integration/pilot/common/traffic.go

    	RunSkipAmbient("serverfirst", serverFirstTestCases, "Expected success cases time out")
    	RunCase("gateway", gatewayCases)
    	RunCase("autopassthrough", autoPassthroughCases)
    	RunSkipAmbient("loop", trafficLoopCases, "does not error (waypoint -> waypoint)")
    	RunSkipAmbient("tls-origination", tlsOriginationCases, "not workload agnostic")
    	RunSkipAmbient("instanceip", instanceIPTests, "not supported")
    	RunCase("services", serviceCases)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    				Name: "http",
    			},
    			Count: 1,
    			HTTP: echo.HTTP{
    				HTTP2: true,
    			},
    			Check: check.OK(),
    		},
    	})
    }
    
    // trafficLoopCases contains tests to ensure traffic does not loop through the sidecar
    func trafficLoopCases(t TrafficContext) {
    	for _, c := range t.Apps.A {
    		for _, d := range t.Apps.B {
    			for _, port := range []int{15001, 15006} {
    				c, d, port := c, d, port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top