Files
releases/cmd/test.go
T
Ashutosh Narkar 2b2d73ebbf Add target flag to OPA subcommands
This commit adds a target flag to the
bench, eval, test and run (repl) commands
which allows users to exercise the wasm
rumtime.

Fixes #2878

Signed-off-by: Ashutosh Narkar <anarkar4387@gmail.com>
2021-02-05 10:16:22 -08:00

360 lines
9.5 KiB
Go

// Copyright 2017 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package cmd
import (
"context"
"fmt"
"os"
"time"
"github.com/open-policy-agent/opa/compile"
"github.com/open-policy-agent/opa/storage/inmem"
"github.com/open-policy-agent/opa/topdown/lineage"
"github.com/open-policy-agent/opa/bundle"
"github.com/spf13/cobra"
"github.com/open-policy-agent/opa/internal/runtime"
"github.com/open-policy-agent/opa/storage"
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/cover"
"github.com/open-policy-agent/opa/tester"
"github.com/open-policy-agent/opa/topdown"
"github.com/open-policy-agent/opa/util"
)
const (
testPrettyOutput = "pretty"
testJSONOutput = "json"
)
type testCommandParams struct {
verbose bool
explain *util.EnumFlag
errLimit int
outputFormat *util.EnumFlag
coverage bool
threshold float64
timeout time.Duration
ignore []string
failureLine bool
bundleMode bool
benchmark bool
benchMem bool
runRegex string
count int
target *util.EnumFlag
}
func newTestCommandParams() *testCommandParams {
return &testCommandParams{
outputFormat: util.NewEnumFlag(testPrettyOutput, []string{testPrettyOutput, testJSONOutput, benchmarkGoBenchOutput}),
explain: newExplainFlag([]string{explainModeFails, explainModeFull, explainModeNotes}),
target: util.NewEnumFlag(compile.TargetRego, []string{compile.TargetRego, compile.TargetWasm}),
}
}
var testParams = newTestCommandParams()
var testCommand = &cobra.Command{
Use: "test <path> [path [...]]",
Short: "Execute Rego test cases",
Long: `Execute Rego test cases.
The 'test' command takes a file or directory path as input and executes all
test cases discovered in matching files. Test cases are rules whose names have the prefix "test_".
If the '--bundle' option is specified the paths will be treated as policy bundles
and loaded following standard bundle conventions. The path can be a compressed archive
file or a directory which will be treated as a bundle. Without the '--bundle' flag OPA
will recursively load ALL *.rego, *.json, and *.yaml files for evaluating the test cases.
Test cases under development may be prefixed "todo_" in order to skip their execution,
while still getting marked as skipped in the test results.
Example policy (example/authz.rego):
package authz
allow {
input.path = ["users"]
input.method = "POST"
}
allow {
input.path = ["users", profile_id]
input.method = "GET"
profile_id = input.user_id
}
Example test (example/authz_test.rego):
package authz
test_post_allowed {
allow with input as {"path": ["users"], "method": "POST"}
}
test_get_denied {
not allow with input as {"path": ["users"], "method": "GET"}
}
test_get_user_allowed {
allow with input as {"path": ["users", "bob"], "method": "GET", "user_id": "bob"}
}
test_get_another_user_denied {
not allow with input as {"path": ["users", "bob"], "method": "GET", "user_id": "alice"}
}
todo_test_user_allowed_http_client_data {
false # Remember to test this later!
}
Example test run:
$ opa test ./example/
If used with the '--bench' option then tests will be benchmarked.
Example benchmark run:
$ opa test --bench ./example/
The optional "gobench" output format conforms to the Go Benchmark Data Format.
`,
PreRunE: func(Cmd *cobra.Command, args []string) error {
if len(args) == 0 {
return fmt.Errorf("specify at least one file")
}
// If an --explain flag was set, turn on verbose output
if testParams.explain.IsSet() {
testParams.verbose = true
}
return nil
},
Run: func(cmd *cobra.Command, args []string) {
os.Exit(opaTest(args))
},
}
func opaTest(args []string) int {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
if testParams.outputFormat.String() == benchmarkGoBenchOutput && !testParams.benchmark {
fmt.Fprintf(os.Stderr, "cannot use output format %s without running benchmarks (--bench)\n", benchmarkGoBenchOutput)
return 0
}
filter := loaderFilter{
Ignore: testParams.ignore,
}
var modules map[string]*ast.Module
var bundles map[string]*bundle.Bundle
var store storage.Store
var err error
if testParams.bundleMode {
bundles, err = tester.LoadBundles(args, filter.Apply)
store = inmem.New()
} else {
modules, store, err = tester.Load(args, filter.Apply)
}
if err != nil {
fmt.Fprintln(os.Stderr, err)
return 1
}
txn, err := store.NewTransaction(ctx, storage.WriteParams)
if err != nil {
fmt.Fprintln(os.Stderr, err)
return 1
}
defer store.Abort(ctx, txn)
compiler := ast.NewCompiler().
SetErrorLimit(testParams.errLimit).
WithPathConflictsCheck(storage.NonEmpty(ctx, store, txn))
info, err := runtime.Term(runtime.Params{})
if err != nil {
fmt.Fprintln(os.Stderr, err)
return 1
}
if testParams.threshold > 0 && !testParams.coverage {
testParams.coverage = true
}
var cov *cover.Cover
var coverTracer topdown.QueryTracer
if testParams.coverage {
if testParams.benchmark {
fmt.Fprintln(os.Stderr, "coverage reporting is not supported when benchmarking tests")
return 1
}
cov = cover.New()
coverTracer = cov
}
runner := tester.NewRunner().
SetCompiler(compiler).
SetStore(store).
EnableTracing(testParams.verbose).
SetCoverageQueryTracer(coverTracer).
EnableFailureLine(testParams.failureLine).
SetRuntime(info).
SetModules(modules).
SetBundles(bundles).
SetTimeout(testParams.timeout).
Filter(testParams.runRegex).
Target(testParams.target.String())
var reporter tester.Reporter
goBench := false
if !testParams.coverage {
switch testParams.outputFormat.String() {
case testJSONOutput:
reporter = tester.JSONReporter{
Output: os.Stdout,
}
case benchmarkGoBenchOutput:
goBench = true
fallthrough
default:
reporter = tester.PrettyReporter{
Verbose: testParams.verbose,
FailureLine: testParams.failureLine,
Output: os.Stdout,
BenchmarkResults: testParams.benchmark,
BenchMarkShowAllocations: testParams.benchMem,
BenchMarkGoBenchFormat: goBench,
}
}
} else {
reporter = tester.JSONCoverageReporter{
Cover: cov,
Modules: modules,
Output: os.Stdout,
Threshold: testParams.threshold,
}
}
for i := 0; i < testParams.count; i++ {
exitCode := runTests(ctx, txn, runner, reporter)
if exitCode != 0 {
return exitCode
}
}
return 0
}
func runTests(ctx context.Context, txn storage.Transaction, runner *tester.Runner, reporter tester.Reporter) int {
var err error
var ch chan *tester.Result
if testParams.benchmark {
benchOpts := tester.BenchmarkOptions{
ReportAllocations: testParams.benchMem,
}
ch, err = runner.RunBenchmarks(ctx, txn, benchOpts)
} else {
ch, err = runner.RunTests(ctx, txn)
}
if err != nil {
fmt.Fprintln(os.Stderr, err)
return 1
}
exitCode := 0
dup := make(chan *tester.Result)
go func() {
defer close(dup)
for tr := range ch {
if !tr.Pass() {
exitCode = 2
}
tr.Trace = filterTrace(testParams, tr.Trace)
dup <- tr
}
}()
if err := reporter.Report(dup); err != nil {
fmt.Fprintln(os.Stderr, err)
if !testParams.benchmark {
if _, ok := err.(*cover.CoverageThresholdError); ok {
return 2
}
}
return 1
}
return exitCode
}
func filterTrace(params *testCommandParams, trace []*topdown.Event) []*topdown.Event {
ops := map[topdown.Op]struct{}{}
mode := params.explain.String()
if mode == explainModeFull {
// Don't bother filtering anything
return trace
}
// If an explain mode was specified, filter based
// on the mode. If no explain mode was specified,
// default to show both notes and fail events
showDefault := !params.explain.IsSet() && params.verbose
if mode == explainModeNotes || showDefault {
ops[topdown.NoteOp] = struct{}{}
}
if mode == explainModeFails || showDefault {
ops[topdown.FailOp] = struct{}{}
}
return lineage.Filter(trace, func(event *topdown.Event) bool {
_, relevant := ops[event.Op]
return relevant
})
}
func init() {
testCommand.Flags().BoolVarP(&testParams.verbose, "verbose", "v", false, "set verbose reporting mode")
testCommand.Flags().BoolVarP(&testParams.failureLine, "show-failure-line", "l", false, "show test failure line")
testCommand.Flags().MarkDeprecated("show-failure-line", "use -v instead")
testCommand.Flags().DurationVarP(&testParams.timeout, "timeout", "", time.Second*5, "set test timeout")
testCommand.Flags().VarP(testParams.outputFormat, "format", "f", "set output format")
testCommand.Flags().BoolVarP(&testParams.coverage, "coverage", "c", false, "report coverage (overrides debug tracing)")
testCommand.Flags().Float64VarP(&testParams.threshold, "threshold", "", 0, "set coverage threshold and exit with non-zero status if coverage is less than threshold %")
testCommand.Flags().BoolVar(&testParams.benchmark, "bench", false, "benchmark the unit tests")
testCommand.Flags().StringVarP(&testParams.runRegex, "run", "r", "", "run only test cases matching the regular expression.")
addBundleModeFlag(testCommand.Flags(), &testParams.bundleMode, false)
addBenchmemFlag(testCommand.Flags(), &testParams.benchMem, true)
addCountFlag(testCommand.Flags(), &testParams.count, "test")
addMaxErrorsFlag(testCommand.Flags(), &testParams.errLimit)
addIgnoreFlag(testCommand.Flags(), &testParams.ignore)
setExplainFlag(testCommand.Flags(), testParams.explain)
addTargetFlag(testCommand.Flags(), testParams.target)
RootCommand.AddCommand(testCommand)
}