-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathFormatTest.java
More file actions
226 lines (199 loc) · 8.7 KB
/
FormatTest.java
File metadata and controls
226 lines (199 loc) · 8.7 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// Copyright 2023-2024 Buf Technologies, Inc.
//
// 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 build.buf.protovalidate;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.fail;
import cel.expr.conformance.proto3.TestAllTypes;
import com.cel.expr.Decl;
import com.cel.expr.ExprValue;
import com.cel.expr.Value;
import com.cel.expr.conformance.test.SimpleTest;
import com.cel.expr.conformance.test.SimpleTestFile;
import com.cel.expr.conformance.test.SimpleTestSection;
import com.google.protobuf.TextFormat;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Named;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import org.projectnessie.cel.Env;
import org.projectnessie.cel.EnvOption;
import org.projectnessie.cel.EvalOption;
import org.projectnessie.cel.Library;
import org.projectnessie.cel.Program;
import org.projectnessie.cel.ProgramOption;
import org.projectnessie.cel.checker.Decls;
import org.projectnessie.cel.common.types.ref.TypeEnum;
import org.projectnessie.cel.interpreter.Activation;
class FormatTest {
// Version of the cel-spec that this implementation is conformant with
// This should be kept in sync with the version in gradle.properties
private static String CEL_SPEC_VERSION = "v0.24.0";
private static Env env;
private static List<SimpleTest> formatTests;
private static List<SimpleTest> formatErrorTests;
private static List<String> SKIPPED_TESTS =
Arrays.asList(
// Success Tests
// found no matching overload for 'format' applied to 'string.(list(type(string)))'
"type() support for string",
// found no matching overload for 'format' applied to 'string.(list(map(string, dyn)))'
"map support for string",
// found no matching overload for 'format' applied to 'string.(list(map(dyn, dyn)))'
"map support (all key types)",
// found no matching overload for 'format' applied to 'string.(list(map(dyn, dyn)))'
"dyntype support for maps",
// Error Tests
// found no matching overload for 'format' applied to
// 'string.(list(cel.expr.conformance.proto3.TestAllTypes))'
"object not allowed",
// found no matching overload for 'format' applied to 'string.(list(map(int, dyn)))'
"object inside map");
@BeforeAll
private static void setUp() throws Exception {
// The test data from the cel-spec conformance tests
List<SimpleTestSection> celSpecSections =
loadTestData("src/test/resources/testdata/string_ext_" + CEL_SPEC_VERSION + ".textproto");
// Our supplemental tests of functionality not in the cel conformance file, but defined in the
// spec.
List<SimpleTestSection> supplementalSections =
loadTestData("src/test/resources/testdata/string_ext_supplemental.textproto");
// Combine the test data from both files into one
List<SimpleTestSection> sections =
Stream.concat(celSpecSections.stream(), supplementalSections.stream())
.collect(Collectors.toList());
// Find the format tests which test successful formatting
formatTests =
sections.stream()
.filter(s -> s.getName().equals("format"))
.flatMap(s -> s.getTestList().stream())
.collect(Collectors.toList());
// Find the format error tests which test errors during formatting
formatErrorTests =
sections.stream()
.filter(s -> s.getName().equals("format_errors"))
.flatMap(s -> s.getTestList().stream())
.collect(Collectors.toList());
env = Env.newEnv(Library.Lib(new ValidateLibrary()));
}
@ParameterizedTest()
@MethodSource("getFormatTests")
void testFormatSuccess(SimpleTest test) {
Program.EvalResult result = evaluate(test);
assertThat(result.getVal().value()).isEqualTo(getExpectedResult(test));
assertThat(result.getVal().type().typeEnum()).isEqualTo(TypeEnum.String);
}
@ParameterizedTest()
@MethodSource("getFormatErrorTests")
void testFormatError(SimpleTest test) {
Program.EvalResult result = evaluate(test);
assertThat(result.getVal().value()).isEqualTo(getExpectedResult(test));
assertThat(result.getVal().type().typeEnum()).isEqualTo(TypeEnum.Err);
}
// Loads test data from the given text format file
private static List<SimpleTestSection> loadTestData(String fileName) throws Exception {
byte[] encoded = Files.readAllBytes(Paths.get(fileName));
String data = new String(encoded, StandardCharsets.UTF_8);
SimpleTestFile.Builder bldr = SimpleTestFile.newBuilder();
TextFormat.getParser().merge(data, bldr);
SimpleTestFile testData = bldr.build();
return testData.getSectionList();
}
// Runs a test by extending the cel environment with the specified
// types, variables and declarations, then evaluating it with the cel runtime.
private static Program.EvalResult evaluate(SimpleTest test) {
List<com.google.api.expr.v1alpha1.Decl> decls = buildDecls(test);
TestAllTypes msg = TestAllTypes.newBuilder().getDefaultInstanceForType();
Env newEnv = env.extend(EnvOption.types(msg), EnvOption.declarations(decls));
Env.AstIssuesTuple ast = newEnv.compile(test.getExpr());
if (ast.hasIssues()) {
fail("error building AST for evaluation: " + ast.getIssues().toString());
}
Map<String, Object> vars = buildVariables(test.getBindingsMap());
ProgramOption globals = ProgramOption.globals(vars);
Program program =
newEnv.program(ast.getAst(), globals, ProgramOption.evalOptions(EvalOption.OptTrackState));
return program.eval(Activation.emptyActivation());
}
private static Stream<Arguments> getTestStream(List<SimpleTest> tests) {
List<Arguments> args = new ArrayList<Arguments>();
for (SimpleTest test : tests) {
if (!SKIPPED_TESTS.contains(test.getName())) {
args.add(Arguments.arguments(Named.named(test.getName(), test)));
}
}
return args.stream();
}
private static Stream<Arguments> getFormatTests() {
return getTestStream(formatTests);
}
private static Stream<Arguments> getFormatErrorTests() {
return getTestStream(formatErrorTests);
}
// Builds the variable definitions to be used during evaluation
private static Map<String, Object> buildVariables(Map<String, ExprValue> bindings) {
Map<String, Object> vars = new HashMap<String, Object>();
for (Map.Entry<String, ExprValue> entry : bindings.entrySet()) {
ExprValue exprValue = entry.getValue();
if (exprValue.hasValue()) {
Value val = exprValue.getValue();
if (val.hasStringValue()) {
vars.put(entry.getKey(), val.getStringValue());
}
}
}
return vars;
}
// Gets the expected result for a given test
private static String getExpectedResult(SimpleTest test) {
if (test.hasValue()) {
if (test.getValue().hasStringValue()) {
return test.getValue().getStringValue();
}
} else if (test.hasEvalError()) {
// Note that we only expect a single eval error for all the conformance tests
if (test.getEvalError().getErrorsList().size() == 1) {
return test.getEvalError().getErrorsList().get(0).getMessage();
}
}
return "";
}
// Builds the declarations for a given test
private static List<com.google.api.expr.v1alpha1.Decl> buildDecls(SimpleTest test) {
List<com.google.api.expr.v1alpha1.Decl> decls =
new ArrayList<com.google.api.expr.v1alpha1.Decl>();
for (Decl decl : test.getTypeEnvList()) {
if (decl.hasIdent()) {
Decl.IdentDecl ident = decl.getIdent();
com.cel.expr.Type type = ident.getType();
if (type.hasPrimitive()) {
if (type.getPrimitive() == com.cel.expr.Type.PrimitiveType.STRING) {
decls.add(Decls.newVar(decl.getName(), Decls.String));
}
}
}
}
return decls;
}
}