Skip to content

Commit ac7f76d

Browse files
committed
test overhaul, work in progress
1 parent 2690312 commit ac7f76d

20 files changed

+9161
-87100
lines changed

package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,17 @@
3131
"url": "git+ssh://[email protected]/hudlow/cel-parser.git"
3232
},
3333
"scripts": {
34-
"clean": "rm -rf index.ts index.ast utility/extract-parser-tests/bin dist/ external/ node_modules/ &> /dev/null",
34+
"clean": "rm -rf index.ts index.ast utility/generate-tests/bin dist/ external/ node_modules/ &> /dev/null",
3535
"generate-control-parser": "peggy cel.peggy --format es -o ./index.ts",
3636
"generate-parser": "peggy cel.peggy --format bare --extra-options '{\"typescript\":true}' --plugin peggy-ts -o ./index.ts && prettier index.ts --write",
3737
"generate-proto": "buf generate --include-imports buf.build/google/cel-spec:v0.18.0",
3838
"generate-parser-ast": "peggy cel.peggy --ast --plugin peggy-ts -o ./index.ast",
39+
"generate-tests": "utility/generate-tests/extract.sh",
3940
"bundle-init": "rm -rf dist/ &> /dev/null && mkdir dist",
4041
"bundle-cjs": "esbuild index.ts --bundle --format=cjs --outfile=dist/index.cjs && prettier dist/index.cjs --write",
4142
"bundle-browser": "echo 'import * as CEL from \"./\"; module.exports = CEL;' | esbuild --bundle --global-name=CEL --outfile=dist/index.js && prettier dist/index.js --write",
4243
"bundle-debugger": "echo 'import toDebugString from \"./utility/debug/to-debug-string.ts\"; module.exports = toDebugString;' | esbuild --bundle --global-name=toDebugString --outfile=dist/to-debug-string.js && prettier dist/to-debug-string.js --write",
4344
"bundle": "npm run bundle-init && npm run bundle-cjs && npm run bundle-browser",
44-
"extract-tests": "npm run extract-conformance-tests && npm run extract-parser-tests",
45-
"extract-conformance-tests": "./utility/extract-conformance-tests/extract.sh",
46-
"extract-parser-tests": "./utility/extract-parser-tests/extract.sh",
4745
"prepare": "npm run generate-proto && npm run generate-parser && npm run bundle",
4846
"lint": "prettier . --check",
4947
"format": "prettier . --write",
@@ -72,6 +70,6 @@
7270
},
7371
"utility": {
7472
"celSpec": "https://github.com/google/cel-spec/archive/373994d7e20e582fce56767b01ac5039524cddab.tar.gz",
75-
"celGo": "https://github.com/google/cel-go/archive/8ad600b649be1b9ef5a003e8c5632d89b9aaf790.tar.gz"
73+
"celGo": "https://github.com/google/cel-go/archive/aacca17884923e4ec06489321f22cd7bd4ce7226.tar.gz"
7674
}
7775
}

test/conformance.test.ts

+15-70
Original file line numberDiff line numberDiff line change
@@ -4,81 +4,26 @@ import { parse } from "../index.ts";
44
import { fromJson } from "@bufbuild/protobuf";
55
import { ExprSchema } from "../external/cel/expr/syntax_pb.ts";
66
import type { Expr, Expr_Call } from "../external/cel/expr/syntax_pb.ts";
7+
import { toDebugString, KindAdorner } from "../utility/debug/to-debug-string.ts";
78

8-
const files = JSON.parse(
9+
const tests = JSON.parse(
910
fs.readFileSync(`${__dirname}/data/conformance.json`, "utf8"),
1011
);
1112

1213
const skip: string[] = [];
1314

14-
for (const f of files) {
15-
if (f.sections === null) {
16-
continue;
17-
}
18-
describe(f.name, () => {
19-
for (const s of f.sections) {
20-
describe(s.name, () => {
21-
for (const t of s.tests) {
22-
const func = () => {
23-
const actual = parse(t.expression);
24-
const expected = fromJson(ExprSchema, t.result.expr);
25-
normalizeForTest(actual);
26-
normalizeForTest(expected);
27-
expect(actual).toStrictEqual(expected);
28-
};
29-
30-
if (skip.includes(`${f.name}.${s.name}.${t.name}`)) {
31-
test.skip(t.name, func);
32-
} else {
33-
test(t.name, func);
34-
}
35-
}
36-
});
15+
for (const t of tests) {
16+
if (t.ast !== undefined) {
17+
const func = () => {
18+
const actual = toDebugString(parse(t.expr), KindAdorner.singleton);
19+
const expected = t.ast;
20+
expect(actual).toStrictEqual(expected);
21+
};
22+
23+
if (skip.includes(t.expr)) {
24+
test.skip(t.expr, func);
25+
} else {
26+
test(t.expr, func);
3727
}
38-
});
39-
}
40-
41-
function normalizeForTest(expr: Expr | undefined) {
42-
if (expr === undefined) {
43-
return;
44-
}
45-
expr.id = 0n;
46-
switch (expr.exprKind.case) {
47-
case "callExpr":
48-
normalizeForTest(expr.exprKind.value.target);
49-
for (const arg of expr.exprKind.value.args) {
50-
normalizeForTest(arg);
51-
}
52-
break;
53-
case "listExpr":
54-
for (const elem of expr.exprKind.value.elements) {
55-
normalizeForTest(elem);
56-
}
57-
break;
58-
case "structExpr":
59-
for (const elem of expr.exprKind.value.entries) {
60-
switch (elem.keyKind.case) {
61-
case "mapKey":
62-
normalizeForTest(elem.keyKind.value);
63-
break;
64-
default:
65-
break;
66-
}
67-
normalizeForTest(elem.value);
68-
elem.id = 0n;
69-
}
70-
break;
71-
case "comprehensionExpr":
72-
normalizeForTest(expr.exprKind.value.iterRange);
73-
normalizeForTest(expr.exprKind.value.accuInit);
74-
normalizeForTest(expr.exprKind.value.loopCondition);
75-
normalizeForTest(expr.exprKind.value.loopStep);
76-
normalizeForTest(expr.exprKind.value.result);
77-
break;
78-
case "selectExpr":
79-
normalizeForTest(expr.exprKind.value.operand);
80-
break;
81-
default:
82-
break;
8328
}
84-
}
29+
}

0 commit comments

Comments
 (0)