Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzCheckIstioOperatorSpec (0.93 sec)

  1. tests/fuzz/regression_test.go

    		{"FuzzConfigValidation2", FuzzConfigValidation2},
    		{"FuzzBNMUnmarshalJSON", FuzzBNMUnmarshalJSON},
    		{"FuzzValidateClusters", FuzzValidateClusters},
    		{"FuzzCheckIstioOperatorSpec", FuzzCheckIstioOperatorSpec},
    		{"FuzzV1Alpha1ValidateConfig", FuzzV1Alpha1ValidateConfig},
    		{"FuzzGetEnabledComponents", FuzzGetEnabledComponents},
    		{"FuzzUnmarshalAndValidateIOPS", FuzzUnmarshalAndValidateIOPS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzBNMUnmarshalJSON fuzz_bnm_unmarshal_json
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzValidateClusters fuzz_validate_clusters
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzCheckIstioOperatorSpec fuzz_check_istio_operator_spec
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzV1Alpha1ValidateConfig fuzz_v1alpha1_validate_config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tests/fuzz/misc_fuzzers.go

    	"istio.io/istio/operator/pkg/translate"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/validate"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    func FuzzCheckIstioOperatorSpec(data []byte) int {
    	f := fuzz.NewConsumer(data)
    
    	ispec := &v1alpha1.IstioOperatorSpec{}
    	err := f.GenerateStruct(ispec)
    	if err != nil {
    		return 0
    	}
    	_ = validate.CheckIstioOperatorSpec(ispec, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top