-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTypeCheckerTest.java
More file actions
538 lines (470 loc) · 12.6 KB
/
Copy pathTypeCheckerTest.java
File metadata and controls
538 lines (470 loc) · 12.6 KB
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
package cop5556sp18;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import cop5556sp18.Parser;
import cop5556sp18.Scanner;
import cop5556sp18.AST.ASTVisitor;
import cop5556sp18.AST.Program;
import cop5556sp18.TypeChecker.SemanticException;
public class TypeCheckerTest {
/*
* set Junit to be able to catch exceptions
*/
@Rule
public ExpectedException thrown = ExpectedException.none();
/**
* Prints objects in a way that is easy to turn on and off
*/
static final boolean doPrint = true;
private void show(Object input) {
if (doPrint) {
System.out.println(input.toString());
}
}
/**
* Scans, parses, and type checks the input string
*
* @param input
* @throws Exception
*/
void typeCheck(String input) throws Exception {
show(input);
// instantiate a Scanner and scan input
Scanner scanner = new Scanner(input).scan();
show(scanner);
// instantiate a Parser and parse input to obtain and AST
Program ast = new Parser(scanner).parse();
show(ast);
// instantiate a TypeChecker and visit the ast to perform type checking and
// decorate the AST.
ASTVisitor v = new TypeChecker();
ast.visit(v, null);
}
/**
* Simple test case with an almost empty program.
*
* @throws Exception
*/
@Test
public void emptyProg() throws Exception {
String input = "emptyProg{}";
typeCheck(input);
}
@Test
public void expression1() throws Exception {
String input = "prog {show 3+4;}";
typeCheck(input);
}
@Test
public void expression2() throws Exception {
String input = "prog {show 3.5+4;}";
typeCheck(input);
}
@Test
public void expression3() throws Exception {
String input = "prog {show 3**4;}";
typeCheck(input);
}
@Test
public void expression4() throws Exception {
String input = "prog {show 3&4;}";
typeCheck(input);
}
@Test
public void expression5() throws Exception {
String input = "prog {show 3.5/4.5;}";
typeCheck(input);
}
@Test
public void expression6() throws Exception {
String input = "prog {show 3==4;}";
typeCheck(input);
}
@Test
public void expression7() throws Exception {
String input = "prog {show 3>=4;}";
typeCheck(input);
}
@Test
public void expression8() throws Exception {
String input = "prog {show true&true;}";
typeCheck(input);
}
@Test
public void expression9() throws Exception {
String input = "prog {show true==false;}";
typeCheck(input);
}
@Test
public void expression10() throws Exception {
String input = "prog {sleep 10;}";
typeCheck(input);
}
@Test
public void expression11() throws Exception {
String input = "prog {int i; i := 0; while(i < 2){show i; i := i + 1;};}";
typeCheck(input);
}
@Test
public void expression12() throws Exception {
String input = "prog {while(false){show 2+2;};}";
typeCheck(input);
}
@Test
public void expression13() throws Exception {
String input = "prog {while(false){show 2+2;};}";
typeCheck(input);
}
@Test
public void expression14() throws Exception {
String input = "prog {show abs(5);}";
typeCheck(input);
}
@Test
public void expression15() throws Exception {
String input = "prog {show red(4);}";
typeCheck(input);
}
@Test
public void expression16() throws Exception {
String input = "prog {show atan(90.8);}";
typeCheck(input);
}
@Test
public void expression17() throws Exception {
String input = "prog {show cart_x[4.4, 3.4];}";
typeCheck(input);
}
@Test
public void expression18() throws Exception {
String input = "prog {show cart_y[4.4, 3.4];}";
typeCheck(input);
}
@Test
public void expression19() throws Exception {
String input = "prog {show polar_a[4, 3];}";
typeCheck(input);
}
@Test
public void expression20() throws Exception {
String input = "prog {show polar_r[4, 3];}";
typeCheck(input);
}
@Test
public void expression21() throws Exception {
String input = "prog {show <<2, 3, 4, 5>>;}";
typeCheck(input);
}
@Test
public void expression22() throws Exception {
String input = "prog {image a; filename b; write a to b;}";
typeCheck(input);
}
@Test
public void expression23() throws Exception {
String input = "prog {image a[2, 4]; filename b; write a to b;}";
typeCheck(input);
}
@Test
public void expression24() throws Exception {
String input = "prog {image a; input a from @ 2;}";
typeCheck(input);
}
@Test
public void expression25() throws Exception {
String input = "prog {int a; a := 2;}";
typeCheck(input);
}
@Test
public void expression26() throws Exception {
String input = "prog {image b; b[2, 3] := 5;}";
typeCheck(input);
}
@Test
public void expression27() throws Exception {
String input = "prog {image b; b[2.5, 3.5] := 5;}";
typeCheck(input);
}
@Test
public void expression28() throws Exception {
String input = "prog {image b; green(b[2.5, 3.5]) := 5;}";
typeCheck(input);
}
@Test
public void expression29() throws Exception {
String input = "prog {float a; a := 2.5;}";
typeCheck(input);
}
@Test
public void expression30() throws Exception {
String input = "prog {boolean b; boolean c; b := c;}";
typeCheck(input);
}
@Test
public void expression31() throws Exception {
String input = "prog {filename b; filename c; b := c;}";
typeCheck(input);
}
@Test
public void expression32() throws Exception {
String input = "prog {image b; image c; b := c;}";
typeCheck(input);
}
@Test
public void expression33() throws Exception {
String input = "prog {int a; a := 2==3 ? 5 : 4;}";
typeCheck(input);
}
@Test
public void expression34() throws Exception {
String input = "prog {filename a; filename b; filename c; a := 2==3 ? b : c;}";
typeCheck(input);
}
@Test
public void expression35() throws Exception {
String input = "prog {int a; a := 2==3 ? +2 : -2;}";
typeCheck(input);
}
@Test
public void expression36() throws Exception {
String input = "prog {int a; image b; a := b[2,3];}";
typeCheck(input);
}
@Test
public void expression37() throws Exception {
String input = "prog {show 3**4.5;}";
typeCheck(input);
}
@Test
public void expression2_fail() throws Exception {
String input = "prog { show true+4; }"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression3_fail() throws Exception {
String input = "prog { show true+false; }"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression4_fail() throws Exception {
String input = "prog { show 3.5%4.5; }"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression5_fail() throws Exception {
String input = "prog {sleep 3.5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression6_fail() throws Exception {
String input = "prog {if(2){show 4;};}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression7_fail() throws Exception {
String input = "prog {while(2){show 4;};}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression8_fail() throws Exception {
String input = "prog {show red(5.5);}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression9_fail() throws Exception {
String input = "prog {show log(10);}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression10_fail() throws Exception {
String input = "prog {show polar_r[4.4, 3.4];}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression11_fail() throws Exception {
String input = "prog {show cart_x[4, 3];}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression12_fail() throws Exception {
String input = "prog {show <<2.4, 3.4, 4.4, 5.4>>;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression13_fail() throws Exception {
String input = "prog {image a[2.5, 4.2]; filename b; write a to b;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression14_fail() throws Exception {
String input = "prog {int a; a := 2.5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression18_fail() throws Exception {
String input = "prog {image a; a := 2.5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression19_fail() throws Exception {
String input = "prog {float a; a := 2;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression15_fail() throws Exception {
String input = "prog {image b; b[2, 3.5] := 3;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression16_fail() throws Exception {
String input = "prog {image b; b[2, 3] := 3.5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression17_fail() throws Exception {
String input = "prog {image b; blue(b[2, 3]) := 3.5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression20_fail() throws Exception {
String input = "prog {float b; b := 2==3 ? 4 : 5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression21_fail() throws Exception {
String input = "prog {float b; b := 2 ? 4 : 5;}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
@Test
public void expression22_fail() throws Exception {
String input = "prog {int b; image c; b := c[2, 3.5];}"; //error, incompatible types in binary expression
thrown.expect(SemanticException.class);
try {
typeCheck(input);
} catch (SemanticException e) {
show(e);
throw e;
}
}
}