Files
releases/ast/parser_ext_test.go
T
Johan Fylling a179a24c48 v1 API
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>
2024-12-12 15:27:34 +01:00

128 lines
2.7 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/ast"
"github.com/open-policy-agent/opa/format"
)
func TestParseModule_DefaultRegoVersion(t *testing.T) {
tests := []struct {
note string
mod string
expRules []string
expErrs []string
}{
{
note: "v0", // default rego-version
mod: `package test
p[x] {
x = "a"
}`,
expRules: []string{"p"},
},
{
note: "import rego.v1",
mod: `package test
import rego.v1
p contains x if {
x = "a"
}`,
expRules: []string{"p"},
},
{
note: "v1", // NOT default rego-version
mod: `package test
p contains x if {
x = "a"
}`,
expErrs: []string{
"test.rego:2: rego_parse_error: var cannot be used for rule name",
},
},
}
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 i, expErr := range tc.expErrs {
if !strings.Contains(err.Error(), expErr) {
t.Fatalf("Expected error %d to contain %q, got %q", i, 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: 3,
assertSame: false,
},
}
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))
}
}
})
}
}