forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform_test.go
62 lines (49 loc) · 1.51 KB
/
transform_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2016 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
import "testing"
func TestTransform(t *testing.T) {
module := MustParseModule(`package ex.this
import input.foo
import data.bar.this as qux
p = true { "this" = "that" }
p = "this" { false }
p["this"] { false }
p[y] = {"this": ["this"]} { false }
p = true { ["this" | "this"] }
p = n { count({"this", "that"}, n) with input.foo.this as {"this": true} }
p { false } else = "this" { "this" } else = ["this"] { true }
foo(x) = y { split(x, "this", y) }
`)
result, err := Transform(&GenericTransformer{
func(x interface{}) (interface{}, error) {
if s, ok := x.(String); ok && s == String("this") {
return String("that"), nil
}
return x, nil
},
}, module)
if err != nil {
t.Fatalf("Unexpected error during transform: %v", err)
}
resultMod, ok := result.(*Module)
if !ok {
t.Fatalf("Expected module from transform but got: %v", result)
}
expected := MustParseModule(`package ex.that
import input.foo
import data.bar.that as qux
p = true { "that" = "that" }
p = "that" { false }
p["that"] { false }
p[y] = {"that": ["that"]} { false }
p = true { ["that" | "that"] }
p = n { count({"that"}, n) with input.foo.that as {"that": true} }
p { false } else = "that" { "that" } else = ["that"] { true }
foo(x) = y { split(x, "that", y) }
`)
if !expected.Equal(resultMod) {
t.Fatalf("Expected module:\n%v\n\nGot:\n%v\n", expected, resultMod)
}
}