ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentLinkedQueueTest.java
Revision: 1.22
Committed: Thu Nov 4 01:04:54 2010 UTC (13 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.21: +5 -7 lines
Log Message:
strengthen toArray tests

File Contents

# Content
1 /*
2 * Written by Doug Lea with assistance from members of JCP JSR-166
3 * Expert Group and released to the public domain, as explained at
4 * http://creativecommons.org/licenses/publicdomain
5 * Other contributors include Andrew Wright, Jeffrey Hayes,
6 * Pat Fisher, Mike Judd.
7 */
8
9 import junit.framework.*;
10 import java.util.*;
11 import java.util.concurrent.*;
12 import java.io.*;
13
14 public class ConcurrentLinkedQueueTest extends JSR166TestCase {
15
16 public static void main(String[] args) {
17 junit.textui.TestRunner.run(suite());
18 }
19
20 public static Test suite() {
21 return new TestSuite(ConcurrentLinkedQueueTest.class);
22 }
23
24 /**
25 * Create a queue of given size containing consecutive
26 * Integers 0 ... n.
27 */
28 private ConcurrentLinkedQueue populatedQueue(int n) {
29 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
30 assertTrue(q.isEmpty());
31 for (int i = 0; i < n; ++i)
32 assertTrue(q.offer(new Integer(i)));
33 assertFalse(q.isEmpty());
34 assertEquals(n, q.size());
35 return q;
36 }
37
38 /**
39 * new queue is empty
40 */
41 public void testConstructor1() {
42 assertEquals(0, new ConcurrentLinkedQueue().size());
43 }
44
45 /**
46 * Initializing from null Collection throws NPE
47 */
48 public void testConstructor3() {
49 try {
50 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue((Collection)null);
51 shouldThrow();
52 } catch (NullPointerException success) {}
53 }
54
55 /**
56 * Initializing from Collection of null elements throws NPE
57 */
58 public void testConstructor4() {
59 try {
60 Integer[] ints = new Integer[SIZE];
61 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue(Arrays.asList(ints));
62 shouldThrow();
63 } catch (NullPointerException success) {}
64 }
65
66 /**
67 * Initializing from Collection with some null elements throws NPE
68 */
69 public void testConstructor5() {
70 try {
71 Integer[] ints = new Integer[SIZE];
72 for (int i = 0; i < SIZE-1; ++i)
73 ints[i] = new Integer(i);
74 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue(Arrays.asList(ints));
75 shouldThrow();
76 } catch (NullPointerException success) {}
77 }
78
79 /**
80 * Queue contains all elements of collection used to initialize
81 */
82 public void testConstructor6() {
83 Integer[] ints = new Integer[SIZE];
84 for (int i = 0; i < SIZE; ++i)
85 ints[i] = new Integer(i);
86 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue(Arrays.asList(ints));
87 for (int i = 0; i < SIZE; ++i)
88 assertEquals(ints[i], q.poll());
89 }
90
91 /**
92 * isEmpty is true before add, false after
93 */
94 public void testEmpty() {
95 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
96 assertTrue(q.isEmpty());
97 q.add(one);
98 assertFalse(q.isEmpty());
99 q.add(two);
100 q.remove();
101 q.remove();
102 assertTrue(q.isEmpty());
103 }
104
105 /**
106 * size changes when elements added and removed
107 */
108 public void testSize() {
109 ConcurrentLinkedQueue q = populatedQueue(SIZE);
110 for (int i = 0; i < SIZE; ++i) {
111 assertEquals(SIZE-i, q.size());
112 q.remove();
113 }
114 for (int i = 0; i < SIZE; ++i) {
115 assertEquals(i, q.size());
116 q.add(new Integer(i));
117 }
118 }
119
120 /**
121 * offer(null) throws NPE
122 */
123 public void testOfferNull() {
124 try {
125 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
126 q.offer(null);
127 shouldThrow();
128 } catch (NullPointerException success) {}
129 }
130
131 /**
132 * add(null) throws NPE
133 */
134 public void testAddNull() {
135 try {
136 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
137 q.add(null);
138 shouldThrow();
139 } catch (NullPointerException success) {}
140 }
141
142
143 /**
144 * Offer returns true
145 */
146 public void testOffer() {
147 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
148 assertTrue(q.offer(zero));
149 assertTrue(q.offer(one));
150 }
151
152 /**
153 * add returns true
154 */
155 public void testAdd() {
156 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
157 for (int i = 0; i < SIZE; ++i) {
158 assertEquals(i, q.size());
159 assertTrue(q.add(new Integer(i)));
160 }
161 }
162
163 /**
164 * addAll(null) throws NPE
165 */
166 public void testAddAll1() {
167 try {
168 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
169 q.addAll(null);
170 shouldThrow();
171 } catch (NullPointerException success) {}
172 }
173
174 /**
175 * addAll(this) throws IAE
176 */
177 public void testAddAllSelf() {
178 try {
179 ConcurrentLinkedQueue q = populatedQueue(SIZE);
180 q.addAll(q);
181 shouldThrow();
182 } catch (IllegalArgumentException success) {}
183 }
184
185 /**
186 * addAll of a collection with null elements throws NPE
187 */
188 public void testAddAll2() {
189 try {
190 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
191 Integer[] ints = new Integer[SIZE];
192 q.addAll(Arrays.asList(ints));
193 shouldThrow();
194 } catch (NullPointerException success) {}
195 }
196
197 /**
198 * addAll of a collection with any null elements throws NPE after
199 * possibly adding some elements
200 */
201 public void testAddAll3() {
202 try {
203 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
204 Integer[] ints = new Integer[SIZE];
205 for (int i = 0; i < SIZE-1; ++i)
206 ints[i] = new Integer(i);
207 q.addAll(Arrays.asList(ints));
208 shouldThrow();
209 } catch (NullPointerException success) {}
210 }
211
212 /**
213 * Queue contains all elements, in traversal order, of successful addAll
214 */
215 public void testAddAll5() {
216 Integer[] empty = new Integer[0];
217 Integer[] ints = new Integer[SIZE];
218 for (int i = 0; i < SIZE; ++i)
219 ints[i] = new Integer(i);
220 ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
221 assertFalse(q.addAll(Arrays.asList(empty)));
222 assertTrue(q.addAll(Arrays.asList(ints)));
223 for (int i = 0; i < SIZE; ++i)
224 assertEquals(ints[i], q.poll());
225 }
226
227 /**
228 * poll succeeds unless empty
229 */
230 public void testPoll() {
231 ConcurrentLinkedQueue q = populatedQueue(SIZE);
232 for (int i = 0; i < SIZE; ++i) {
233 assertEquals(i, q.poll());
234 }
235 assertNull(q.poll());
236 }
237
238 /**
239 * peek returns next element, or null if empty
240 */
241 public void testPeek() {
242 ConcurrentLinkedQueue q = populatedQueue(SIZE);
243 for (int i = 0; i < SIZE; ++i) {
244 assertEquals(i, q.peek());
245 assertEquals(i, q.poll());
246 assertTrue(q.peek() == null ||
247 !q.peek().equals(i));
248 }
249 assertNull(q.peek());
250 }
251
252 /**
253 * element returns next element, or throws NSEE if empty
254 */
255 public void testElement() {
256 ConcurrentLinkedQueue q = populatedQueue(SIZE);
257 for (int i = 0; i < SIZE; ++i) {
258 assertEquals(i, q.element());
259 assertEquals(i, q.poll());
260 }
261 try {
262 q.element();
263 shouldThrow();
264 } catch (NoSuchElementException success) {}
265 }
266
267 /**
268 * remove removes next element, or throws NSEE if empty
269 */
270 public void testRemove() {
271 ConcurrentLinkedQueue q = populatedQueue(SIZE);
272 for (int i = 0; i < SIZE; ++i) {
273 assertEquals(i, q.remove());
274 }
275 try {
276 q.remove();
277 shouldThrow();
278 } catch (NoSuchElementException success) {}
279 }
280
281 /**
282 * remove(x) removes x and returns true if present
283 */
284 public void testRemoveElement() {
285 ConcurrentLinkedQueue q = populatedQueue(SIZE);
286 for (int i = 1; i < SIZE; i+=2) {
287 assertTrue(q.remove(new Integer(i)));
288 }
289 for (int i = 0; i < SIZE; i+=2) {
290 assertTrue(q.remove(new Integer(i)));
291 assertFalse(q.remove(new Integer(i+1)));
292 }
293 assertTrue(q.isEmpty());
294 }
295
296 /**
297 * contains(x) reports true when elements added but not yet removed
298 */
299 public void testContains() {
300 ConcurrentLinkedQueue q = populatedQueue(SIZE);
301 for (int i = 0; i < SIZE; ++i) {
302 assertTrue(q.contains(new Integer(i)));
303 q.poll();
304 assertFalse(q.contains(new Integer(i)));
305 }
306 }
307
308 /**
309 * clear removes all elements
310 */
311 public void testClear() {
312 ConcurrentLinkedQueue q = populatedQueue(SIZE);
313 q.clear();
314 assertTrue(q.isEmpty());
315 assertEquals(0, q.size());
316 q.add(one);
317 assertFalse(q.isEmpty());
318 q.clear();
319 assertTrue(q.isEmpty());
320 }
321
322 /**
323 * containsAll(c) is true when c contains a subset of elements
324 */
325 public void testContainsAll() {
326 ConcurrentLinkedQueue q = populatedQueue(SIZE);
327 ConcurrentLinkedQueue p = new ConcurrentLinkedQueue();
328 for (int i = 0; i < SIZE; ++i) {
329 assertTrue(q.containsAll(p));
330 assertFalse(p.containsAll(q));
331 p.add(new Integer(i));
332 }
333 assertTrue(p.containsAll(q));
334 }
335
336 /**
337 * retainAll(c) retains only those elements of c and reports true if change
338 */
339 public void testRetainAll() {
340 ConcurrentLinkedQueue q = populatedQueue(SIZE);
341 ConcurrentLinkedQueue p = populatedQueue(SIZE);
342 for (int i = 0; i < SIZE; ++i) {
343 boolean changed = q.retainAll(p);
344 if (i == 0)
345 assertFalse(changed);
346 else
347 assertTrue(changed);
348
349 assertTrue(q.containsAll(p));
350 assertEquals(SIZE-i, q.size());
351 p.remove();
352 }
353 }
354
355 /**
356 * removeAll(c) removes only those elements of c and reports true if changed
357 */
358 public void testRemoveAll() {
359 for (int i = 1; i < SIZE; ++i) {
360 ConcurrentLinkedQueue q = populatedQueue(SIZE);
361 ConcurrentLinkedQueue p = populatedQueue(i);
362 assertTrue(q.removeAll(p));
363 assertEquals(SIZE-i, q.size());
364 for (int j = 0; j < i; ++j) {
365 Integer I = (Integer)(p.remove());
366 assertFalse(q.contains(I));
367 }
368 }
369 }
370
371 /**
372 * toArray contains all elements in FIFO order
373 */
374 public void testToArray() {
375 ConcurrentLinkedQueue q = populatedQueue(SIZE);
376 Object[] o = q.toArray();
377 for (int i = 0; i < o.length; i++)
378 assertSame(o[i], q.poll());
379 }
380
381 /**
382 * toArray(a) contains all elements in FIFO order
383 */
384 public void testToArray2() {
385 ConcurrentLinkedQueue q = populatedQueue(SIZE);
386 Integer[] ints = new Integer[SIZE];
387 assertSame(ints, q.toArray(ints));
388 for (int i = 0; i < ints.length; i++)
389 assertSame(ints[i], q.poll());
390 }
391
392 /**
393 * toArray(null) throws NullPointerException
394 */
395 public void testToArray_NullArg() {
396 ConcurrentLinkedQueue q = populatedQueue(SIZE);
397 try {
398 q.toArray(null);
399 shouldThrow();
400 } catch (NullPointerException success) {}
401 }
402
403 /**
404 * toArray(incompatible array type) throws ArrayStoreException
405 */
406 public void testToArray1_BadArg() {
407 ConcurrentLinkedQueue q = populatedQueue(SIZE);
408 try {
409 q.toArray(new String[10]);
410 shouldThrow();
411 } catch (ArrayStoreException success) {}
412 }
413
414 /**
415 * iterator iterates through all elements
416 */
417 public void testIterator() {
418 ConcurrentLinkedQueue q = populatedQueue(SIZE);
419 int i = 0;
420 Iterator it = q.iterator();
421 while (it.hasNext()) {
422 assertTrue(q.contains(it.next()));
423 ++i;
424 }
425 assertEquals(i, SIZE);
426 }
427
428 /**
429 * iterator ordering is FIFO
430 */
431 public void testIteratorOrdering() {
432 final ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
433 q.add(one);
434 q.add(two);
435 q.add(three);
436
437 int k = 0;
438 for (Iterator it = q.iterator(); it.hasNext();) {
439 assertEquals(++k, it.next());
440 }
441
442 assertEquals(3, k);
443 }
444
445 /**
446 * Modifications do not cause iterators to fail
447 */
448 public void testWeaklyConsistentIteration() {
449 final ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
450 q.add(one);
451 q.add(two);
452 q.add(three);
453
454 for (Iterator it = q.iterator(); it.hasNext();) {
455 q.remove();
456 it.next();
457 }
458
459 assertEquals("queue should be empty again", 0, q.size());
460 }
461
462 /**
463 * iterator.remove removes current element
464 */
465 public void testIteratorRemove() {
466 final ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
467 q.add(one);
468 q.add(two);
469 q.add(three);
470 Iterator it = q.iterator();
471 it.next();
472 it.remove();
473 it = q.iterator();
474 assertSame(it.next(), two);
475 assertSame(it.next(), three);
476 assertFalse(it.hasNext());
477 }
478
479
480 /**
481 * toString contains toStrings of elements
482 */
483 public void testToString() {
484 ConcurrentLinkedQueue q = populatedQueue(SIZE);
485 String s = q.toString();
486 for (int i = 0; i < SIZE; ++i) {
487 assertTrue(s.indexOf(String.valueOf(i)) >= 0);
488 }
489 }
490
491 /**
492 * A deserialized serialized queue has same elements in same order
493 */
494 public void testSerialization() throws Exception {
495 ConcurrentLinkedQueue q = populatedQueue(SIZE);
496 ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
497 ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
498 out.writeObject(q);
499 out.close();
500
501 ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
502 ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
503 ConcurrentLinkedQueue r = (ConcurrentLinkedQueue)in.readObject();
504 assertEquals(q.size(), r.size());
505 while (!q.isEmpty())
506 assertEquals(q.remove(), r.remove());
507 }
508
509 }