@@ -4,81 +4,26 @@ import { parse } from "../index.ts";
4
4
import { fromJson } from "@bufbuild/protobuf" ;
5
5
import { ExprSchema } from "../external/cel/expr/syntax_pb.ts" ;
6
6
import type { Expr , Expr_Call } from "../external/cel/expr/syntax_pb.ts" ;
7
+ import { toDebugString , KindAdorner } from "../utility/debug/to-debug-string.ts" ;
7
8
8
- const files = JSON . parse (
9
+ const tests = JSON . parse (
9
10
fs . readFileSync ( `${ __dirname } /data/conformance.json` , "utf8" ) ,
10
11
) ;
11
12
12
13
const skip : string [ ] = [ ] ;
13
14
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 ) ;
37
27
}
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 ;
83
28
}
84
- }
29
+ }
0 commit comments