-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSTest.java
490 lines (439 loc) · 13.3 KB
/
DSTest.java
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
import java.util.Random;
import java.util.Collections;
import java.util.ArrayList;
/**
* Lists suites of tests for data structures using the GW ICPC data structure interface.
*/
//TODO: Get rid of boilerplate code filling the data structure
public class DSTest {
private int numTests = 10000;
private Random rand = new Random();
/***************************************
* Generic Test Suite *
* To be run over all data structures *
***************************************/
/**
* Runs suite of all generic tests. To be run over all datastructures.
* Note that it runs empty() between each test.
*/
public void runGenericTestSuite(IDS<Integer> ds) {
sizeAdded();
ds.empty();
emptiedSize();
ds.empty();
sizeIterated(ds);
ds.empty();
addContains(ds);
ds.empty();
listContains(ds);
ds.empty();
}
/**
* Tests that the size == number of elements added.
*/
public void sizeAdded(IDS<Integer> ds) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
ds.add(rand.nextInt());
}
if(ds.size() != r) {
System.out.printf("Found bug in sizeAdded after %d tests: added %d elements, but size() returns %d.\n", t, r, ds.size());
}
ds.empty();
}
}
/**
* Tests that after empty(), size() == 0.
*/
public void emptiedSize(IDS<Integer> ds) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
ds.add(rand.nextInt());
}
ds.empty();
if(ds.size() != 0) {
System.out.printf("Found bug in emptiedSize after %d tests: size() after empty() returns %d", t, ds.size());
}
}
}
/**
* Tests that number of elements iterated through is the same as the size().
*/
public void sizeIterated(IDS<Integer> ds) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int j = 0; j < r; j++) {
ds.add(rand.nextInt());
}
int i = 0; // represents number of iterations
for(Integer n : ds) {
i++;
}
if( i != ds.size()) { //num iterations should equal size()
printf("Found bug in sizeIterated after %d tests: iterator iterates over %d elements, but size() returns %d.\n", t, i, ds.size());
}
ds.empty();
}
}
/**
* Tests that if an element is added to the data structure, then it is contained in the data structure, and if it's not added to the data structure, it is not contained by the data structure.
*/
public void addContains(IDS<Integer> ds) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt(); //number of elements to add
int[] is = new int[r]; //Cache of elements
for(int i = 0; i < r; i++) { //add r elements to both the cache and the data structure
is[i] = rand.nextInt();
ds.add(is[i]);
}
for(int i = 0; i < r * r; i++) { //check r^2 times
double prob = rand.nextDouble();
if(prob < 0.75) { //probability 3/4
int k = rand.nextInt(r);
if(!(ds.contains(is[k]))) { //stored something, not contained
System.out.printf("Found bug in addContains after %d tests: added %d as %dth element to datastructure, contains(%i) is false.\n", t, is[k], k, is[k]);
}
} else { //probability 1/4
int j = rand.nextInt();
boolean b = ds.contains(j);
boolean b2 = true; //true => j not in cache
for(int k = 0; k < r; k++) {
if(is[k] == j) { //j in cache
if(!b) {//but, not in data structure
System.out.printf("Found bug in addContains after %d tests: added %d as %dth element to datastructure, contains(%i) is false.\n", t, is[k], k, is[k]);
}
b2 = false; //false => j in cache
}
}
if(b2 && b) {//j not in cache /\ found
System.out.printf("Found bug in addContains after %d tests: did not add %d to the datastructure, contains(%d) is true.\n", i, j, j);
}
}
}
ds.empty();
}
}
/**
* Tests that the list contains exactly those elements that are contained by the data structure.
*/
public void listContains(IDS<Integer> ds) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int j = 0; j < r; j++) {
ds.add(rand.nextInt());
}
List<Integer> lst = ds.asList();
for(Integer x : lst) {
if(!ds.contains(x)) { //x is in lst
System.out.printf("Found bug in listContains after %d tests: %d is in asList(), but contains(%d) is false.\n", t, x, x);
}
}
for(Integer x : ds) {
i++;
if(!ds.contains(x)) { //probably not necessary, but not going to get rid of it now that it's here
System.out.printf("Found bug in listContains after %d tests: %d is in iterator, but contains(%d) is false.\n", t, x, x);
}
if(!lst.contains(x)) { //x in ds
System.out.printf("Found bug in listContains after %d tests: %d is in iterator, but asList().contains(%d) is false.\n", t, x, x);
}
}
ds.empty();
}
}
/************************************************************
* ILinkedList Test Suite *
* To be run over datastructures that implement ILinkedList *
************************************************************/
public void runLinkedListTestSuite(ILinkedList<Integer> lst) {
runGenericTestSuite(lst);
lst.empty();
getIterator(lst);
lst.empty();
sortedSame(lst);
lst.empty();
first0(list);
lst.empty();
lastSize();
lst.empty();
}
/**
* Tests that when iterated over, the ith element iterated is get(i).
*/
public void getIterator(ILinkedList<Integer> lst) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int j = 0; j < r; j++) {
lst.add(rand.nextInt());
}
int i = 0;
for(Integer n : lst) {
if(n != lst.get(i)) {
System.out.printf("Found bug in getItertator after %d tests: %d is the %dth iterated, but lst.get(%d) = %d\n", t, n, i, i, lst.get(i));
i++;
}
}
lst.empty();
}
}
/**
* Tests that when the two lists are sorted, the two lists are iterated the same.
*/
public void sortedSame(ILinkedList<Integer> lst) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int j = 0; j < r; j++) {
lst.add(rand.nextInt());
}
List<Integer> lst2 = lst.asList();
Collections.sort(lst2);
lst.sort();
int i = 0;
for(Integer n : lst) {
if(lst2.get(i) != n) {
System.out.printf("Found bug in sortedSame after %d tests: %d is the %dth element in lst, but lst2.get(%d) = %d\n", i, n, i, i, lst2.get(i));
i++;
}
}
lst.empty();
}
}
/**
* Tests that get(0) == getFirst()
*/
public void first0(ILinkedList<Integer> lst) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
lst.add(rand.nextInt());
}
if(lst.getFirst() != lst.get(0)) {
System.out.printf("Found bug in first0: getFirst() returns %d, get(0) returns %d\n", lst.getFirst(), lst.get(0));
}
lst.empty();
}
}
/**
* Tests that get(size() - 1) == getLast().
*/
public void lastSize(ILinkedList<Integer> lst) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
lst.add(rand.nextInt());
}
if(lst.getLast() != lst.get(lst.size() - 1)) {
System.out.printf("Found bug in lastSize: getLast() returns %d, but size() is %d and get(%d) return %d.\n", lst.getLast(), lst.size(), lst.size() - 1, lst.get(lst.size() - 1));
}
lst.empty();
}
}
/**********************************************************
* Queue Test Suite *
* To be run on classes that work on the IQueue interface *
**********************************************************/
public void runQueueSuite(IQueue<Integer> q) {
runGenericTestSuite(q);
q.empty();
enqueue_in_order(q);
}
public void runPriorityQueueSuite(IQueue<Integer> q) {
runGenericQueueSuite(q);
q.empty();
enqueue_in_order_priority(q);
}
public void runGenericQueueSuite(IQueue<Integer> q) {
runGenericTestSuite(q);
q.empty();
dequeue_iterate(q);
}
public void enqueue_in_order(IQueue<Integer> q) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
int[] is = new int[r];
for(int i = 0; i < r; i++) {
is[i] = rand.nextInt();
q.enqueue(is[i]);
}
int k = 0;
for(Integer n : q) {
if(is[k] != n) {
System.out.printf("Found bug in enqueue_in_order after %d tests: the %dth item added is %d, but the iterator accessed %d.\n", t, k, is[k], n);
}
}
q.empty();
}
}
public void enqueue_in_order_priority(IQueue<Integer> q) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
q.enqueue(rand.nextInt());
}
int last = q.dequeue();
for(Integer n : q) {
if(n < last) {
System.out.printf("Found bug in enqueue_in_order_priority after %d tests: %d was found in the queue, but %d was in the queue before it.\n", t, n, last);
}
else {
last = n;
}
}
q.empty();
}
}
public void dequeue_iterate(IQueue<Integer> q) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
q.enqueue(rand.nextInt());
}
for(Integer n : q) {
int m = q.dequeue();
if(n != m) {
System.out.printf("Found bug in dequeue_iterate after %d tests: iterator returns %d, but dequeue() returns %d.\n", t, n, m);
}
}
q.empty();
}
}
/*********************************************
* Stack Test Suite *
* For data structures that implement IStack *
*********************************************/
public void runStackTestSuite(IStack<Integer> s) {
runGenericTestSuite(s);
s.empty();
pop_iterate(s);
s.empty();
pop_order(s);
s.empty();
}
public void pop_iterate(IStack<Integer> s) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
s.push(p);
}
for(Integer n : s) {
int m = s.pop();
if(n != m) {
System.out.printf("Found bug in pop_iterate after %d tests: Iterator returns %d, while pop returns %d.\n", t, n, m);
}
}
s.empty();
}
}
public void pop_order(IStack<Integer> s) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
int[] is = new int[r];
for(int i = 0; i < r; i++) {
is[i] = rand.nextInt();
s.push(is[i]);
}
int k = r - 1;
for(Integer n : s) {
if(k < 0) {
System.out.printf("Found bug in pop_order after %d tests: iterator iterated over more elements then were added.\n", t);
break;
}
if(n != is[k]) {
System.out.printf("Found bug in pop_order after %d tests: Iterator returns %d, it should return %d.\n", t, n, is[k]);
}
k--;
}
s.empty();
}
}
/*********************************************
* Tree Test Suite *
* For data structures that implement IBTree *
*********************************************/
public void runTreeTestSuite(IBTree<Integer> t) {
runGenericTestSuite(t);
t.empty();
test_order(t);
t.empty();
}
public void test_order(IBTree<Integer> test_tree) {
int num_nodes = 50;
for(int t = 0; t < numTests; t++) {
BinaryTree tree = new BinaryTree();
int v = rand.nextInt();
BinaryTree.Node root = new BinaryTree.Node(v);
test_tree.add(v);
for(int i = 1; i < num_nodes; i++) {
v = rand.nextInt();
tree.insert(root, v);
test_tree.add(v);
}
//Pre
ArrayList<Integer> pre = new ArrayList<Integer>();
tree.getPreOrder(root, pre);
int i = 0;
for (Integer n : test_tree.preOrder())
{
if (n != pre.get(i))
{
System.out.printf("Found bug in test_tree preOrder after %d tests: Iterator returns %d, it should return %d.\n", t, n, pre.get(i));
break;
}
i++;
}
//In
ArrayList<Integer> in = new ArrayList<Integer>();
tree.getPreOrder(root, in);
i = 0;
for (Integer n : test_tree.inOrder())
{
if (n != in.get(i))
{
System.out.printf("Found bug in test_tree inOrder after %d tests: Iterator returns %d, it should return %d.\n", t, n, in.get(i));
break;
}
i++;
}
//Post
ArrayList<Integer> post = new ArrayList<Integer>();
tree.getPostOrder(root, post);
i = 0;
for (Integer n : test_tree.postOrder())
{
if (n != post.get(i))
{
System.out.printf("Found bug in test_tree postOrder after %d tests: Iterator returns %d, it should return %d.\n", t, n, post.get(i));
break;
}
i++;
}
}
}
/*********************************************
* Hash Test Suite *
* For data structures that implement IMap *
*********************************************/
public void runHashTestSuite(IMap<String, Integer> m) {
runGenericTestSuite(m);
m.empty();
test_map(m);
m.empty();
}
public void test_map(IMap<String, Integer> m) {
for(int t = 0; t < numTests; t++) {
int r = rand.nextInt();
for(int i = 0; i < r; i++) {
String s = Long.toString(Math.abs(rand.nextLong()), 36);
int v = rand.nextInt();
m.set(s,v);
if (v != m.get(s))
{
System.out.printf("Found bug in test_map after %d tests: Iterator returns %d, it should return %d.\n", t, m.get(s), v);
break;
}
}
m.empty();
}
}
}