Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for notOk (0.21 sec)

  1. tests/integration/security/util/reachability/context.go

    									if expectMTLS {
    										opts.Check = check.And(opts.Check,
    											check.MTLSForHTTP())
    									}
    								} else {
    									tpe = "negative"
    									opts.Check = check.NotOK()
    								}
    								include := c.Include
    								if include == nil {
    									include = func(_ echo.Instance, _ echo.CallOptions) bool { return true }
    								}
    								if include(from, opts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. tests/integration/security/reachability_test.go

    											} else {
    												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
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    									if !src.Config().WaypointClient() && dst.Config().HasAnyWaypointProxy() {
    										// TODO currently leads to no L7 processing, in the future it might be denied
    										// opt.Check = check.NotOK()
    										opt.Check = tcpValidator
    									}
    
    									// Only marked to use service waypoint. We'll deny since it's not traversed.
    									// Not traversed, since traffic is to-workload IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tests/integration/security/jwt_test.go

    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    						opts.Check = check.And(
    							check.NotOK(),
    							check.Status(http.StatusUnauthorized))
    					},
    				},
    			}))
    
    			t.NewSubTest("aud").Run(newTest("testdata/requestauthn/aud.yaml.tmpl", []testCase{
    				{
    					name: "invalid-aud",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
Back to top