Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DestMatcher (0.22 sec)

  1. tests/integration/security/https_jwt/https_jwt_test.go

    						}).
    						FromMatch(
    							// TODO(JimmyCYJ): enable VM for all test cases.
    							util.SourceMatcher(ns, true)).
    						ConditionallyTo(echotest.ReachableDestinations).
    						ToMatch(util.DestMatcher(ns, true)).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							opts := echo.CallOptions{
    								To: to,
    								Port: echo.Port{
    									Name: "http",
    								},
    							}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tests/integration/security/util/framework.go

    	})
    
    	if !skipVM {
    		m = match.Or(m, match.ServiceName(echo.NamespacedName{
    			Name:      VMSvc,
    			Namespace: ns,
    		}))
    	}
    
    	return m
    }
    
    // DestMatcher matches workload pod B with sidecar injected and VM
    func DestMatcher(ns namespace.Instance, skipVM bool) match.Matcher {
    	m := match.ServiceName(echo.NamespacedName{
    		Name:      BSvc,
    		Namespace: ns,
    	})
    
    	if !skipVM {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tests/integration/security/remote_jwks/remote_jwks_test.go

    						}).
    						FromMatch(
    							// TODO(JimmyCYJ): enable VM for all test cases.
    							util.SourceMatcher(ns, true)).
    						ConditionallyTo(echotest.ReachableDestinations).
    						ToMatch(util.DestMatcher(ns, true)).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							opts := echo.CallOptions{
    								To: to,
    								Port: echo.Port{
    									Name: "http",
    								},
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pkg/config/mesh/watcher_test_utils.go

    )
    
    // only used for testing, exposes a blocking Update method that allows test environments to trigger meshConfig updates
    type TestWatcher struct {
    	internalWatcher
    	doneCh chan struct{} // used to implement a blocking Update method
    }
    
    func NewTestWatcher(meshConfig *meshconfig.MeshConfig) *TestWatcher {
    	w := &TestWatcher{
    		internalWatcher: internalWatcher{},
    	}
    	w.internalWatcher.MeshConfig.Store(meshConfig)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 03 00:26:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/testing/match_test.go

    			ok := true
    			if err := a.verify("", regexp.MatchString); err != nil {
    				ok = false
    			}
    			if ok {
    				t.Errorf("%s: expected error in any of %q", tc.pattern, a)
    			}
    		}
    	}
    }
    
    func TestMatcher(t *T) {
    	testCases := []struct {
    		pattern     string
    		skip        string
    		parent, sub string
    		ok          bool
    		partial     bool
    	}{
    		// Behavior without subtests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top