forked from projectnessie/cel-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptHostTest.java
More file actions
166 lines (137 loc) · 5.4 KB
/
ScriptHostTest.java
File metadata and controls
166 lines (137 loc) · 5.4 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
* Copyright (C) 2021 The Authors of CEL-Java
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.projectnessie.cel.tools;
import static java.util.Collections.singletonMap;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.jupiter.api.Test;
import org.projectnessie.cel.EnvOption;
import org.projectnessie.cel.Library;
import org.projectnessie.cel.ProgramOption;
import org.projectnessie.cel.checker.Decls;
import org.projectnessie.cel.common.types.IntT;
import org.projectnessie.cel.interpreter.functions.Overload;
import org.projectnessie.cel.toolstests.Dummy;
class ScriptHostTest {
@Test
void basic() throws Exception {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
// create the script, will be parsed and checked
Script script =
scriptHost
.buildScript("x + ' ' + y")
// Variable declarations - we need `x` and `y` in this example
.withDeclarations(Decls.newVar("x", Decls.String), Decls.newVar("y", Decls.String))
.build();
Map<String, Object> arguments = new HashMap<>();
arguments.put("x", "hello");
arguments.put("y", "world");
String result = script.execute(String.class, arguments);
assertThat(result).isEqualTo("hello world");
}
@Test
void function() throws Exception {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
// create the script, will be parsed and checked
Script script =
scriptHost
.buildScript("x + ' ' + y")
// Variable declarations - we need `x` and `y` in this example
.withDeclarations(Decls.newVar("x", Decls.String), Decls.newVar("y", Decls.String))
.build();
String result =
script.execute(
String.class,
arg -> {
if ("x".equals(arg)) {
return "hello";
} else if ("y".equals(arg)) {
return "world";
} else {
return null;
}
});
assertThat(result).isEqualTo("hello world");
}
@Test
void execFail() throws Exception {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
// create the script, will be parsed and checked
Script script = scriptHost.buildScript("1/0 != 0").build();
assertThatThrownBy(() -> script.execute(String.class, singletonMap("x", "hello world")))
.isInstanceOf(ScriptExecutionException.class)
.hasMessage("divide by zero");
}
@Test
void badSyntax() {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
assertThatThrownBy(() -> scriptHost.buildScript("-.,").build())
.isInstanceOf(ScriptCreateException.class)
.hasMessageStartingWith(
"parse failed: ERROR: <input>:1:3: Syntax error: mismatched input ',' expecting IDENTIFIER");
}
@Test
void checkFailure() {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
assertThatThrownBy(() -> scriptHost.buildScript("x").build())
.isInstanceOf(ScriptCreateException.class)
.hasMessageStartingWith(
"check failed: ERROR: <input>:1:1: undeclared reference to 'x' (in container '')");
}
@Test
void library() throws Exception {
class MyLib implements Library {
@Override
public List<EnvOption> getCompileOptions() {
return Collections.singletonList(
EnvOption.declarations(
Decls.newFunction(
"foo", Decls.newOverload("foo_void", Collections.emptyList(), Decls.Int))));
}
@Override
public List<ProgramOption> getProgramOptions() {
return Collections.singletonList(
ProgramOption.functions(Overload.function("foo", e -> IntT.intOf(42))));
}
}
ScriptHost scriptHost = ScriptHost.newBuilder().build();
Script script = scriptHost.buildScript("foo()").withLibraries(new MyLib()).build();
assertThat(script.execute(Integer.class, Collections.emptyMap())).isEqualTo(42);
}
@Test
void readmeExample() throws Exception {
ScriptHost scriptHost = ScriptHost.newBuilder().build();
Script script =
scriptHost
.buildScript("inp.Property1 == checkName")
.withDeclarations(
Decls.newVar(
"inp", Decls.newObjectType(Dummy.MyPojo.getDescriptor().getFullName())),
Decls.newVar("checkName", Decls.String))
.withTypes(Dummy.MyPojo.getDefaultInstance())
.build();
Dummy.MyPojo pojo = Dummy.MyPojo.newBuilder().setProperty1("test").build();
String checkName = "test";
Map<String, Object> arguments = new HashMap<>();
arguments.put("inp", pojo);
arguments.put("checkName", checkName);
assertThat(script.execute(Boolean.class, arguments)).isTrue();
}
}