Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestFuzzAuthorization (0.4 sec)

  1. tests/integration/security/fuzz/README.md

    ## Usage
    
    1. Run the test with existing Istio deployment:
    
        ```bash
        go test ./tests/integration/security/fuzz/... -p 1 -v -tags="integfuzz integ" -test.run "TestFuzzAuthorization|TestRequestAuthentication" \
          --istio.test.nocleanup --istio.test.env kube  --istio.test.kube.deploy=false - -timeout 30m \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. tests/integration/security/fuzz/fuzz_test.go

    		} else {
    			t.Logf("no potential policy bypass requests found")
    		}
    
    	default:
    		t.Fatalf("unknown fuzzer %s", fuzzer)
    	}
    }
    
    func TestFuzzAuthorization(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := "fuzz-authz"
    			namespace.ClaimOrFail(t, t, ns)
    
    			t.ConfigIstio().YAML(ns, authzDenyPolicy).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top