Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for CallOrFail (0.45 sec)

  1. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    										return fmt.Errorf("expected to be handled by gateway. response: %s", r)
    									}
    									return nil
    								})),
    						}
    
    						internalClient[0].CallOrFail(t, opts)
    					})
    			}
    		})
    }
    
    const (
    	// Destination Rule configs
    	DestinationRuleConfigSimple = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    func (f fakeInstance) Clusters() cluster.Clusters {
    	panic("implement me")
    }
    
    func (f fakeInstance) Call(echo.CallOptions) (echo.CallResult, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) CallOrFail(test.Failer, echo.CallOptions) echo.CallResult {
    	panic("implement me")
    }
    
    func (f fakeInstance) UpdateWorkloadLabel(add map[string]string, remove []string) error {
    	panic("implement me")
    }
    
    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. tests/integration/security/reachability_test.go

    												opts.Check = check.And(opts.Check, check.ReachedClusters(t.Clusters(), expectedClusters))
    											}
    										}
    									} else {
    										opts.Check = check.NotOK()
    									}
    									from.CallOrFail(t, opts)
    								})
    						})
    					}
    				})
    			}
    		})
    }
    
    type condition func(from echo.Instance, opts echo.CallOptions) bool
    
    func not(c condition) condition {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/util/util.go

    	}
    
    	if callType == Mtls {
    		opts.TLS.Key = tlsCtx.PrivateKey
    		opts.TLS.Cert = tlsCtx.Cert
    	}
    
    	// Certs occasionally take quite a while to become active in Envoy, so retry for a long time (2min)
    	ing.CallOrFail(ctx, opts)
    }
    
    // RotateSecrets deletes kubernetes secrets by name in credNames and creates same secrets using key/cert
    // from ingressCred.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top