Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunToN (0.08 sec)

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

    	workloadAgnostic bool
    
    	// toN causes the test to be run for N destinations. The call will be made from instances of the first deployment
    	// in each subset in each cluster. See echotes.T's RunToN for more details.
    	toN int
    	// viaIngress makes the ingress gateway the caller for tests
    	viaIngress bool
    	// sourceMatchers allows adding additional filtering for workload agnostic cases to test using fewer clients
    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. pkg/test/framework/components/echo/echotest/filters_test.go

    						"vm.echo1.svc.cluster.local":       2,
    					},
    				},
    			},
    			"RunToN": {
    				run: func(t framework.TestContext, testTopology map[string]map[string]int) {
    					echotest.New(t, all).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.And(match.NotNaked, match.NotHeadless)).
    						ToMatch(match.NotHeadless).
    						RunToN(3, func(ctx framework.TestContext, from echo.Instance, dsts echo.Services) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/run.go

    		fromCluster := fromCluster
    		ctx.NewSubTestf("from %s", fromCluster.StableName()).Run(func(ctx framework.TestContext) {
    			testFn(ctx, fromCluster)
    		})
    	}
    }
    
    // RunToN will generate nested subtests for every instance in every deployment subsets of the full set of deployments,
    // such that every deployment is a destination at least once. To create as few subtests as possible, the same deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top