-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathParserTests.java
More file actions
498 lines (406 loc) · 9.65 KB
/
ParserTests.java
File metadata and controls
498 lines (406 loc) · 9.65 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
package processing.mode.java;
import static junit.framework.Assert.assertNotNull;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import static processing.mode.java.ProcessingTestUtil.*;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Optional;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.Test;
import processing.app.Preferences;
import processing.mode.java.preproc.PreprocessorResult;
import processing.mode.java.preproc.PdePreprocessIssueException;
import processing.utils.SketchException;
public class ParserTests {
@BeforeClass
public static void init() {
ProcessingTestUtil.init();
}
@Before
public void before() {
Preferences.setBoolean("export.application.fullscreen", false);
}
static void expectRecognitionException(final String id,
final int expectedLine) {
PreprocessorResult result;
try {
preprocess(id, res(id + ".pde"));
fail("Expected to fail with on line " + expectedLine);
} catch (PdePreprocessIssueException e) {
assertNotNull(e.getIssue().getMsg());
assertEquals(expectedLine, e.getIssue().getLine());
} catch (Exception e) {
if (!e.equals(e.getCause()) && e.getCause() != null)
fail(e.getCause().toString());
else
fail(e.toString());
}
}
static void expectRunnerException(final String id) {
try {
preprocess(id, res(id + ".pde"));
fail("Expected to fail");
} catch (SketchException e) {
assertNotNull(e);
} catch (PdePreprocessIssueException e) {
assertNotNull(e.getIssue().getMsg());
} catch (Exception e) {
if (!e.equals(e.getCause()) && e.getCause() != null)
fail(e.getCause().toString());
else
fail(e.toString());
}
}
static void expectRunnerException(final String id,
final int expectedLine) {
try {
preprocess(id, res(id + ".pde"));
fail("Expected to fail with on line " + expectedLine);
} catch (SketchException e) {
assertEquals(expectedLine, e.getCodeLine());
} catch (PdePreprocessIssueException e) {
assertNotNull(e.getIssue().getMsg());
assertEquals(expectedLine, e.getIssue().getLine());
} catch (Exception e) {
if (!e.equals(e.getCause()) && e.getCause() != null)
fail(e.getCause().toString());
else
fail(e.toString());
}
}
static void expectGood(final String id) {
expectGood(id, true);
}
static void expectGood(final String id, boolean ignoreWhitespace) {
expectGood(id, ignoreWhitespace, Optional.empty());
}
static void expectGood(final String id, boolean ignoreWhitespace, Optional<String> packageName) {
try {
final String program = preprocess(id, res(id + ".pde"), packageName);
final File expectedFile = res(id + ".expected");
if (expectedFile.exists()) {
final String expected = ProcessingTestUtil.read(expectedFile);
if (ignoreWhitespace) {
String expectedStrip = expected.replace("\t", "")
.replace(" ", "")
.replace("\n", "")
.replace("\r", "");
String actualStrip = program.replace("\t", "")
.replace(" ", "")
.replace("\n", "")
.replace("\r", "");
if (!expectedStrip.equals(actualStrip)) {
System.err.println("Expected >>>>>>>");
System.err.println(expected);
System.err.println("<<<<<<< Got >>>>>>>");
System.err.println(program);
System.err.println("<<<<<<<");
assertEquals(expectedStrip, actualStrip);
}
} else {
assertEquals(expected, program);
}
} else {
System.err.println("WARN: " + id
+ " does not have an expected output file. Generating.");
final FileWriter sug = new FileWriter(res(id + ".expected"));
sug.write(ProcessingTestUtil.normalize(program));
sug.close();
}
} catch (SketchException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
@Test
public void bug4() {
expectGood("bug4");
}
@Test
public void bug5a() {
expectGood("bug5a");
}
@Test
public void bug5b() {
expectGood("bug5b");
}
@Test
public void bug6() {
expectRecognitionException("bug6", 1);
}
@Test
public void bug16() {
expectRunnerException("bug16", 3);
}
@Test
public void bug136() {
expectGood("bug136", true);
}
@Test
public void bug196() {
expectRecognitionException("bug196", 5);
}
@Test
public void bug281() {
expectGood("bug281");
}
@Test
public void bug481() {
expectGood("bug481");
}
@Test
public void bug507() {
expectRecognitionException("bug507", 5);
}
@Test
public void bug598() {
expectGood("bug598");
}
@Test
public void bug631() {
expectGood("bug631");
}
@Test
public void bug763() {
expectRunnerException("bug763", 8);
}
// The JDT doesn't seem to mind this now. Commenting out.
/*@Test
public void bug820() {
expectGood("bug820");
}*/
@Test
public void bug1064() {
expectGood("bug1064");
}
@Test
public void bug1362() {
expectGood("bug1362");
}
@Test
public void bug1390() {
expectGood("bug1390");
}
@Test
public void bug1442() {
expectGood("bug1442");
}
@Test
public void bug1511() {
expectGood("bug1511");
}
@Test
public void bug1512() {
expectGood("bug1512");
}
@Test
public void bug1514a() {
expectGood("bug1514a");
}
@Test
public void bug1514b() {
expectGood("bug1514b");
}
@Test
public void bug1515() {
expectGood("bug1515");
}
@Test
public void bug1516() {
expectGood("bug1516");
}
@Test
public void bug1517() {
expectGood("bug1517");
}
@Test
public void bug1518a() {
expectGood("bug1518a");
}
@Test
public void bug1518b() {
expectGood("bug1518b");
}
@Test
public void bug1525() {
expectGood("bug1525");
}
@Test
public void bug1532() {
expectRecognitionException("bug1532", 43);
}
@Test
public void bug1534() {
expectGood("bug1534");
}
@Test
public void bug1936() {
expectGood("bug1936");
}
@Test
public void bug315g() {
expectGood("bug315g");
}
@Test
public void bug400g() {
expectGood("bug400g", true);
}
@Test
public void bug427g() {
expectGood("bug427g");
}
@Test
public void color() {
expectGood("color", true);
}
@Test
public void annotations() {
expectGood("annotations", true);
}
@Test
public void staticannotations() {
expectGood("staticannotations", true);
}
@Test
public void generics() {
expectGood("generics", true);
}
@Test
public void lambda() {
expectGood("lambdaexample", true);
}
@Test
public void specialMethods() {
expectGood("speicalmethods", true);
}
@Test
public void specialMethodsPrivate() {
expectGood("specialmethodsprivate", true);
}
@Test
public void classInStatic() {
expectGood("classinstatic", true);
}
@Test
public void fullscreen() {
expectGood("fullscreen", true);
}
@Test
public void fullscreenArg() {
expectGood("fullscreen_arg", true);
}
@Test
public void customMain() {
expectGood("custommain", true);
}
@Test
public void charSpecial() {
expectGood("charspecial", true);
}
@Test
public void typeInference() {
expectGood("typeinference");
}
@Test
public void testPackage() {
expectGood("packageTest", true, Optional.of("test.subtest"));
}
@Test
public void testStaticPixelDensity() {
expectGood("staticpixeldensity");
}
@Test
public void testParamPixelDensity() {
expectGood("parampixeldensity");
}
@Test
public void testPdfWrite() {
expectGood("pdfwrite");
}
@Test
public void testColorReturn() {
expectGood("colorreturn");
}
@Test
public void testNoSmooth() {
expectGood("nosmooth");
}
@Test
public void testSmooth() {
expectGood("smoothnoparam");
}
@Test
public void testSmoothThis() {
expectGood("smoothnoparamthis");
}
@Test
public void testSmoothWithParam() {
expectGood("smoothparam");
}
@Test
public void testSmoothWithParamStatic() {
expectGood("smoothparamstatic");
}
@Test
public void testColorInImport() {
expectGood("colorimport");
}
@Test
public void testPGraphicsStandalone() {
expectGood("pgraphics");
}
@Test
public void testSizeThis() {
expectGood("sizethis");
}
@Test
public void testMixing() {
expectRunnerException("mixing", 6);
}
@Test
public void testSizeClass() {
expectGood("sizeclass");
}
@Test
public void testMultilineString() {
expectGood("multilinestr");
}
@Test
public void testMultilineStringClass() {
expectGood("multilinestrclass");
}
@Test
public void testMultiMultilineString() {
// TODO: Add support for fullscreen. Not through settings. In PdeParseTreeListener.java
Preferences.setBoolean("export.application.fullscreen", true);
expectGood("fullscreen_export");
}
@Test
public void testStaticClass() {
expectGood("staticclass");
}
@Test
public void testCustomRootClass() {
expectGood("customrootclass");
}
@Test
public void testExpessionSize() {
expectGood("expressionsize");
}
@Test
public void testExpessionSizeMethod() {
expectGood("expressionsizemethod");
}
@Test
public void testExpessionSizeVar() {
expectGood("expressionsizevar");
}
@Test
public void testWhitespace() {
expectGood("whitespace", false);
}
}