-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathschema.test.ts
821 lines (780 loc) · 25.3 KB
/
schema.test.ts
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
import assert from 'node:assert';
import * as graphql from 'graphql/language/index.js';
import prettier from 'prettier';
import { describe, expect, test } from 'vitest';
import Schema from '../schema.js';
import SchemaCodeGenerator from './schema.js';
import { Class, Method, NamedType, NullableType, Param, StaticMethod } from './typescript.js';
const formatTS = async (code: string) =>
await prettier.format(code, { parser: 'typescript', semi: false });
const createSchemaCodeGen = (schema: string) =>
new SchemaCodeGenerator(new Schema(schema, graphql.parse(schema), ''));
const testEntity = async (generatedTypes: any[], expectedEntity: any) => {
const entity = generatedTypes.find(type => type.name === expectedEntity.name);
expect(entity instanceof Class).toBe(true);
expect(entity.extends).toBe('Entity');
expect(entity.export).toBe(true);
const { members, methods } = entity;
expect(members).toStrictEqual(expectedEntity.members);
for (const expectedMethod of expectedEntity.methods) {
const method = methods.find((method: any) => method.name === expectedMethod.name);
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
expectedMethod.static
? expect(method instanceof StaticMethod).toBe(true)
: expect(method instanceof Method).toBe(true);
expect(method.params).toStrictEqual(expectedMethod.params);
expect(method.returnType).toStrictEqual(expectedMethod.returnType);
expect(await formatTS(method.body)).toBe(await formatTS(expectedMethod.body));
}
expect(methods.length).toBe(expectedEntity.methods.length);
};
describe('Schema code generator', { concurrent: true }, () => {
test('Should generate nothing for non entity types', () => {
const codegen = createSchemaCodeGen(`
type Foo {
foobar: Int
}
type Bar {
barfoo: Int
}
`);
expect(codegen.generateTypes().length).toBe(0);
});
describe('Should generate correct classes for each entity', () => {
const codegen = createSchemaCodeGen(`
# just to be sure nothing will be generated from non-entity types alongside regular ones
type Foo {
foobar: Int
}
type Account @entity {
id: ID!
# two non primitive types
description: String
name: String!
# two primitive types (i32)
age: Int
count: Int!
isActive: Boolean
# reserved word
yield: Int!
# derivedFrom
wallets: [Wallet!] @derivedFrom(field: "account")
# New scalars
int8: Int8!
timestamp: Timestamp!
}
type Wallet @entity {
id: ID!
amount: BigInt!
account: Account!
}
`);
const generatedTypes = codegen.generateTypes();
test('Foo is NOT an entity', () => {
const foo = generatedTypes.find((type: any) => type.name === 'Foo');
expect(foo).toBe(undefined);
// Account and Wallet
expect(generatedTypes.length).toBe(2);
});
test('Account is an entity with the correct methods', async () => {
await testEntity(generatedTypes, {
name: 'Account',
members: [],
methods: [
{
name: 'constructor',
params: [new Param('id', new NamedType('string'))],
returnType: undefined,
body: `
super()
this.set('id', Value.fromString(id))
`,
},
{
name: 'save',
params: [],
returnType: new NamedType('void'),
body: `
let id = this.get('id')
assert(id != null, 'Cannot save Account entity without an ID')
if (id) {
assert(
id.kind == ValueKind.STRING,
\`Entities of type Account must have an ID of type String but the id '\${id.displayData()}' is of type \${id.displayKind()}\`)
store.set('Account', id.toString(), this)
}
`,
},
{
name: 'loadInBlock',
static: true,
params: [new Param('id', new NamedType('string'))],
returnType: new NullableType(new NamedType('Account')),
body: `
return changetype<Account | null>(store.get_in_block('Account', id))
`,
},
{
name: 'load',
static: true,
params: [new Param('id', new NamedType('string'))],
returnType: new NullableType(new NamedType('Account')),
body: `
return changetype<Account | null>(store.get('Account', id))
`,
},
{
name: 'get id',
params: [],
returnType: new NamedType('string'),
body: `let value = this.get('id')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toString()
}
`,
},
{
name: 'set id',
params: [new Param('value', new NamedType('string'))],
returnType: undefined,
body: `
this.set('id', Value.fromString(value))
`,
},
{
name: 'get description',
params: [],
returnType: new NullableType(new NamedType('string')),
body: `
let value = this.get('description')
if (!value || value.kind == ValueKind.NULL) {
return null
} else {
return value.toString()
}
`,
},
{
name: 'set description',
params: [new Param('value', new NullableType(new NamedType('string')))],
returnType: undefined,
body: `
if (!value) {
this.unset('description')
} else {
this.set('description', Value.fromString(<string>value))
}
`,
},
{
name: 'get name',
params: [],
returnType: new NamedType('string'),
body: `let value = this.get('name')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toString()
}
`,
},
{
name: 'set name',
params: [new Param('value', new NamedType('string'))],
returnType: undefined,
body: `
this.set('name', Value.fromString(value))
`,
},
{
name: 'get age',
params: [],
returnType: new NamedType('i32'),
body: `let value = this.get('age')
if (!value || value.kind == ValueKind.NULL) {
return 0
} else {
return value.toI32()
}
`,
},
{
name: 'set age',
params: [new Param('value', new NamedType('i32'))],
returnType: undefined,
body: `
this.set('age', Value.fromI32(value))
`,
},
{
name: 'get count',
params: [],
returnType: new NamedType('i32'),
body: `let value = this.get('count')
if (!value || value.kind == ValueKind.NULL) {
return 0
} else {
return value.toI32()
}
`,
},
{
name: 'set count',
params: [new Param('value', new NamedType('i32'))],
returnType: undefined,
body: `
this.set('count', Value.fromI32(value))
`,
},
{
name: 'get yield_',
params: [],
returnType: new NamedType('i32'),
body: `let value = this.get('yield')
if (!value || value.kind == ValueKind.NULL) {
return 0
} else {
return value.toI32()
}
`,
},
{
name: 'set yield_',
params: [new Param('value', new NamedType('i32'))],
returnType: undefined,
body: `
this.set('yield', Value.fromI32(value))
`,
},
{
name: 'get isActive',
params: [],
returnType: new NamedType('boolean'),
body: `let value = this.get('isActive')
if (!value || value.kind == ValueKind.NULL) {
return false
} else {
return value.toBoolean()
}
`,
},
{
name: 'set isActive',
params: [new Param('value', new NamedType('boolean'))],
returnType: undefined,
body: `
this.set('isActive', Value.fromBoolean(value))
`,
},
{
name: 'get int8',
params: [],
returnType: new NamedType('i64'),
body: `let value = this.get('int8')
if (!value || value.kind == ValueKind.NULL) {
return 0
} else {
return value.toI64()
}
`,
},
{
name: 'set int8',
params: [new Param('value', new NamedType('i64'))],
returnType: undefined,
body: `
this.set('int8', Value.fromI64(value))
`,
},
{
name: 'get timestamp',
params: [],
returnType: new NamedType('i64'),
body: `let value = this.get('timestamp')
if (!value || value.kind == ValueKind.NULL) {
return 0
} else {
return value.toTimestamp()
}
`,
},
{
name: 'set timestamp',
params: [new Param('value', new NamedType('i64'))],
returnType: undefined,
body: `
this.set('timestamp', Value.fromTimestamp(value))
`,
},
{
name: 'get wallets',
params: [],
returnType: new NamedType('WalletLoader'),
body: `
return new WalletLoader("Account", this.get('id')!.toString(), "wallets")
`,
},
],
});
});
test('Wallet is an entity with the correct methods', async () => {
await testEntity(generatedTypes, {
name: 'Wallet',
members: [],
methods: [
{
name: 'constructor',
params: [new Param('id', new NamedType('string'))],
returnType: undefined,
body: `
super()
this.set('id', Value.fromString(id))
`,
},
{
name: 'save',
params: [],
returnType: new NamedType('void'),
body: `
let id = this.get('id')
assert(id != null, 'Cannot save Wallet entity without an ID')
if (id) {
assert(
id.kind == ValueKind.STRING,
\`Entities of type Wallet must have an ID of type String but the id '\${id.displayData()}' is of type \${id.displayKind()}\`)
store.set('Wallet', id.toString(), this)
}
`,
},
{
name: 'loadInBlock',
static: true,
params: [new Param('id', new NamedType('string'))],
returnType: new NullableType(new NamedType('Wallet')),
body: `
return changetype<Wallet | null>(store.get_in_block('Wallet', id))
`,
},
{
name: 'load',
static: true,
params: [new Param('id', new NamedType('string'))],
returnType: new NullableType(new NamedType('Wallet')),
body: `
return changetype<Wallet | null>(store.get('Wallet', id))
`,
},
{
name: 'get id',
params: [],
returnType: new NamedType('string'),
body: `let value = this.get('id')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toString()
}
`,
},
{
name: 'set id',
params: [new Param('value', new NamedType('string'))],
returnType: undefined,
body: `
this.set('id', Value.fromString(value))
`,
},
{
name: 'get amount',
params: [],
returnType: new NamedType('BigInt'),
body: `let value = this.get('amount')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toBigInt()
}
`,
},
{
name: 'set amount',
params: [new Param('value', new NamedType('BigInt'))],
returnType: undefined,
body: `
this.set('amount', Value.fromBigInt(value))
`,
},
{
name: 'get account',
params: [],
returnType: new NamedType('string'),
body: `let value = this.get('account')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toString()
}
`,
},
{
name: 'set account',
params: [new Param('value', new NamedType('string'))],
returnType: undefined,
body: `
this.set('account', Value.fromString(value))
`,
},
],
});
});
});
test('Should handle references with Bytes id types', async () => {
const codegen = createSchemaCodeGen(`
interface Employee {
id: Bytes!
name: String!
}
type Worker implements Employee @entity {
id: Bytes!
name: String!
tasks: [Task!]
}
type Task @entity {
id: Bytes!
employee: Employee!
workers: [Worker!] @derivedFrom(field: "tasks")
worker: Worker!
}
`);
const generatedTypes = codegen.generateTypes();
await testEntity(generatedTypes, {
name: 'Task',
members: [],
methods: [
{
name: 'constructor',
params: [new Param('id', new NamedType('Bytes'))],
returnType: undefined,
body: "\n super()\n this.set('id', Value.fromBytes(id))\n ",
},
{
name: 'save',
params: [],
returnType: new NamedType('void'),
body:
'\n' +
" let id = this.get('id')\n" +
' assert(id != null,\n' +
" 'Cannot save Task entity without an ID')\n" +
' if (id) {\n' +
' assert(id.kind == ValueKind.BYTES,\n' +
" `Entities of type Task must have an ID of type Bytes but the id '${id.displayData()}' is of type ${id.displayKind()}`)\n" +
" store.set('Task', id.toBytes().toHexString(), this)\n" +
' }',
},
{
name: 'loadInBlock',
static: true,
params: [new Param('id', new NamedType('Bytes'))],
returnType: new NullableType(new NamedType('Task')),
body:
'\n' +
" return changetype<Task | null>(store.get_in_block('Task', id.toHexString()))\n" +
' ',
},
{
name: 'load',
static: true,
params: [new Param('id', new NamedType('Bytes'))],
returnType: new NullableType(new NamedType('Task')),
body:
'\n' +
" return changetype<Task | null>(store.get('Task', id.toHexString()))\n" +
' ',
},
{
name: 'get id',
params: [],
returnType: new NamedType('Bytes'),
body: `let value = this.get("id")
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toBytes()
}`,
},
{
name: 'set id',
params: [new Param('value', new NamedType('Bytes'))],
returnType: undefined,
body: "\n this.set('id', Value.fromBytes(value))\n ",
},
{
name: 'get employee',
params: [],
returnType: new NamedType('Bytes'),
body: `let value = this.get('employee')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toBytes()
}`,
},
{
name: 'set employee',
params: [new Param('value', new NamedType('Bytes'))],
returnType: undefined,
body: "\n this.set('employee', Value.fromBytes(value))\n ",
},
{
name: 'get worker',
params: [],
returnType: new NamedType('Bytes'),
body: `let value = this.get('worker')
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toBytes()
}`,
},
{
name: 'set worker',
params: [new Param('value', new NamedType('Bytes'))],
returnType: undefined,
body: "\n this.set('worker', Value.fromBytes(value))\n ",
},
{
name: 'get workers',
params: [],
returnType: new NamedType('WorkerLoader'),
body: "\n return new WorkerLoader('Task', this.get('id')!.toBytes().toHexString(), 'workers')\n ",
},
],
});
});
test('Should handle references with Int8 id types', async () => {
const codegen = createSchemaCodeGen(`
interface Employee {
id: Int8!
name: String!
}
type Worker implements Employee @entity {
id: Int8!
name: String!
tasks: [Task!]
}
type Task @entity {
id: Int8!
employee: Employee!
workers: [Worker!] @derivedFrom(field: "tasks")
worker: Worker!
}
`);
const generatedTypes = codegen.generateTypes();
await testEntity(generatedTypes, {
name: 'Task',
members: [],
methods: [
{
name: 'constructor',
params: [new Param('id', new NamedType('Int8'))],
returnType: undefined,
body: "\n super()\n this.set('id', Value.fromI64(id))\n ",
},
{
name: 'save',
params: [],
returnType: new NamedType('void'),
body:
'\n' +
" let id = this.get('id')\n" +
' assert(id != null,\n' +
" 'Cannot save Task entity without an ID')\n" +
' if (id) {\n' +
' assert(id.kind == ValueKind.INT8,\n' +
" `Entities of type Task must have an ID of type Int8 but the id '${id.displayData()}' is of type ${id.displayKind()}`)\n" +
" store.set('Task', id.toI64().toString(), this)\n" +
' }',
},
{
name: 'loadInBlock',
static: true,
params: [new Param('id', new NamedType('Int8'))],
returnType: new NullableType(new NamedType('Task')),
body:
'\n' +
" return changetype<Task | null>(store.get_in_block('Task', id.toString()))\n" +
' ',
},
{
name: 'load',
static: true,
params: [new Param('id', new NamedType('Int8'))],
returnType: new NullableType(new NamedType('Task')),
body:
'\n' +
" return changetype<Task | null>(store.get('Task', id.toString()))\n" +
' ',
},
{
name: 'get id',
params: [],
returnType: new NamedType('i64'),
body: `let value = this.get("id")
if (!value || value.kind == ValueKind.NULL) {
return 0;
} else {
return value.toI64()
}`,
},
{
name: 'set id',
params: [new Param('value', new NamedType('i64'))],
returnType: undefined,
body: "\n this.set('id', Value.fromI64(value))\n ",
},
{
name: 'get employee',
params: [],
returnType: new NamedType('i64'),
body: `let value = this.get('employee')
if (!value || value.kind == ValueKind.NULL) {
return 0;
} else {
return value.toI64()
}`,
},
{
name: 'set employee',
params: [new Param('value', new NamedType('i64'))],
returnType: undefined,
body: "\n this.set('employee', Value.fromI64(value))\n ",
},
{
name: 'get worker',
params: [],
returnType: new NamedType('i64'),
body: `let value = this.get('worker')
if (!value || value.kind == ValueKind.NULL) {
return 0;
} else {
return value.toI64()
}`,
},
{
name: 'set worker',
params: [new Param('value', new NamedType('i64'))],
returnType: undefined,
body: "\n this.set('worker', Value.fromI64(value))\n ",
},
{
name: 'get workers',
params: [],
returnType: new NamedType('WorkerLoader'),
body: "\n return new WorkerLoader('Task', this.get('id')!.toString(), 'workers')\n ",
},
],
});
});
test('get related method for WithBytes entity', async () => {
const codegen = createSchemaCodeGen(`
type WithBytes @entity {
id: Bytes!
related: [RelatedBytes!]! @derivedFrom(field: "related")
}
type RelatedBytes @entity {
id: ID!
related: WithBytes!
}
`);
const generatedTypes = codegen.generateTypes();
await testEntity(generatedTypes, {
name: 'WithBytes',
members: [],
methods: [
{
name: 'constructor',
params: [new Param('id', new NamedType('Bytes'))],
returnType: undefined,
body: `
super()
this.set('id', Value.fromBytes(id));`,
},
{
name: 'save',
params: [],
returnType: new NamedType('void'),
body: `
let id = this.get('id');
assert(id != null, 'Cannot save WithBytes entity without an ID');
if (id) {
assert(id.kind == ValueKind.BYTES, \`Entities of type WithBytes must have an ID of type Bytes but the id '\${id.displayData()}' is of type \${id.displayKind()}\`);
store.set('WithBytes', id.toBytes().toHexString(), this);
}
`,
},
{
name: 'load',
static: true,
params: [new Param('id', new NamedType('Bytes'))],
returnType: new NullableType(new NamedType('WithBytes')),
body: `return changetype<WithBytes | null>(store.get('WithBytes', id.toHexString()));`,
},
{
name: 'loadInBlock',
static: true,
params: [new Param('id', new NamedType('Bytes'))],
returnType: new NullableType(new NamedType('WithBytes')),
body: `return changetype<WithBytes | null>(store.get_in_block('WithBytes', id.toHexString()));`,
},
{
name: 'get id',
params: [],
returnType: new NamedType('Bytes'),
body: `let value = this.get("id")
if (!value || value.kind == ValueKind.NULL) {
throw new Error("Cannot return null for a required field.")
} else {
return value.toBytes()
}
`,
},
{
name: 'set id',
params: [new Param('value', new NamedType('Bytes'))],
returnType: undefined,
body: `this.set('id', Value.fromBytes(value));`,
},
{
name: 'get related',
params: [],
returnType: new NamedType('RelatedBytesLoader'),
body: `return new RelatedBytesLoader('WithBytes', this.get('id')!.toBytes().toHexString(), 'related');`,
},
// Add any additional getters and setters for other fields if necessary
],
});
});
test('no derived loader for interface', () => {
const codegen = createSchemaCodeGen(`
interface IExample {
id: ID!
main: Main!
num: Int!
}
type Example1 implements IExample @entity {
id: ID!
main: Main!
num: Int!
}
type Main @entity {
id: ID!
examples: [IExample!]! @derivedFrom(field: "main")
}
`);
const generateDerivedLoaders = codegen.generateDerivedLoaders().filter(Boolean);
assert(generateDerivedLoaders.length === 0);
});
});