mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
a179a24c48
All packages, except for `cmd` and `internal`, have been moved into a new `v1` root package. Old packages are kept for backwards-compatibility reasons. All contained code is replaced with simple type aliases and proxy functions to `v1` implementations. Old packages default to the Rego v0 syntax, new `v1` packages default to the Rego v1 syntax. Signed-off-by: Johan Fylling <johan.dev@fylling.se>
129 lines
2.8 KiB
Go
129 lines
2.8 KiB
Go
// Copyright 2024 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 ast_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/open-policy-agent/opa/v1/ast"
|
|
"github.com/open-policy-agent/opa/v1/format"
|
|
)
|
|
|
|
func TestParseModule_DefaultRegoVersion(t *testing.T) {
|
|
tests := []struct {
|
|
note string
|
|
mod string
|
|
expRules []string
|
|
expErrs []string
|
|
}{
|
|
{
|
|
note: "v0", // NOT default rego-version
|
|
mod: `package test
|
|
p[x] {
|
|
x = "a"
|
|
}`,
|
|
expErrs: []string{
|
|
"test.rego:2: rego_parse_error: `if` keyword is required before rule body",
|
|
"test.rego:2: rego_parse_error: `contains` keyword is required for partial set rules",
|
|
},
|
|
},
|
|
{
|
|
note: "import rego.v1",
|
|
mod: `package test
|
|
import rego.v1
|
|
|
|
p contains x if {
|
|
x = "a"
|
|
}`,
|
|
expRules: []string{"p"},
|
|
},
|
|
{
|
|
note: "v1", // default rego-version
|
|
mod: `package test
|
|
p contains x if {
|
|
x = "a"
|
|
}`,
|
|
expRules: []string{"p"},
|
|
},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.note, func(t *testing.T) {
|
|
m, err := ast.ParseModule("test.rego", tc.mod)
|
|
|
|
if len(tc.expErrs) > 0 {
|
|
for _, expErr := range tc.expErrs {
|
|
if !strings.Contains(err.Error(), expErr) {
|
|
t.Fatalf("Expected error to contain:\n\n%s\n\ngot:\n\n%s", expErr, err.Error())
|
|
}
|
|
}
|
|
} else {
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
|
|
if len(m.Rules) != len(tc.expRules) {
|
|
t.Fatalf("Expected %d rules, got %d", len(tc.expRules), len(m.Rules))
|
|
}
|
|
for i, r := range m.Rules {
|
|
if r.Head.Name.String() != tc.expRules[i] {
|
|
t.Fatalf("Expected rule %q, got %q", tc.expRules[i], r.Head.Name.String())
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestParseBody_DefaultRegoVersion(t *testing.T) {
|
|
tests := []struct {
|
|
note string
|
|
body string
|
|
expStmts int
|
|
assertSame bool
|
|
}{
|
|
{
|
|
note: "v0", // default rego-version
|
|
body: `x := ["a", "b", "c"][i]
|
|
`,
|
|
expStmts: 1,
|
|
assertSame: true,
|
|
},
|
|
{
|
|
note: "v1", // NOT default rego-version
|
|
body: `some x, i in ["a", "b", "c"]
|
|
`,
|
|
expStmts: 1,
|
|
assertSame: true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.note, func(t *testing.T) {
|
|
body, err := ast.ParseBody(tc.body)
|
|
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
|
|
if len(body) != tc.expStmts {
|
|
t.Fatalf("Expected %d statements, got %d:%q\n\n", tc.expStmts, len(body), body)
|
|
}
|
|
|
|
if tc.assertSame {
|
|
formatted, err := format.AstWithOpts(body, format.Opts{RegoVersion: ast.RegoV1}) // every body is v1-compatible
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error: %s", err)
|
|
}
|
|
|
|
if strings.Compare(string(formatted), tc.body) != 0 {
|
|
t.Fatalf("Expected body to be %q, got %q", tc.body, string(formatted))
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|