-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriver.java
More file actions
429 lines (339 loc) · 14.8 KB
/
Copy pathDriver.java
File metadata and controls
429 lines (339 loc) · 14.8 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
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.stream.Collectors;
/**
* Driver class.
*
* @author David Andrews
* @version 1.0
*/
public class Driver extends TestRunner {
/**
* @param args command line arguments
*/
public static void main(String[] args) {
Driver driver = new Driver();
System.exit(driver.runTests() > 0 ? 1 : 0); // have to stop potential infinite loops
}
@Test
private void testMergeSortRolls() {
SushiRoll[] input = new SushiRoll[] {new SushiRoll("Tobiko"), new SushiRoll(
"Avocado"), new SushiRoll("Unagi"), new SushiRoll("Dragon"), new SushiRoll("Maki")};
SushiRoll[] output = Restaurant.mergeSortRolls(input);
Assert.assertOrdersEqual(
new SushiRoll[] {new SushiRoll("Avocado"), new SushiRoll("Dragon"), new SushiRoll(
"Maki"), new SushiRoll("Tobiko"), new SushiRoll("Unagi")},
output, "mergeSortRolls() is not correct");
}
@Test
private void testMergeSortRollsEmpty() {
SushiRoll[] input = new SushiRoll[] {};
SushiRoll[] output = Restaurant.mergeSortRolls(input);
Assert.assertOrdersEqual(new SushiRoll[] {}, output, "mergeSortRolls() is not correct");
}
@Test
private void testMergeSortRollsOne() {
SushiRoll[] input = new SushiRoll[] {new SushiRoll("Avocado")};
SushiRoll[] output = Restaurant.mergeSortRolls(input);
Assert.assertOrdersEqual(new SushiRoll[] {new SushiRoll("Avocado")}, output,
"mergeSortRolls() is not correct");
}
@Test
private void testMergeOrders() {
SushiRoll[][] input = new SushiRoll[][] {{}, {new SushiRoll("Avocado"), new SushiRoll(
"Dragon")}, {new SushiRoll(
"Tobiko"), new SushiRoll("Unagi")}, {new SushiRoll("Maki")}, {}};
SushiRoll[] output = Restaurant.mergeOrders(input);
Assert.assertOrdersEqual(
new SushiRoll[] {new SushiRoll("Avocado"), new SushiRoll("Dragon"), new SushiRoll(
"Maki"), new SushiRoll("Tobiko"), new SushiRoll("Unagi")},
output, "mergeOrders() is not correct");
}
@Test
private void testMergeOrdersEmpty() {
SushiRoll[][] input = new SushiRoll[][] {};
SushiRoll[] output = Restaurant.mergeOrders(input);
Assert.assertOrdersEqual(new SushiRoll[] {}, output, "mergeOrders() is not correct");
}
@Test
private void testMergeOrdersOne() {
SushiRoll[][] input =
new SushiRoll[][] {{new SushiRoll("Avocado"), new SushiRoll("Dragon")}};
SushiRoll[] output = Restaurant.mergeOrders(input);
Assert.assertOrdersEqual(
new SushiRoll[] {new SushiRoll("Avocado"), new SushiRoll("Dragon")}, output,
"mergeOrders() is not correct");
}
@Test
private void testPlatesOfColor() {
SushiRoll[] input = {new SushiRoll("Avocado", Color.BLUE), new SushiRoll("Dragon",
Color.BLUE), new SushiRoll("Maki", Color.RED), new SushiRoll("Rainbow",
Color.GREEN), new SushiRoll("Unagi", Color.RED)};
SushiRoll[] output = Restaurant.platesOfColor(input, Color.RED);
Assert.assertOrdersEqual(new SushiRoll[] {new SushiRoll("Maki",
Color.RED), new SushiRoll("Unagi", Color.RED)}, output,
"platesOfColor() is not correct");
}
@Test
private void testPlatesOfColorEmpty() {
SushiRoll[] input = new SushiRoll[] {};
SushiRoll[] output = Restaurant.platesOfColor(input, Color.RED);
Assert.assertOrdersEqual(new SushiRoll[] {}, output, "platesOfColor() is not correct");
}
@Test
private void testPlatesOfColorOne() {
SushiRoll[] input = new SushiRoll[] {new SushiRoll("Avocado", Color.BLUE)};
SushiRoll[] output = Restaurant.platesOfColor(input, Color.RED);
Assert.assertOrdersEqual(new SushiRoll[] {}, output, "platesOfColor() is not correct");
}
@Test
private void testTotalPrice() {
SushiRoll[] input = {new SushiRoll("Avocado", Color.BLUE), new SushiRoll("Dragon",
Color.BLUE), new SushiRoll("Maki", Color.RED), new SushiRoll("Rainbow",
Color.GREEN), new SushiRoll("Unagi", Color.RED)};
double output = Restaurant.totalPrice(input);
Assert.assertEqual(15.0, output, "totalPrice() is not correct");
}
@Test
private void testTotalPriceEmpty() {
SushiRoll[] input = new SushiRoll[] {};
double output = Restaurant.totalPrice(input);
Assert.assertEqual(0.0, output, "totalPrice() is not correct");
}
@Test
private void testTotalPriceOne() {
SushiRoll[] input = new SushiRoll[] {new SushiRoll("Avocado", Color.BLUE)};
double output = Restaurant.totalPrice(input);
Assert.assertEqual(3.5, output, "totalPrice() is not correct");
}
@Test
private void testFlip() {
SushiRoll[] input = {new SushiRoll("Avocado"), new SushiRoll("Dragon"), new SushiRoll(
"Maki"), new SushiRoll("Tobiko"), new SushiRoll("Unagi")};
Restaurant.flip(input);
Assert.assertOrdersEqual(
new SushiRoll[] {new SushiRoll("Unagi"), new SushiRoll("Tobiko"), new SushiRoll(
"Maki"), new SushiRoll("Dragon"), new SushiRoll("Avocado")},
input, "flip() is not correct");
}
@Test
private void testFlipEmpty() {
SushiRoll[] input = new SushiRoll[] {};
Restaurant.flip(input);
Assert.assertOrdersEqual(new SushiRoll[] {}, input, "flip() is not correct");
}
@Test
private void testFlipOne() {
SushiRoll[] input = new SushiRoll[] {new SushiRoll("Avocado")};
Restaurant.flip(input);
Assert.assertOrdersEqual(new SushiRoll[] {new SushiRoll("Avocado")}, input,
"flip() is not correct");
}
}
class TestRunner {
public int runTests() {
List<Method> tests = getTests();
System.out.printf("Running %d test%s\n", tests.size(), tests.size() == 1 ? "" : "s");
long startTime = System.currentTimeMillis();
int passed = 0;
int failed = 0;
LinkedHashMap<Method, String> failures = new LinkedHashMap<>();
for (Method test : tests) {
System.out.printf("Running " + test.getName() + " ... ");
String stdout = invokeTestMethod(test, 1000);
if (stdout == null) {
System.out.println("ok");
passed++;
continue;
}
System.out.println("FAILED");
failures.put(test, stdout);
failed++;
}
System.out.println();
if (!failures.isEmpty()) {
System.out.println("Failures:");
System.out.println();
for (Method test : failures.keySet()) {
System.out.println(" ---- " + test.getName() + " ---- ");
System.out.print(failures.get(test));
System.out.println();
}
System.out.println("Failures:");
for (Method test : failures.keySet()) {
System.out.println(" " + test.getName());
}
System.out.println();
}
System.out.printf("Summary: %s. %d passed, %d failed. finished in %.2fs\n",
failed == 0 ? "ok" : "FAILED", passed, failed,
(System.currentTimeMillis() - startTime) / 1000.0);
return failed;
}
private List<Method> getTests() {
return Arrays.stream(this.getClass().getDeclaredMethods())
.filter(method -> method.isAnnotationPresent(Test.class))
.collect(Collectors.toList());
}
private String invokeTestMethod(Method method, long timeoutInMillis) {
method.setAccessible(true);
final boolean[] failed = {false};
final boolean[] timeoutOccurred = {false};
Thread testThread = new Thread(() -> {
try {
method.invoke(this);
} catch (Exception e) {
e.getCause().printStackTrace();
failed[0] = true;
}
});
String stdout = captureConsole(() -> {
testThread.start();
try {
testThread.join(timeoutInMillis);
if (testThread.isAlive()) {
testThread.interrupt();
timeoutOccurred[0] = true;
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
failed[0] = true;
}
});
if (failed[0] || timeoutOccurred[0]) {
return stdout + (timeoutOccurred[0]
? "(Did not finish within the allowed time and may contain an infinite loop)\n"
: "");
}
return null;
}
// maybe just make captureConsole() and stopCapturingConsole() methods instead? lambdas are
// annoying with scope and capturing
protected static String captureConsole(Runnable r) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
ByteArrayOutputStream err = new ByteArrayOutputStream();
PrintStream originalOut = System.out;
PrintStream originalErr = System.err;
System.setOut(new PrintStream(out));
System.setErr(new PrintStream(err));
r.run();
System.setOut(originalOut);
System.setErr(originalErr);
return out.toString() + err.toString();
}
protected static <T> Field getField(Class<T> className, String fieldName) {
try {
Field field = className.getDeclaredField(fieldName);
field.setAccessible(true);
return field;
} catch (NoSuchFieldException e) {
System.err.println("You do not have a " + fieldName + " field in Olivia!");
System.exit(1);
}
return null;
}
protected static Object getValue(Object obj, Field field) {
try {
return field.get(obj);
} catch (IllegalAccessException e) {
System.err.println("Cannot obtain access to the " + field.getName() + " field!");
System.exit(1);
}
return null;
}
protected static void setValue(Object obj, Field field, Object value) {
try {
field.set(obj, value);
} catch (IllegalAccessException e) {
System.err.println("Cannot obtain access to the " + field.getName() + " field!");
System.exit(1);
}
}
protected static Object getValue(Object obj, String fieldName) {
return getValue(obj, getField(obj.getClass(), fieldName));
}
protected static void setValue(Object obj, String fieldName, Object value) {
setValue(obj, getField(obj.getClass(), fieldName), value);
}
protected static Object getStaticValue(Field field) {
try {
return field.get(null);
} catch (IllegalAccessException e) {
System.err.println("Cannot obtain access to the " + field.getName() + " field!");
System.exit(1);
}
return null;
}
protected static void setStaticValue(Field field, Object value) {
try {
field.set(null, value);
} catch (IllegalAccessException e) {
System.err.println("Cannot obtain access to the " + field.getName() + " field!");
System.exit(1);
}
}
protected static Object getStaticValue(Class<?> className, String fieldName) {
return getStaticValue(getField(className, fieldName));
}
protected static void setStaticValue(Class<?> className, String fieldName, Object value) {
setStaticValue(getField(className, fieldName), value);
}
}
@Retention(RetentionPolicy.RUNTIME)
@interface Test {
}
class Assert {
public static void assertTrue(boolean condition, String message) {
if (!condition) {
throw new AssertionError(message);
}
}
public static void assertEqual(Object expected, Object actual, String message) {
if (expected == null && actual != null || !expected.equals(actual)) {
if (expected instanceof Double && actual instanceof Double
|| expected instanceof Float && actual instanceof Float) {
double expectedDouble = (double) expected;
double actualDouble = (double) actual;
if (Math.abs(expectedDouble - actualDouble) < 1e-6) {
return;
}
}
throw new AssertionError(
String.format("%s\nExpected '%s' but got '%s'", message, expected, actual));
}
}
public static void assertInstanceOf(Object obj, Class<?> className, String message) {
if (obj == null || !className.isInstance(obj)) {
throw new AssertionError(String.format("%s\nExpected instance of '%s' but got '%s'",
message, className.getName(), obj == null ? "null" : obj.getClass().getName()));
}
}
public static void assertSushiRollsEqual(SushiRoll expected, SushiRoll actual, String message) {
if (expected == null && actual != null || expected.compareTo(actual) != 0
|| expected.getColor() != actual.getColor()) {
throw new AssertionError(
String.format("%s\nExpected '%s' but got '%s'", message, expected, actual));
}
}
public static void assertOrdersEqual(SushiRoll[] expected, SushiRoll[] actual, String message) {
if (expected == null && actual != null || expected.length != actual.length) {
throw new AssertionError(String.format("%s\nExpected '%s' but got '%s'", message,
Arrays.asList(expected), Arrays.asList(actual)));
}
for (int i = 0; i < expected.length; i++) {
try {
assertSushiRollsEqual(expected[i], actual[i], "");
} catch (AssertionError e) {
throw new AssertionError(String.format("%s\nExpected '%s' but got '%s'", message,
Arrays.asList(expected), Arrays.asList(actual)));
}
}
}
}