-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathverify_test.dart
1018 lines (990 loc) · 34.7 KB
/
verify_test.dart
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
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:kernel/ast.dart';
import 'package:kernel/target/targets.dart';
import 'package:kernel/text/ast_to_text.dart';
import 'package:kernel/verifier.dart';
import 'package:test/test.dart';
const int dummyFileOffset = 4312;
String errorPrefix =
'Target=none, VerificationStage.afterModularTransformations: ';
/// Checks that the verifier correctly find errors in invalid components.
///
/// The frontend should never generate invalid components, so we have to test
/// these by manually constructing invalid ASTs.
///
/// We mostly test negative cases here, as we get plenty of positive cases by
/// compiling the Dart test suite with the verifier enabled.
void main() {
positiveTest(
'Test harness has no errors',
(TestHarness test) {
test.addNode(NullLiteral());
},
);
negative1Test(
'VariableGet out of scope',
(TestHarness test) {
VariableDeclaration node = test.makeVariable();
test.addNode(VariableGet(node));
return node;
},
(Node? node) => "${errorPrefix}Variable '$node' used out of scope.",
);
negative1Test(
'VariableSet out of scope',
(TestHarness test) {
VariableDeclaration variable = test.makeVariable();
test.addNode(VariableSet(variable, new NullLiteral()));
return variable;
},
(Node? node) => "${errorPrefix}Variable '$node' used out of scope.",
);
negative1Test(
'Variable block scope',
(TestHarness test) {
VariableDeclaration variable = test.makeVariable();
test.addNode(Block([
new Block([variable]),
new ReturnStatement(new VariableGet(variable))
]));
return variable;
},
(Node? node) => "${errorPrefix}Variable '$node' used out of scope.",
);
negative1Test(
'Variable let scope',
(TestHarness test) {
VariableDeclaration variable = test.makeVariable();
test.addNode(LogicalExpression(
new Let(variable, new VariableGet(variable)),
LogicalExpressionOperator.AND,
new VariableGet(variable)));
return variable;
},
(Node? node) => "${errorPrefix}Variable '$node' used out of scope.",
);
negative1Test(
'Variable redeclared',
(TestHarness test) {
VariableDeclaration variable = test.makeVariable();
test.addNode(Block([variable, variable]));
return variable;
},
(Node? node) => "${errorPrefix}Variable '$node' declared more than once.",
);
negative1Test(
'Member redeclared',
(TestHarness test) {
Field field = new Field.mutable(new Name('field'),
initializer: new NullLiteral(), fileUri: dummyUri);
test.addNode(Class(
name: 'Test',
supertype: test.objectClass.asRawSupertype,
fields: [field, field],
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return field;
},
(Node? node) =>
"${errorPrefix}Member '$node' has been declared more than once.",
);
negative1Test(
'Class redeclared',
(TestHarness test) {
Class otherClass = test.otherClass;
test.addNode(
otherClass); // Test harness also adds otherClass to component.
return test.otherClass;
},
(Node? node) => "${errorPrefix}Class '$node' declared more than once.",
);
negative1Test(
'Class type parameter redeclared',
(TestHarness test) {
TypeParameter parameter = test.makeTypeParameter();
test.addNode(Class(
name: 'Test',
supertype: test.objectClass.asRawSupertype,
typeParameters: [parameter, parameter],
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return parameter;
},
(Node? node) => "${errorPrefix}Type parameter '$node' redeclared.",
);
negative1Test(
'Member type parameter redeclared',
(TestHarness test) {
TypeParameter parameter = test.makeTypeParameter();
test.addNode(Procedure(
new Name('bar'),
ProcedureKind.Method,
new FunctionNode(new ReturnStatement(new NullLiteral()),
typeParameters: [parameter, parameter]),
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return parameter;
},
(Node? node) => "${errorPrefix}Type parameter '$node' redeclared.",
);
negative2Test(
'Type parameter out of scope',
(TestHarness test) {
TypeParameter parameter = test.makeTypeParameter();
test.addNode(ListLiteral([],
typeArgument:
new TypeParameterType(parameter, Nullability.nonNullable)));
return [parameter, null];
},
(Node? node, Node? parent) =>
"${errorPrefix}Type parameter '$node' referenced out of scope,"
" declaration is: '$parent'.",
);
negative2Test(
'Class type parameter from another class',
(TestHarness test) {
TypeParameter node = test.otherClass.typeParameters[0];
test.addNode(
TypeLiteral(new TypeParameterType(node, Nullability.nonNullable)));
return [node, test.otherClass];
},
(Node? node, Node? parent) =>
"${errorPrefix}Type parameter '$node' referenced out of scope,"
" declaration is: '$parent'.",
);
negative2Test(
'Class type parameter in static method',
(TestHarness test) {
TypeParameter node = test.classTypeParameter;
test.addNode(Procedure(
new Name('bar'),
ProcedureKind.Method,
new FunctionNode(new ReturnStatement(new TypeLiteral(
new TypeParameterType(node, Nullability.nonNullable)))),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return [node, test.enclosingClass];
},
(Node? node, Node? parent) =>
"${errorPrefix}Type parameter '$node' referenced from static context,"
" declaration is: '$parent'.",
);
negative2Test(
'Class type parameter in static field',
(TestHarness test) {
TypeParameter node = test.classTypeParameter;
test.addNode(Field.mutable(new Name('field'),
initializer: new TypeLiteral(
new TypeParameterType(node, Nullability.nonNullable)),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return [node, test.enclosingClass];
},
(Node? node, Node? parent) =>
"${errorPrefix}Type parameter '$node' referenced from static context,"
" declaration is: '$parent'.",
);
negative2Test(
'Method type parameter out of scope',
(TestHarness test) {
TypeParameter parameter = test.makeTypeParameter();
FunctionNode parent =
new FunctionNode(new EmptyStatement(), typeParameters: [parameter]);
test.addNode(Class(
name: 'Test',
supertype: test.objectClass.asRawSupertype,
procedures: [
new Procedure(new Name('generic'), ProcedureKind.Method, parent,
fileUri: dummyUri)
..fileOffset = dummyFileOffset,
new Procedure(
new Name('use'),
ProcedureKind.Method,
new FunctionNode(new ReturnStatement(new TypeLiteral(
new TypeParameterType(
parameter, Nullability.nonNullable)))),
fileUri: dummyUri)
..fileOffset = dummyFileOffset
],
fileUri: dummyUri)
..fileOffset = dummyFileOffset);
return [parameter, parent];
},
(Node? node, Node? parent) =>
"${errorPrefix}Type parameter '$node' referenced out of scope,"
" declaration is: '${(parent as TreeNode).parent}'.",
);
negative1Test(
'Interface type arity too low',
(TestHarness test) {
InterfaceType node =
new InterfaceType(test.otherClass, Nullability.nonNullable, []);
test.addNode(TypeLiteral(node));
return node;
},
(Node? node) => "${errorPrefix}Type $node provides 0 type arguments,"
" but the class declares 1 parameters.",
);
negative1Test(
'Interface type arity too high',
(TestHarness test) {
InterfaceType node = new InterfaceType(test.otherClass,
Nullability.nonNullable, [new DynamicType(), new DynamicType()]);
test.addNode(TypeLiteral(node));
return node;
},
(Node? node) => "${errorPrefix}Type $node provides 2 type arguments,"
" but the class declares 1 parameters.",
);
negative1Test(
'Dangling interface type',
(TestHarness test) {
Class orphan = new Class(name: 'Class', fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(
new TypeLiteral(new InterfaceType(orphan, Nullability.nonNullable)));
return orphan;
},
(Node? node) =>
"${errorPrefix}Dangling reference to '$node', parent is: 'null'.",
);
negative1Test(
'Dangling field get',
(TestHarness test) {
Field orphan = new Field.mutable(new Name('foo'), fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(new StaticGet(orphan));
return orphan;
},
(Node? node) =>
"${errorPrefix}Dangling reference to '$node', parent is: 'null'.",
);
simpleNegativeTest(
'Missing block parent pointer',
"${errorPrefix}Incorrect parent pointer on ReturnStatement(return;):"
""" expected Block({
return;
}), but found: null.""",
(TestHarness test) {
var block = new Block([]);
block.statements.add(new ReturnStatement());
test.addNode(block);
},
);
simpleNegativeTest(
'Missing function parent pointer',
"${errorPrefix}Incorrect parent pointer on FunctionNode():"
" expected TestClass.bar, but found: null.",
(TestHarness test) {
var procedure = new Procedure(
new Name('bar'), ProcedureKind.Method, dummyFunctionNode,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
procedure.function = new FunctionNode(new EmptyStatement());
test.addNode(procedure);
},
);
positiveTest(
'Correct StaticInvocation',
(TestHarness test) {
var method = new Procedure(
new Name('foo'),
ProcedureKind.Method,
new FunctionNode(new EmptyStatement(),
positionalParameters: [new VariableDeclaration('p')]),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addProcedure(method);
test.addNode(
StaticInvocation(method, new Arguments([new NullLiteral()])));
},
);
negative1Test(
'StaticInvocation with too many parameters',
(TestHarness test) {
var method = new Procedure(new Name('bar'), ProcedureKind.Method,
new FunctionNode(new EmptyStatement()),
isStatic: true, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addProcedure(method);
test.addNode(
StaticInvocation(method, new Arguments([new NullLiteral()])));
return method;
},
(Node? node) =>
"${errorPrefix}StaticInvocation with incompatible arguments for"
" '$node'.",
);
negative1Test(
'StaticInvocation with too few parameters',
(TestHarness test) {
var method = new Procedure(
new Name('bar'),
ProcedureKind.Method,
new FunctionNode(new EmptyStatement(),
positionalParameters: [new VariableDeclaration('p')]),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addProcedure(method);
test.addNode(StaticInvocation(method, new Arguments.empty()));
return method;
},
(Node? node) =>
"${errorPrefix}StaticInvocation with incompatible arguments for "
"'$node'.",
);
negative1Test(
'StaticInvocation with unmatched named parameter',
(TestHarness test) {
var method = new Procedure(new Name('bar'), ProcedureKind.Method,
new FunctionNode(new EmptyStatement()),
isStatic: true, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addProcedure(method);
test.addNode(StaticInvocation(
method,
new Arguments([],
named: [new NamedExpression('p', new NullLiteral())])));
return method;
},
(Node? node) =>
"${errorPrefix}StaticInvocation with incompatible arguments for"
" '$node'.",
);
negative1Test(
'StaticInvocation with missing type argument',
(TestHarness test) {
Procedure method = new Procedure(
new Name('bar'),
ProcedureKind.Method,
new FunctionNode(new EmptyStatement(),
typeParameters: [test.makeTypeParameter()]),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addProcedure(method);
test.addNode(StaticInvocation(method, new Arguments.empty()));
return method;
},
(Node? node) =>
"${errorPrefix}StaticInvocation with wrong number of type arguments for"
" '$node'.",
);
negative1Test(
'ConstructorInvocation with missing type argument',
(TestHarness test) {
var constructor = new Constructor(new FunctionNode(new EmptyStatement()),
name: new Name('foo'), fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingClass.addConstructor(constructor);
test.addNode(ConstructorInvocation(constructor, new Arguments.empty()));
return constructor;
},
(Node? node) =>
"${errorPrefix}ConstructorInvocation with wrong number of type "
"arguments for '$node'.",
);
positiveTest(
'Valid typedef Foo = `(C) => void`',
(TestHarness test) {
var typedef_ = new Typedef(
'Foo',
new FunctionType(
[test.otherRawType], const VoidType(), Nullability.nonNullable),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(typedef_);
},
);
positiveTest(
'Valid typedef Foo = C<dynamic>',
(TestHarness test) {
var typedef_ = new Typedef(
'Foo',
new InterfaceType(
test.otherClass, Nullability.nonNullable, [const DynamicType()]),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(typedef_);
},
);
positiveTest(
'Valid typedefs Foo = Bar, Bar = C',
(TestHarness test) {
var foo = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var bar = new Typedef('Bar', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
foo.type = new TypedefType(bar, Nullability.nonNullable);
bar.type = test.otherRawType;
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
},
);
positiveTest(
'Valid typedefs Foo = C<Bar>, Bar = C',
(TestHarness test) {
var foo = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var bar = new Typedef('Bar', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
foo.type = new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypedefType(bar, Nullability.nonNullable)]);
bar.type = test.otherRawType;
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
},
);
positiveTest(
'Valid typedef type in field',
(TestHarness test) {
var typedef_ = new Typedef(
'Foo',
new FunctionType(
[test.otherRawType], const VoidType(), Nullability.nonNullable),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var field = new Field.mutable(new Name('field'),
type: new TypedefType(typedef_, Nullability.nonNullable),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(typedef_);
test.enclosingLibrary.addField(field);
},
);
negative1Test(
'Invalid typedef Foo = Foo',
(TestHarness test) {
var typedef_ = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
typedef_.type = new TypedefType(typedef_, Nullability.nonNullable);
test.addNode(typedef_);
return typedef_;
},
(Node? node) => "${errorPrefix}The typedef '$node' refers to itself",
);
negative1Test(
'Invalid typedef Foo = `(Foo) => void`',
(TestHarness test) {
var typedef_ = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
typedef_.type = new FunctionType(
[new TypedefType(typedef_, Nullability.nonNullable)],
const VoidType(),
Nullability.nonNullable);
test.addNode(typedef_);
return typedef_;
},
(Node? node) => "${errorPrefix}The typedef '$node' refers to itself",
);
negative1Test(
'Invalid typedef Foo = `() => Foo`',
(TestHarness test) {
var typedef_ = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
typedef_.type = new FunctionType([],
new TypedefType(typedef_, Nullability.nonNullable),
Nullability.nonNullable);
test.addNode(typedef_);
return typedef_;
},
(Node? node) => "${errorPrefix}The typedef '$node' refers to itself",
);
negative1Test(
'Invalid typedef Foo = C<Foo>',
(TestHarness test) {
var typedef_ = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
typedef_.type = new InterfaceType(
test.otherClass,
Nullability.nonNullable,
[new TypedefType(typedef_, Nullability.nonNullable)]);
test.addNode(typedef_);
return typedef_;
},
(Node? node) => "${errorPrefix}The typedef '$node' refers to itself",
);
negative1Test(
'Invalid typedefs Foo = Bar, Bar = Foo',
(TestHarness test) {
var foo = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var bar = new Typedef('Bar', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
foo.type = new TypedefType(bar, Nullability.nonNullable);
bar.type = new TypedefType(foo, Nullability.nonNullable);
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
return foo;
},
(Node? foo) => "${errorPrefix}The typedef '$foo' refers to itself",
);
negative1Test(
'Invalid typedefs Foo = Bar, Bar = C<Foo>',
(TestHarness test) {
var foo = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var bar = new Typedef('Bar', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
foo.type = new TypedefType(bar, Nullability.nonNullable);
bar.type = new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypedefType(foo, Nullability.nonNullable)]);
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
return foo;
},
(Node? foo) => "${errorPrefix}The typedef '$foo' refers to itself",
);
negative1Test(
'Invalid typedefs Foo = C<Bar>, Bar = C<Foo>',
(TestHarness test) {
var foo = new Typedef('Foo', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var bar = new Typedef('Bar', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
foo.type = new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypedefType(bar, Nullability.nonNullable)]);
bar.type = new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypedefType(foo, Nullability.nonNullable)]);
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
return foo;
},
(Node? foo) => "${errorPrefix}The typedef '$foo' refers to itself",
);
positiveTest(
'Valid long typedefs C20 = C19 = ... = C1 = C0 = dynamic',
(TestHarness test) {
var typedef_ = new Typedef('C0', const DynamicType(), fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(typedef_);
for (int i = 1; i < 20; ++i) {
typedef_ = new Typedef(
'C$i', new TypedefType(typedef_, Nullability.nonNullable),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(typedef_);
}
},
);
negative1Test(
'Invalid long typedefs C20 = C19 = ... = C1 = C0 = C20',
(TestHarness test) {
Typedef firstTypedef = new Typedef('C0', null, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
Typedef typedef_ = firstTypedef;
test.enclosingLibrary.addTypedef(typedef_);
var first = typedef_;
for (int i = 1; i < 20; ++i) {
typedef_ = new Typedef(
'C$i', new TypedefType(typedef_, Nullability.nonNullable),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(typedef_);
}
first.type = new TypedefType(typedef_, Nullability.nonNullable);
return firstTypedef;
},
(Node? node) => "${errorPrefix}The typedef '$node' refers to itself",
);
positiveTest(
'Valid typedef Foo<T extends C> = C<T>',
(TestHarness test) {
var param = new TypeParameter('T', test.otherRawType, test.otherRawType);
var foo = new Typedef(
'Foo',
new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(param, Nullability.nonNullable)]),
typeParameters: [param],
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(foo);
},
);
positiveTest(
'Valid typedef Foo<T extends C<T>> = C<T>',
(TestHarness test) {
var param = new TypeParameter('T', test.otherRawType, test.otherRawType);
param.bound = new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(param, Nullability.nonNullable)]);
var foo = new Typedef(
'Foo',
new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(param, Nullability.nonNullable)]),
typeParameters: [param],
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.addNode(foo);
},
);
positiveTest(
'Valid typedef Foo<T> = dynamic, Bar<T extends Foo<T>> = C<T>',
(TestHarness test) {
var fooParam = test.makeTypeParameter('T');
var foo = new Typedef('Foo', const DynamicType(),
typeParameters: [fooParam], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var barParam = new TypeParameter('T', null);
barParam.bound = new TypedefType(foo, Nullability.nonNullable,
[new TypeParameterType(barParam, Nullability.nonNullable)]);
barParam.defaultType = const DynamicType();
var bar = new Typedef(
'Bar',
new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(barParam, Nullability.nonNullable)]),
typeParameters: [barParam],
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
},
);
negative1Test(
'Invalid typedefs Foo<T extends Bar<T>>, Bar<T extends Foo<T>>',
(TestHarness test) {
var fooParam = test.makeTypeParameter('T');
var foo = new Typedef('Foo', const DynamicType(),
typeParameters: [fooParam], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var barParam = new TypeParameter('T', null);
barParam.bound = new TypedefType(foo, Nullability.nonNullable,
[new TypeParameterType(barParam, Nullability.nonNullable)]);
barParam.defaultType = const DynamicType();
var bar = new Typedef(
'Bar',
new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(barParam, Nullability.nonNullable)]),
typeParameters: [barParam],
fileUri: dummyUri);
fooParam.bound = new TypedefType(bar, Nullability.nonNullable,
[new TypeParameterType(fooParam, Nullability.nonNullable)]);
fooParam.defaultType = const DynamicType();
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addTypedef(bar);
return foo;
},
(Node? foo) => "${errorPrefix}The typedef '$foo' refers to itself",
);
negative1Test(
'Invalid typedef Foo<T extends Foo<dynamic> = C<T>',
(TestHarness test) {
var param = new TypeParameter('T', null);
var foo = new Typedef(
'Foo',
new InterfaceType(test.otherClass, Nullability.nonNullable,
[new TypeParameterType(param, Nullability.nonNullable)]),
typeParameters: [param],
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
param.bound =
new TypedefType(foo, Nullability.nonNullable, [const DynamicType()]);
param.defaultType = const DynamicType();
test.addNode(foo);
return foo;
},
(Node? foo) => "${errorPrefix}The typedef '$foo' refers to itself",
);
negative1Test(
'Typedef arity error',
(TestHarness test) {
var param = test.makeTypeParameter('T');
var foo = new Typedef('Foo', test.otherRawType,
typeParameters: [param], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var typedefType = new TypedefType(foo, Nullability.nonNullable, []);
var field = new Field.mutable(new Name('field'),
type: typedefType, isStatic: true, fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addTypedef(foo);
test.enclosingLibrary.addField(field);
return typedefType;
},
(Node? typedefType) =>
"${errorPrefix}The typedef type $typedefType provides 0 type arguments,"
" but the typedef declares 1 parameters.",
);
negative1Test(
'Dangling typedef reference',
(TestHarness test) {
var foo = new Typedef('Foo', test.otherRawType,
typeParameters: [], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
var field = new Field.mutable(new Name('field'),
type: new TypedefType(foo, Nullability.nonNullable, []),
isStatic: true,
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addField(field);
return foo;
},
(Node? foo) =>
"${errorPrefix}Dangling reference to '$foo', parent is: 'null'",
);
negative1Test(
'Unset bound typedef Foo<T> = dynamic',
(TestHarness test) {
var param = new TypeParameter('T', null);
var foo = new Typedef('Foo', const DynamicType(),
typeParameters: [param], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
param.defaultType = const DynamicType();
test.addNode(foo);
return foo;
},
(Node? foo) => "${errorPrefix}"
"Unset bound on type parameter TypeParameter(Foo.T)",
);
negative1Test(
'Unset default type typedef Foo<T> = dynamic',
(TestHarness test) {
var param = new TypeParameter('T', null);
var foo = new Typedef('Foo', const DynamicType(),
typeParameters: [param], fileUri: dummyUri)
..fileOffset = dummyFileOffset;
param.bound = const DynamicType();
test.addNode(foo);
return foo;
},
(Node? foo) => "${errorPrefix}"
"Unset default type on type parameter TypeParameter(Foo.T)",
);
negative1Test(
'Non-static top-level field',
(TestHarness test) {
var field = new Field.mutable(new Name('field'), fileUri: dummyUri)
..fileOffset = dummyFileOffset;
test.enclosingLibrary.addField(field);
return null;
},
(Node? node) =>
"${errorPrefix}The top-level field 'field' should be static",
);
positiveTest('No library file offset', (TestHarness test) {
var library = new Library(dummyUri, fileUri: dummyUri)
..parent = test.component;
test.component.libraries.add(library);
return null;
});
negative1Test(
'Class file offset',
(TestHarness test) {
var cls = new Class(name: 'Class', fileUri: dummyUri);
test.enclosingLibrary.addClass(cls);
return null;
},
(Node? node) => "${errorPrefix}'Class' has no fileOffset",
);
negative1Test(
'Extension file offset',
(TestHarness test) {
var extension = new Extension(name: 'Extension', fileUri: dummyUri);
test.enclosingLibrary.addExtension(extension);
return null;
},
(Node? node) => "${errorPrefix}'Extension' has no fileOffset",
);
negative1Test(
'Procedure file offset',
(TestHarness test) {
var method = new Procedure(
new Name('method'), ProcedureKind.Method, new FunctionNode(null),
fileUri: dummyUri);
test.enclosingClass.addProcedure(method);
return null;
},
(Node? node) => "${errorPrefix}'method' has no fileOffset",
);
negative1Test(
'Field file offset',
(TestHarness test) {
var field = new Field.mutable(new Name('field'), fileUri: dummyUri);
test.enclosingClass.addField(field);
return null;
},
(Node? node) => "${errorPrefix}'field' has no fileOffset",
);
}
void checkHasError(Target target, Component component, Matcher matcher) {
try {
verifyComponent(
target, VerificationStage.afterModularTransformations, component);
} on VerificationError catch (e) {
expect(e.details, matcher);
return;
}
fail('Failed to reject invalid component:\n${componentToString(component)}');
}
class TestHarness {
late Target target;
late Component component;
late Class objectClass;
late Library stubLibrary;
late TypeParameter classTypeParameter;
late Library enclosingLibrary;
late Class enclosingClass;
late Procedure enclosingMember;
late Class otherClass;
late InterfaceType objectRawType;
late InterfaceType enclosingRawType;
late InterfaceType otherRawType;
void addNode(TreeNode node) {
if (node is Expression) {
addExpression(node);
} else if (node is Statement) {
addStatement(node);
} else if (node is Member) {
addClassMember(node);
} else if (node is Class) {
addClass(node);
} else if (node is Typedef) {
addTypedef(node);
}
}
void addExpression(Expression node) {
addStatement(new ReturnStatement(node));
}
void addStatement(Statement node) {
var function = enclosingMember.function;
function.body = node..parent = function;
}
void addClassMember(Member node) {
if (node is Procedure) {
enclosingClass.addProcedure(node);
} else if (node is Field) {
enclosingClass.addField(node);
} else if (node is Constructor) {
enclosingClass.addConstructor(node);
} else {
throw "Unexpected class member: ${node.runtimeType}";
}
}
void addTopLevelMember(Member node) {
if (node is Procedure) {
enclosingLibrary.addProcedure(node);
} else if (node is Field) {
enclosingLibrary.addField(node);
} else {
throw "Unexpected top level member: ${node.runtimeType}";
}
}
void addClass(Class node) {
enclosingLibrary.addClass(node);
}
void addTypedef(Typedef node) {
enclosingLibrary.addTypedef(node);
}
VariableDeclaration makeVariable() =>
new VariableDeclaration(null, isSynthesized: true);
TypeParameter makeTypeParameter([String? name]) {
return new TypeParameter(name, objectRawType, const DynamicType());
}
TestHarness() {
setupComponent();
}
void setupComponent() {
target = new NoneTarget(new TargetFlags());
component = new Component();
Uri dartCoreUri = Uri.parse('dart:core');
stubLibrary = new Library(dartCoreUri, fileUri: dartCoreUri);
component.libraries.add(stubLibrary..parent = component);
stubLibrary.name = 'dart.core';
objectClass = new Class(name: 'Object', fileUri: dartCoreUri)
..fileOffset = dummyFileOffset;
objectRawType = new InterfaceType(
objectClass, Nullability.nonNullable, const <DartType>[]);
stubLibrary.addClass(objectClass);
Uri testUri = Uri.parse('file://test.dart');
enclosingLibrary = new Library(testUri, fileUri: testUri);
component.libraries.add(enclosingLibrary..parent = component);
enclosingLibrary.name = 'test_lib';
classTypeParameter = makeTypeParameter('T');
enclosingClass = new Class(
name: 'TestClass',
typeParameters: [classTypeParameter],
supertype: objectClass.asRawSupertype,
fileUri: testUri)
..fileOffset = dummyFileOffset;
enclosingRawType = new InterfaceType(enclosingClass,
Nullability.nonNullable, const <DartType>[const DynamicType()]);
enclosingLibrary.addClass(enclosingClass);
enclosingMember = new Procedure(new Name('test'), ProcedureKind.Method,
new FunctionNode(new EmptyStatement()),
fileUri: dummyUri)
..fileOffset = dummyFileOffset;
enclosingClass.addProcedure(enclosingMember);
otherClass = new Class(
name: 'OtherClass',
typeParameters: [makeTypeParameter('OtherT')],
supertype: objectClass.asRawSupertype,
fileUri: testUri)
..fileOffset = dummyFileOffset;
otherRawType = new InterfaceType(otherClass, Nullability.nonNullable,
const <DartType>[const DynamicType()]);
enclosingLibrary.addClass(otherClass);
}
}
void negative1Test(String name, Node? Function(TestHarness test) nodeProvider,
dynamic Function(Node? node) matcher) {
TestHarness testHarness = new TestHarness();
Node? node = nodeProvider(testHarness);
test(
name,
() {
dynamic matcherResult = matcher(node);
if (matcherResult is String) {
matcherResult = equals(matcherResult);
}
checkHasError(testHarness.target, testHarness.component, matcherResult);
},
);
}
void negative2Test(
String name,
List<Node?> Function(TestHarness test) nodeProvider,
dynamic Function(Node? node, Node? other) matcher) {
TestHarness testHarness = new TestHarness();
List<Node?> nodes = nodeProvider(testHarness);
if (nodes.length != 2) throw "Needs exactly 2 nodes: Node and other!";
test(
name,
() {
dynamic matcherResult = matcher(nodes[0], nodes[1]);
if (matcherResult is String) {
matcherResult = equals(matcherResult);
}
checkHasError(testHarness.target, testHarness.component, matcherResult);
},
);
}
void simpleNegativeTest(String name, dynamic matcher,
void Function(TestHarness test) makeTestCase) {
TestHarness testHarness = new TestHarness();
test(
name,
() {
makeTestCase(testHarness);
if (matcher is String) {