mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
4ab2ac0c61
* server: port compile API Also adds e2e tests: These include coverage for ucast in the prisma setting, and thus require some JS runtime. * e2e: selectively skip e2e Compile API tests ...for macos runs, and for the go-compat suites. * server: accept timer_rego_external_resolve_ns metrics with value 0 When running the tests in a loop for a while, I would see values of 0ns for this metric. However, comparing with its non-zero values, which are often 41 or 42ns, it seems like this is just not happening in this code path. So if "almost nothing" actually goes below 1ns, it's OK. * e2e: split dep-heavy e2e tests into their own go module * Makefile: export DOCKER_RUNNING (make e2e read it) --------- Co-authored-by: Philip Conrad <philip@chariot-chaser.net> Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
395 lines
13 KiB
Go
395 lines
13 KiB
Go
// Copyright 2025 The OPA Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package server
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"maps"
|
|
"net/http"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
|
|
"github.com/open-policy-agent/opa/v1/ast"
|
|
"github.com/open-policy-agent/opa/v1/storage"
|
|
"github.com/open-policy-agent/opa/v1/storage/inmem"
|
|
)
|
|
|
|
type Query struct {
|
|
Query any `json:"query,omitempty"`
|
|
Masks any `json:"masks,omitempty"`
|
|
}
|
|
type Response struct {
|
|
Result struct {
|
|
Query any `json:"query,omitempty"`
|
|
Masks any `json:"masks,omitempty"`
|
|
UCAST Query `json:"ucast"` // NB: omitempty has no effect on nested struct fields (so the linter tells me)
|
|
Postgres Query `json:"postgresql"`
|
|
MySQL Query `json:"mysql"`
|
|
MSSQL Query `json:"sqlserver"`
|
|
SQLite Query `json:"sqlite"`
|
|
} `json:"result"`
|
|
Metrics map[string]float64 `json:"metrics"`
|
|
Hints []map[string]any `json:"hints"`
|
|
}
|
|
|
|
var ignoreMetrics = cmpopts.IgnoreMapEntries(func(k string, _ any) bool { return k == "metrics" })
|
|
|
|
func setup(t testing.TB, rego string, data any) *fixture {
|
|
ctx := context.Background()
|
|
store := inmem.New()
|
|
txn := storage.NewTransactionOrDie(ctx, store, storage.WriteParams)
|
|
if err := store.UpsertPolicy(ctx, txn, "filters.rego", []byte(rego)); err != nil {
|
|
t.Fatalf("upsert policy: %v", err)
|
|
}
|
|
if data != nil {
|
|
if err := store.Write(ctx, txn, storage.AddOp, storage.Path{}, data); err != nil {
|
|
t.Fatalf("write data: %v", err)
|
|
}
|
|
}
|
|
if err := store.Commit(ctx, txn); err != nil {
|
|
t.Fatalf("store policy: %v", err)
|
|
}
|
|
return newFixtureWithStore(t, store,
|
|
func(s *Server) {
|
|
_ = s.WithRuntime(ast.MustParseTerm(`{"foo": "bar", "fox": 100}`))
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestCompileHandlerMultiTarget(t *testing.T) {
|
|
t.Parallel()
|
|
var roles map[string]any
|
|
if err := json.Unmarshal(rolesJSON, &roles); err != nil {
|
|
t.Fatalf("unmarshal roles: %v", err)
|
|
}
|
|
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
|
|
input := map[string]any{
|
|
"user": "caesar",
|
|
"tenant": map[string]any{
|
|
"id": 2,
|
|
"name": "acmecorp",
|
|
},
|
|
}
|
|
path := "filters/include"
|
|
target := "application/vnd.opa.multitarget+json"
|
|
|
|
payload := map[string]any{ // NB(sr): unknowns are taken from metadata
|
|
"input": input,
|
|
"options": map[string]any{
|
|
"targetDialects": []string{
|
|
"sql+postgresql",
|
|
"sql+mysql",
|
|
"sql+sqlserver",
|
|
"sql+sqlite",
|
|
"ucast+prisma",
|
|
},
|
|
},
|
|
}
|
|
|
|
expCode := http.StatusOK
|
|
expBody, _ := json.Marshal(map[string]any{
|
|
"result": map[string]any{
|
|
"postgresql": map[string]any{
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": string("***")}}}},
|
|
"query": "WHERE ((tickets.tenant = E'2' AND users.name = E'caesar') OR (tickets.tenant = E'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
},
|
|
"mysql": map[string]any{
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": string("***")}}}},
|
|
"query": "WHERE ((tickets.tenant = '2' AND users.name = 'caesar') OR (tickets.tenant = '2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
},
|
|
"sqlserver": map[string]any{
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": string("***")}}}},
|
|
"query": "WHERE ((tickets.tenant = N'2' AND users.name = N'caesar') OR (tickets.tenant = N'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
},
|
|
"sqlite": map[string]any{
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": string("***")}}}},
|
|
"query": "WHERE ((tickets.tenant = '2' AND users.name = 'caesar') OR (tickets.tenant = '2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
},
|
|
"ucast": map[string]any{
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": string("***")}}}},
|
|
"query": map[string]any{
|
|
"operator": "or",
|
|
"type": "compound",
|
|
"value": []any{
|
|
map[string]any{
|
|
"operator": "and",
|
|
"type": "compound",
|
|
"value": []any{
|
|
map[string]any{"field": "tickets.tenant", "operator": "eq", "type": "field", "value": float64(2)},
|
|
map[string]any{"field": "users.name", "operator": "eq", "type": "field", "value": "caesar"},
|
|
},
|
|
},
|
|
map[string]any{
|
|
"operator": "and",
|
|
"type": "compound",
|
|
"value": []any{
|
|
map[string]any{"field": "tickets.tenant", "operator": "eq", "type": "field", "value": float64(2)},
|
|
map[string]any{"field": "tickets.assignee", "operator": "eq", "type": "field", "value": nil},
|
|
map[string]any{"field": "tickets.resolved", "operator": "eq", "type": "field", "value": false},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
jsonData, err := json.Marshal(payload)
|
|
if err != nil {
|
|
t.Fatalf("Failed to marshal JSON: %v", err)
|
|
}
|
|
|
|
req, _ := http.NewRequest("POST", "/v1/compile/"+path, bytes.NewBuffer(jsonData))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
req.Header.Set("Accept", target)
|
|
if err := f.executeRequest(req, expCode, string(expBody), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestCompileHandlerMetrics(t *testing.T) {
|
|
t.Parallel()
|
|
var roles map[string]any
|
|
if err := json.Unmarshal(rolesJSON, &roles); err != nil {
|
|
t.Fatalf("unmarshal roles: %v", err)
|
|
}
|
|
|
|
input := map[string]any{
|
|
"user": "caesar",
|
|
"tenant": map[string]any{
|
|
"id": 2,
|
|
"name": "acmecorp",
|
|
},
|
|
}
|
|
path := "filters/include"
|
|
targets := []string{
|
|
"application/vnd.opa.sql.postgresql+json",
|
|
"application/vnd.opa.ucast.prisma+json",
|
|
}
|
|
|
|
for _, target := range targets {
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
t.Run(strings.Split(target, "/")[1], func(t *testing.T) {
|
|
payload := map[string]any{ // NB(sr): unknowns+mask_rule are taken from metadata
|
|
"input": input,
|
|
}
|
|
{ // check metrics
|
|
req := evalReq(t, path, payload, target)
|
|
if err := f.executeRequest(req, http.StatusOK, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
var resp Response
|
|
if err := json.NewDecoder(f.recorder.Result().Body).Decode(&resp); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if exp, act := map[string]float64{
|
|
"timer_compile_eval_constraints_ns": 0,
|
|
"timer_compile_eval_mask_rule_ns": 0,
|
|
"timer_compile_extract_annotations_unknowns_ns": 0,
|
|
"timer_compile_extract_annotations_mask_ns": 0,
|
|
"timer_compile_prep_partial_ns": 0,
|
|
"timer_rego_external_resolve_ns": 0,
|
|
"timer_rego_partial_eval_ns": 0,
|
|
"timer_rego_query_compile_ns": 0,
|
|
"timer_rego_query_parse_ns": 0,
|
|
"timer_rego_query_eval_ns": 0,
|
|
"timer_server_handler_ns": 0,
|
|
"timer_compile_translate_queries_ns": 0,
|
|
}, resp.Metrics; !compareMetrics(exp, act) {
|
|
t.Fatalf("unexpected metrics: want %v, got %v", exp, act)
|
|
}
|
|
}
|
|
|
|
{ // Redo without resetting the cache: no extraction happens
|
|
req := evalReq(t, path, payload, target)
|
|
if err := f.executeRequest(req, http.StatusOK, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
var resp Response
|
|
if err := json.NewDecoder(f.recorder.Result().Body).Decode(&resp); err != nil {
|
|
t.Error(err)
|
|
}
|
|
if n, ok := resp.Metrics["timer_compile_extract_annotations_unknowns_ns"]; ok {
|
|
t.Errorf("unexpected metric 'timer_compile_extract_annotations_unknowns_ns': %v", n)
|
|
}
|
|
if n, ok := resp.Metrics["timer_compile_extract_annotations_mask_ns"]; ok {
|
|
t.Errorf("unexpected metric 'timer_compile_extract_annotations_mask_ns': %v", n)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// compareMetrics only checks that the keys of `exp` and `act` are the same.
|
|
func compareMetrics(exp, act map[string]float64) bool {
|
|
return maps.EqualFunc(exp, act, func(_, _ float64) bool {
|
|
return true
|
|
})
|
|
}
|
|
|
|
func TestCompileHandlerHints(t *testing.T) {
|
|
t.Parallel()
|
|
typoRego := `package filters
|
|
# METADATA
|
|
# scope: document
|
|
# custom:
|
|
# unknowns: [input.fruits]
|
|
include if input.fruits.name == "apple"
|
|
include if input.fruit.cost < input.max
|
|
`
|
|
f := setup(t, typoRego, nil)
|
|
input := map[string]any{
|
|
"max": 1,
|
|
}
|
|
path := "filters/include"
|
|
target := "application/vnd.opa.sql.postgresql+json"
|
|
|
|
payload := map[string]any{ // NB(sr): unknowns are taken from metadata
|
|
"input": input,
|
|
}
|
|
req := evalReq(t, path, payload, target)
|
|
|
|
expCode := http.StatusOK
|
|
expResp := map[string]any{
|
|
"result": map[string]any{
|
|
"query": "WHERE fruits.name = E'apple'",
|
|
},
|
|
"hints": []map[string]any{
|
|
{
|
|
"location": map[string]any{
|
|
"col": float64(12),
|
|
"row": float64(7),
|
|
"file": "filters.rego",
|
|
},
|
|
"message": "input.fruit.cost undefined, did you mean input.fruits.cost?",
|
|
},
|
|
},
|
|
}
|
|
expBodyJSON, _ := json.Marshal(expResp)
|
|
if err := f.executeRequest(req, expCode, string(expBodyJSON), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestCompileHandlerMaskingRules(t *testing.T) {
|
|
t.Parallel()
|
|
var roles map[string]any
|
|
if err := json.Unmarshal(rolesJSON, &roles); err != nil {
|
|
t.Fatalf("unmarshal roles: %v", err)
|
|
}
|
|
|
|
input := map[string]any{
|
|
"user": "caesar",
|
|
"tenant": map[string]any{
|
|
"id": 2,
|
|
"name": "acmecorp",
|
|
},
|
|
}
|
|
path := "filters/include"
|
|
target := "application/vnd.opa.sql.postgresql+json"
|
|
|
|
t.Run("mask rule from payload parameter", func(t *testing.T) {
|
|
t.Parallel()
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
payload := map[string]any{ // NB(sr): unknowns are taken from metadata
|
|
"input": input,
|
|
"options": map[string]any{
|
|
"maskRule": "data.filters.masks",
|
|
},
|
|
}
|
|
req := evalReq(t, path, payload, target)
|
|
|
|
expBodyJSON, _ := json.Marshal(map[string]any{
|
|
"result": map[string]any{
|
|
"query": "WHERE ((tickets.tenant = E'2' AND users.name = E'caesar') OR (tickets.tenant = E'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
"masks": map[string]any{"tickets": map[string]any{"description": map[string]any{"replace": map[string]any{"value": "***"}}}},
|
|
},
|
|
})
|
|
if err := f.executeRequest(req, http.StatusOK, string(expBodyJSON), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
})
|
|
t.Run("mask rule from payload parameter + package-local matching", func(t *testing.T) {
|
|
t.Parallel()
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
payload := map[string]any{ // NB(sr): unknowns are taken from metadata
|
|
"input": input,
|
|
"options": map[string]any{
|
|
"maskRule": "masks",
|
|
},
|
|
}
|
|
req := evalReq(t, path, payload, target)
|
|
expBodyJSON, _ := json.Marshal(map[string]any{
|
|
"result": map[string]any{
|
|
"query": "WHERE ((tickets.tenant = E'2' AND users.name = E'caesar') OR (tickets.tenant = E'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
"masks": map[string]any{"tickets": map[string]any{"description": map[string]any{"replace": map[string]any{"value": "***"}}}},
|
|
},
|
|
})
|
|
if err := f.executeRequest(req, http.StatusOK, string(expBodyJSON), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
})
|
|
t.Run("mask rule from rule annotation", func(t *testing.T) {
|
|
t.Parallel()
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
payload := map[string]any{
|
|
"input": input,
|
|
}
|
|
req := evalReq(t, path, payload, target)
|
|
expBodyJSON, _ := json.Marshal(map[string]any{
|
|
"result": map[string]any{
|
|
"query": "WHERE ((tickets.tenant = E'2' AND users.name = E'caesar') OR (tickets.tenant = E'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": "***"}}}},
|
|
},
|
|
})
|
|
if err := f.executeRequest(req, http.StatusOK, string(expBodyJSON), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
})
|
|
t.Run("mask rule from rule annotation + package-local matching", func(t *testing.T) {
|
|
t.Parallel()
|
|
// Mangle the mask_rule annotation to make it package-local:
|
|
benchRego := bytes.Replace(benchRego, []byte("mask_rule: data.filters.mask_from_annotation"), []byte("mask_rule: mask_from_annotation"), 1)
|
|
f := setup(t, string(benchRego), map[string]any{"roles": roles})
|
|
|
|
payload := map[string]any{
|
|
"input": input,
|
|
}
|
|
req := evalReq(t, path, payload, target)
|
|
expBodyJSON, _ := json.Marshal(map[string]any{
|
|
"result": map[string]any{
|
|
"query": "WHERE ((tickets.tenant = E'2' AND users.name = E'caesar') OR (tickets.tenant = E'2' AND tickets.assignee IS NULL AND tickets.resolved = FALSE))",
|
|
"masks": map[string]any{"tickets": map[string]any{"id": map[string]any{"replace": map[string]any{"value": "***"}}}},
|
|
},
|
|
})
|
|
if err := f.executeRequest(req, http.StatusOK, string(expBodyJSON), ignoreMetrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func evalReq(t testing.TB, path string, payload map[string]any, target string) *http.Request {
|
|
t.Helper()
|
|
|
|
jsonData, err := json.Marshal(payload)
|
|
if err != nil {
|
|
t.Fatalf("Failed to marshal JSON: %v", err)
|
|
}
|
|
|
|
// CAVEAT(sr): We're using the httptest machinery to simulate a request, so the actual
|
|
// request path is ignored.
|
|
req, _ := http.NewRequest("POST", fmt.Sprintf("/v1/compile/%s?metrics=true", path), bytes.NewBuffer(jsonData))
|
|
req.Header.Set("Content-Type", "application/json")
|
|
req.Header.Set("Accept", target)
|
|
return req
|
|
}
|