forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepl_wasmtarget_test.go
79 lines (58 loc) · 1.75 KB
/
repl_wasmtarget_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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright 2021 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.
// +build opa_wasm
package repl
import (
"bytes"
"context"
"testing"
_ "github.com/open-policy-agent/opa/features/wasm"
)
func TestReplWasmTarget(t *testing.T) {
ctx := context.Background()
store := newTestStore()
var buffer bytes.Buffer
repl := newRepl(store, &buffer)
err := repl.OneShot(ctx, "target foo bar")
expected := "code bad arguments: target <mode>: expects exactly one argument"
if err == nil || err.Error() != expected {
t.Fatalf("Expected error %s, got %s", expected, err)
}
err = repl.OneShot(ctx, "target foo")
expected = "invalid target \"foo\":must be one of {rego,wasm}"
if err == nil || err.Error() != expected {
t.Fatalf("Expected error %s, got %s", expected, err)
}
buffer.Reset()
err = repl.OneShot(ctx, "target wasm")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
repl.OneShot(ctx, `p = true { input.foo = "bar" }`)
buffer.Reset()
repl.OneShot(ctx, "p")
if buffer.String() != "undefined\n" {
t.Fatalf("Expected undefined but got: %v", buffer.String())
}
buffer.Reset()
repl.OneShot(ctx, `p with input as {"foo": "bar"}`)
result := buffer.String()
expected = "true\n"
if result != expected {
t.Fatalf("Expected true but got: %v", result)
}
buffer.Reset()
repl.OneShot(ctx, `p with input.foo as "bar"`)
result = buffer.String()
if result != expected {
t.Fatalf("Expected true but got: %v", result)
}
buffer.Reset()
repl.OneShot(ctx, `trace`)
result = buffer.String()
expected = "warning: trace mode \"full\" is not supported with wasm target\n"
if result != expected {
t.Fatalf("Expected true but got: %v", result)
}
}