1
+ import { describe , expect , it } from "vitest" ;
2
+ import { assert } from "../../../test/utils" ;
1
3
import {
2
4
ParsedArrowExpression ,
3
5
ParsedBinaryExpression ,
@@ -6,10 +8,9 @@ import {
6
8
ParsedNilExpression ,
7
9
ParsedObjectDefinition ,
8
10
ParsedRelationRefExpression ,
11
+ ParsedUseFlag ,
9
12
parseSchema ,
10
13
} from "./dsl" ;
11
- import { assert } from "../../../test/utils" ;
12
- import { describe , it , expect } from "vitest" ;
13
14
14
15
describe ( "parsing" , ( ) => {
15
16
it ( "parses empty schema" , ( ) => {
@@ -19,28 +20,54 @@ describe("parsing", () => {
19
20
expect ( parsed ?. definitions ?. length ) . toEqual ( 0 ) ;
20
21
} ) ;
21
22
23
+ it ( "parses use flag" , ( ) => {
24
+ const schema = `use expiration` ;
25
+ const parsed = parseSchema ( schema ) ;
26
+
27
+ expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
28
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedUseFlag ) . featureName ) . toEqual (
29
+ "expiration" ,
30
+ ) ;
31
+ } ) ;
32
+
33
+ it ( "parses use flag and definition" , ( ) => {
34
+ const schema = `use expiration
35
+
36
+ definition foo {}
37
+ ` ;
38
+ const parsed = parseSchema ( schema ) ;
39
+
40
+ expect ( parsed ?. definitions ?. length ) . toEqual ( 2 ) ;
41
+ } ) ;
42
+
22
43
it ( "parses empty definition" , ( ) => {
23
44
const schema = `definition foo {}` ;
24
45
const parsed = parseSchema ( schema ) ;
25
46
26
47
expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
27
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo" ) ;
48
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedObjectDefinition ) . name ) . toEqual (
49
+ "foo" ,
50
+ ) ;
28
51
} ) ;
29
52
30
53
it ( "parses empty definition with multiple path segements" , ( ) => {
31
54
const schema = `definition foo/bar/baz {}` ;
32
55
const parsed = parseSchema ( schema ) ;
33
56
34
57
expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
35
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo/bar/baz" ) ;
58
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedObjectDefinition ) . name ) . toEqual (
59
+ "foo/bar/baz" ,
60
+ ) ;
36
61
} ) ;
37
62
38
63
it ( "parses basic caveat" , ( ) => {
39
64
const schema = `caveat foo (someParam string, anotherParam int) { someParam == 42 }` ;
40
65
const parsed = parseSchema ( schema ) ;
41
66
42
67
expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
43
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo" ) ;
68
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedCaveatDefinition ) . name ) . toEqual (
69
+ "foo" ,
70
+ ) ;
44
71
45
72
const definition = parsed ?. definitions [ 0 ] as ParsedCaveatDefinition ;
46
73
expect ( definition . parameters . map ( ( p ) => p . name ) ) . toEqual ( [
@@ -56,8 +83,9 @@ describe("parsing", () => {
56
83
const parsed = parseSchema ( schema ) ;
57
84
58
85
expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
59
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo" ) ;
60
-
86
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedCaveatDefinition ) . name ) . toEqual (
87
+ "foo" ,
88
+ ) ;
61
89
const definition = parsed ?. definitions [ 0 ] as ParsedCaveatDefinition ;
62
90
expect ( definition . parameters . map ( ( p ) => p . name ) ) . toEqual ( [
63
91
"someParam" ,
@@ -70,7 +98,9 @@ describe("parsing", () => {
70
98
const parsed = parseSchema ( schema ) ;
71
99
72
100
expect ( parsed ?. definitions ?. length ) . toEqual ( 1 ) ;
73
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo/bar" ) ;
101
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedObjectDefinition ) . name ) . toEqual (
102
+ "foo/bar" ,
103
+ ) ;
74
104
} ) ;
75
105
76
106
it ( "parses multiple definitions" , ( ) => {
@@ -80,8 +110,37 @@ describe("parsing", () => {
80
110
const parsed = parseSchema ( schema ) ;
81
111
82
112
expect ( parsed ?. definitions ?. length ) . toEqual ( 2 ) ;
83
- expect ( parsed ?. definitions [ 0 ] . name ) . toEqual ( "foo" ) ;
84
- expect ( parsed ?. definitions [ 1 ] . name ) . toEqual ( "bar" ) ;
113
+
114
+ expect ( ( parsed ?. definitions [ 0 ] as ParsedCaveatDefinition ) . name ) . toEqual (
115
+ "foo" ,
116
+ ) ;
117
+ expect ( ( parsed ?. definitions [ 1 ] as ParsedCaveatDefinition ) . name ) . toEqual (
118
+ "bar" ,
119
+ ) ;
120
+ } ) ;
121
+
122
+ it ( "parses relation with expiration" , ( ) => {
123
+ const schema = `
124
+ use expiration
125
+
126
+ definition foo {
127
+ relation viewer: user with expiration
128
+ }` ;
129
+ const parsed = parseSchema ( schema ) ;
130
+
131
+ expect ( parsed ?. definitions ?. length ) . toEqual ( 2 ) ;
132
+ } ) ;
133
+
134
+ it ( "parses relation with caveat and expiration" , ( ) => {
135
+ const schema = `
136
+ use expiration
137
+
138
+ definition foo {
139
+ relation viewer: user with somecaveat and expiration
140
+ }` ;
141
+ const parsed = parseSchema ( schema ) ;
142
+
143
+ expect ( parsed ?. definitions ?. length ) . toEqual ( 2 ) ;
85
144
} ) ;
86
145
87
146
it ( "parses definition with relation" , ( ) => {
@@ -356,7 +415,8 @@ describe("parsing", () => {
356
415
} ) ;
357
416
358
417
it ( "full" , ( ) => {
359
- const schema = `definition user {}
418
+ const schema = `use expiration
419
+ definition user {}
360
420
361
421
caveat somecaveat(somecondition int) {
362
422
somecondition == 42
@@ -367,14 +427,14 @@ describe("parsing", () => {
367
427
*/
368
428
definition document {
369
429
relation writer: user
370
- relation reader: user | user with somecaveat
430
+ relation reader: user | user with somecaveat | user with expiration | user with somecaveat and expiration
371
431
372
432
permission writer = writer
373
433
permission read = reader + writer // has both
374
434
}` ;
375
435
376
436
const parsed = parseSchema ( schema ) ;
377
- expect ( parsed ?. definitions ?. length ) . toEqual ( 3 ) ;
437
+ expect ( parsed ?. definitions ?. length ) . toEqual ( 4 ) ;
378
438
} ) ;
379
439
380
440
it ( "full with wildcard" , ( ) => {
@@ -394,7 +454,7 @@ describe("parsing", () => {
394
454
const parsed = parseSchema ( schema ) ;
395
455
expect ( parsed ?. definitions ?. length ) . toEqual ( 2 ) ;
396
456
const documentDef = parsed ?. definitions . find (
397
- ( def ) => def . name === "document" ,
457
+ ( def ) => ( def as ParsedObjectDefinition ) . name === "document" ,
398
458
) as ParsedObjectDefinition ;
399
459
expect ( documentDef ?. relations . length ) . toEqual ( 2 ) ;
400
460
expect ( documentDef ?. permissions . length ) . toEqual ( 2 ) ;
0 commit comments