Skip to content

Commit

Permalink
Add fuzz test for rego evaluator
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Korczynski <[email protected]>
  • Loading branch information
AdamKorcz committed May 27, 2024
1 parent b44c30d commit ff2cfd8
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions internal/engine/eval/rego/fuzz_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Copyright 2024 Stacklok, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package rego

import (
"context"
"testing"

engif "github.com/stacklok/minder/internal/engine/interfaces"
minderv1 "github.com/stacklok/minder/pkg/api/protobuf/go/minder/v1"
)

func FuzzRegoEval(f *testing.F) {
f.Fuzz(func(t *testing.T, policy, data string) {

Check failure on line 26 in internal/engine/eval/rego/fuzz_test.go

View workflow job for this annotation

GitHub Actions / lint / Go Lint

unused-parameter: parameter 't' seems to be unused, consider removing or renaming it as _ (revive)
e, err := NewRegoEvaluator(
&minderv1.RuleType_Definition_Eval_Rego{
Type: ConstraintsEvaluationType.String(),
Def: policy,
},
)
if err != nil {
return
}

emptyPol := map[string]any{}

e.Eval(context.Background(), emptyPol, &engif.Result{

Check failure on line 39 in internal/engine/eval/rego/fuzz_test.go

View workflow job for this annotation

GitHub Actions / lint / Go Lint

G104: Errors unhandled. (gosec)
Object: map[string]any{
"data": data,
},
})
})
}

0 comments on commit ff2cfd8

Please sign in to comment.