Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fuzz test for rego evaluator #3439

Merged
merged 3 commits into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions internal/engine/eval/rego/fuzz_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// 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"
)

// FuzzRegoEval tests for unexpected behavior in e.Eval().
// The test does not validate the return values from e.Eval().
func FuzzRegoEval(f *testing.F) {
f.Fuzz(func(_ *testing.T, policy, data string) {
e, err := NewRegoEvaluator(
&minderv1.RuleType_Definition_Eval_Rego{
Type: ConstraintsEvaluationType.String(),
Def: policy,
},
)
if err != nil {
return
}

emptyPol := map[string]any{}

// Call the main target of this test. Ignore the return values;
// The fuzzer tests for unexpected behavior, so it is not
// important what e.Eval() returns.
//nolint:gosec // Ignore the return values from e.Eval()
e.Eval(context.Background(), emptyPol, &engif.Result{
Object: map[string]any{
"data": data,
},
})
})
}