ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/LinkedListTest.java
(Generate patch)

Comparing jsr166/src/test/tck/LinkedListTest.java (file contents):
Revision 1.3 by dl, Sun Sep 14 20:42:40 2003 UTC vs.
Revision 1.48 by jsr166, Mon May 28 21:19:50 2018 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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/publicdomain/zero/1.0/
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.*;
9 > import java.util.Arrays;
10 > import java.util.Collection;
11 > import java.util.Iterator;
12 > import java.util.LinkedList;
13 > import java.util.List;
14 > import java.util.NoSuchElementException;
15 > import java.util.concurrent.ThreadLocalRandom;
16 >
17 > import junit.framework.Test;
18  
19   public class LinkedListTest extends JSR166TestCase {
20      public static void main(String[] args) {
21 <        junit.textui.TestRunner.run (suite());  
21 >        main(suite(), args);
22      }
23  
24      public static Test suite() {
25 <        return new TestSuite(LinkedListTest.class);
25 >        class Implementation implements CollectionImplementation {
26 >            public Class<?> klazz() { return LinkedList.class; }
27 >            public List emptyCollection() { return new LinkedList(); }
28 >            public Object makeElement(int i) { return i; }
29 >            public boolean isConcurrent() { return false; }
30 >            public boolean permitsNulls() { return true; }
31 >        }
32 >        class SubListImplementation extends Implementation {
33 >            public List emptyCollection() {
34 >                List list = super.emptyCollection();
35 >                ThreadLocalRandom rnd = ThreadLocalRandom.current();
36 >                if (rnd.nextBoolean())
37 >                    list.add(makeElement(rnd.nextInt()));
38 >                int i = rnd.nextInt(list.size() + 1);
39 >                return list.subList(i, i);
40 >            }
41 >        }
42 >        return newTestSuite(
43 >                LinkedListTest.class,
44 >                CollectionTest.testSuite(new Implementation()),
45 >                CollectionTest.testSuite(new SubListImplementation()));
46      }
47  
48      /**
49 <     * Create a queue of given size containing consecutive
50 <     * Integers 0 ... n.
49 >     * Returns a new queue of given size containing consecutive
50 >     * Integers 0 ... n - 1.
51       */
52 <    private LinkedList populatedQueue(int n) {
53 <        LinkedList q = new LinkedList();
52 >    private static LinkedList<Integer> populatedQueue(int n) {
53 >        LinkedList<Integer> q = new LinkedList<>();
54          assertTrue(q.isEmpty());
55 <        for(int i = 0; i < n; ++i)
56 <            assertTrue(q.offer(new Integer(i)));
55 >        for (int i = 0; i < n; ++i)
56 >            assertTrue(q.offer(new Integer(i)));
57          assertFalse(q.isEmpty());
58 <        assertEquals(n, q.size());
58 >        assertEquals(n, q.size());
59 >        assertEquals((Integer) 0, q.peekFirst());
60 >        assertEquals((Integer) (n - 1), q.peekLast());
61          return q;
62      }
63 <
64 <    public void testConstructor1(){
63 >
64 >    /**
65 >     * new queue is empty
66 >     */
67 >    public void testConstructor1() {
68          assertEquals(0, new LinkedList().size());
69      }
70  
71 +    /**
72 +     * Initializing from null Collection throws NPE
73 +     */
74      public void testConstructor3() {
75          try {
76 <            LinkedList q = new LinkedList((Collection)null);
77 <            fail("Cannot make from null collection");
78 <        }
44 <        catch (NullPointerException success) {}
76 >            new LinkedList((Collection)null);
77 >            shouldThrow();
78 >        } catch (NullPointerException success) {}
79      }
80  
81 <    public void testConstructor6(){
82 <        try {
83 <            Integer[] ints = new Integer[SIZE];
84 <            for (int i = 0; i < SIZE; ++i)
85 <                ints[i] = new Integer(i);
86 <            LinkedList q = new LinkedList(Arrays.asList(ints));
87 <            for (int i = 0; i < SIZE; ++i)
88 <                assertEquals(ints[i], q.poll());
89 <        }
90 <        finally {}
81 >    /**
82 >     * Queue contains all elements of collection used to initialize
83 >     */
84 >    public void testConstructor6() {
85 >        Integer[] ints = new Integer[SIZE];
86 >        for (int i = 0; i < SIZE; ++i)
87 >            ints[i] = i;
88 >        LinkedList q = new LinkedList(Arrays.asList(ints));
89 >        for (int i = 0; i < SIZE; ++i)
90 >            assertEquals(ints[i], q.poll());
91      }
92  
93 +    /**
94 +     * isEmpty is true before add, false after
95 +     */
96      public void testEmpty() {
97          LinkedList q = new LinkedList();
98          assertTrue(q.isEmpty());
# Line 67 | Line 104 | public class LinkedListTest extends JSR1
104          assertTrue(q.isEmpty());
105      }
106  
107 +    /**
108 +     * size changes when elements added and removed
109 +     */
110      public void testSize() {
111          LinkedList q = populatedQueue(SIZE);
112          for (int i = 0; i < SIZE; ++i) {
113 <            assertEquals(SIZE-i, q.size());
113 >            assertEquals(SIZE - i, q.size());
114              q.remove();
115          }
116          for (int i = 0; i < SIZE; ++i) {
# Line 79 | Line 119 | public class LinkedListTest extends JSR1
119          }
120      }
121  
122 <    public void testOfferNull(){
123 <        try {
124 <            LinkedList q = new LinkedList();
125 <            q.offer(null);
126 <        } catch (NullPointerException ie) {
127 <            fail("should not throw NPE");
128 <        }  
122 >    /**
123 >     * offer(null) succeeds
124 >     */
125 >    public void testOfferNull() {
126 >        LinkedList q = new LinkedList();
127 >        q.offer(null);
128 >        assertNull(q.get(0));
129 >        assertTrue(q.contains(null));
130      }
131  
132 +    /**
133 +     * Offer succeeds
134 +     */
135      public void testOffer() {
136          LinkedList q = new LinkedList();
137          assertTrue(q.offer(new Integer(0)));
138          assertTrue(q.offer(new Integer(1)));
139      }
140  
141 <    public void testAdd(){
141 >    /**
142 >     * add succeeds
143 >     */
144 >    public void testAdd() {
145          LinkedList q = new LinkedList();
146          for (int i = 0; i < SIZE; ++i) {
147              assertEquals(i, q.size());
# Line 102 | Line 149 | public class LinkedListTest extends JSR1
149          }
150      }
151  
152 <    public void testAddAll1(){
152 >    /**
153 >     * addAll(null) throws NPE
154 >     */
155 >    public void testAddAll1() {
156 >        LinkedList q = new LinkedList();
157          try {
107            LinkedList q = new LinkedList();
158              q.addAll(null);
159 <            fail("Cannot add null collection");
160 <        }
161 <        catch (NullPointerException success) {}
159 >            shouldThrow();
160 >        } catch (NullPointerException success) {}
161 >    }
162 >
163 >    /**
164 >     * Queue contains all elements, in traversal order, of successful addAll
165 >     */
166 >    public void testAddAll5() {
167 >        Integer[] empty = new Integer[0];
168 >        Integer[] ints = new Integer[SIZE];
169 >        for (int i = 0; i < SIZE; ++i)
170 >            ints[i] = i;
171 >        LinkedList q = new LinkedList();
172 >        assertFalse(q.addAll(Arrays.asList(empty)));
173 >        assertTrue(q.addAll(Arrays.asList(ints)));
174 >        for (int i = 0; i < SIZE; ++i)
175 >            assertEquals(ints[i], q.poll());
176      }
177  
178 <    public void testAddAll5(){
178 >    /**
179 >     * addAll with too large an index throws IOOBE
180 >     */
181 >    public void testAddAll2_IndexOutOfBoundsException() {
182 >        LinkedList l = new LinkedList();
183 >        l.add(new Object());
184 >        LinkedList m = new LinkedList();
185 >        m.add(new Object());
186          try {
187 <            Integer[] empty = new Integer[0];
188 <            Integer[] ints = new Integer[SIZE];
189 <            for (int i = 0; i < SIZE; ++i)
119 <                ints[i] = new Integer(i);
120 <            LinkedList q = new LinkedList();
121 <            assertFalse(q.addAll(Arrays.asList(empty)));
122 <            assertTrue(q.addAll(Arrays.asList(ints)));
123 <            for (int i = 0; i < SIZE; ++i)
124 <                assertEquals(ints[i], q.poll());
125 <        }
126 <        finally {}
187 >            l.addAll(4,m);
188 >            shouldThrow();
189 >        } catch (IndexOutOfBoundsException success) {}
190      }
191  
192 <    public void testPoll(){
192 >    /**
193 >     * addAll with negative index throws IOOBE
194 >     */
195 >    public void testAddAll4_BadIndex() {
196 >        LinkedList l = new LinkedList();
197 >        l.add(new Object());
198 >        LinkedList m = new LinkedList();
199 >        m.add(new Object());
200 >        try {
201 >            l.addAll(-1,m);
202 >            shouldThrow();
203 >        } catch (IndexOutOfBoundsException success) {}
204 >    }
205 >
206 >    /**
207 >     * poll succeeds unless empty
208 >     */
209 >    public void testPoll() {
210          LinkedList q = populatedQueue(SIZE);
211          for (int i = 0; i < SIZE; ++i) {
212 <            assertEquals(i, ((Integer)q.poll()).intValue());
212 >            assertEquals(i, q.poll());
213          }
214 <        assertNull(q.poll());
214 >        assertNull(q.poll());
215      }
216  
217 <    public void testPeek(){
217 >    /**
218 >     * peek returns next element, or null if empty
219 >     */
220 >    public void testPeek() {
221          LinkedList q = populatedQueue(SIZE);
222          for (int i = 0; i < SIZE; ++i) {
223 <            assertEquals(i, ((Integer)q.peek()).intValue());
224 <            q.poll();
223 >            assertEquals(i, q.peek());
224 >            assertEquals(i, q.poll());
225              assertTrue(q.peek() == null ||
226 <                       i != ((Integer)q.peek()).intValue());
226 >                       !q.peek().equals(i));
227          }
228 <        assertNull(q.peek());
228 >        assertNull(q.peek());
229      }
230  
231 <    public void testElement(){
231 >    /**
232 >     * element returns next element, or throws NSEE if empty
233 >     */
234 >    public void testElement() {
235          LinkedList q = populatedQueue(SIZE);
236          for (int i = 0; i < SIZE; ++i) {
237 <            assertEquals(i, ((Integer)q.element()).intValue());
238 <            q.poll();
237 >            assertEquals(i, q.element());
238 >            assertEquals(i, q.poll());
239          }
240          try {
241              q.element();
242 <            fail("no such element");
243 <        }
158 <        catch (NoSuchElementException success) {}
242 >            shouldThrow();
243 >        } catch (NoSuchElementException success) {}
244      }
245  
246 <    public void testRemove(){
246 >    /**
247 >     * remove removes next element, or throws NSEE if empty
248 >     */
249 >    public void testRemove() {
250          LinkedList q = populatedQueue(SIZE);
251          for (int i = 0; i < SIZE; ++i) {
252 <            assertEquals(i, ((Integer)q.remove()).intValue());
252 >            assertEquals(i, q.remove());
253          }
254          try {
255              q.remove();
256 <            fail("remove should throw");
257 <        } catch (NoSuchElementException success){
170 <        }  
256 >            shouldThrow();
257 >        } catch (NoSuchElementException success) {}
258      }
259  
260 <    public void testRemoveElement(){
260 >    /**
261 >     * remove(x) removes x and returns true if present
262 >     */
263 >    public void testRemoveElement() {
264          LinkedList q = populatedQueue(SIZE);
265 <        for (int i = 1; i < SIZE; i+=2) {
266 <            assertTrue(q.remove(new Integer(i)));
267 <        }
268 <        for (int i = 0; i < SIZE; i+=2) {
269 <            assertTrue(q.remove(new Integer(i)));
270 <            assertFalse(q.remove(new Integer(i+1)));
265 >        for (int i = 1; i < SIZE; i += 2) {
266 >            assertTrue(q.contains(i));
267 >            assertTrue(q.remove((Integer)i));
268 >            assertFalse(q.contains(i));
269 >            assertTrue(q.contains(i - 1));
270 >        }
271 >        for (int i = 0; i < SIZE; i += 2) {
272 >            assertTrue(q.contains(i));
273 >            assertTrue(q.remove((Integer)i));
274 >            assertFalse(q.contains(i));
275 >            assertFalse(q.remove((Integer)(i + 1)));
276 >            assertFalse(q.contains(i + 1));
277          }
278          assertTrue(q.isEmpty());
279      }
280 <        
281 <    public void testContains(){
280 >
281 >    /**
282 >     * contains(x) reports true when elements added but not yet removed
283 >     */
284 >    public void testContains() {
285          LinkedList q = populatedQueue(SIZE);
286          for (int i = 0; i < SIZE; ++i) {
287              assertTrue(q.contains(new Integer(i)));
# Line 191 | Line 290 | public class LinkedListTest extends JSR1
290          }
291      }
292  
293 <    public void testClear(){
293 >    /**
294 >     * clear removes all elements
295 >     */
296 >    public void testClear() {
297          LinkedList q = populatedQueue(SIZE);
298          q.clear();
299          assertTrue(q.isEmpty());
300          assertEquals(0, q.size());
301 <        q.add(new Integer(1));
301 >        assertTrue(q.add(new Integer(1)));
302          assertFalse(q.isEmpty());
303          q.clear();
304          assertTrue(q.isEmpty());
305      }
306  
307 <    public void testContainsAll(){
307 >    /**
308 >     * containsAll(c) is true when c contains a subset of elements
309 >     */
310 >    public void testContainsAll() {
311          LinkedList q = populatedQueue(SIZE);
312          LinkedList p = new LinkedList();
313          for (int i = 0; i < SIZE; ++i) {
314              assertTrue(q.containsAll(p));
315              assertFalse(p.containsAll(q));
316 <            p.add(new Integer(i));
316 >            assertTrue(p.add(new Integer(i)));
317          }
318          assertTrue(p.containsAll(q));
319      }
320  
321 <    public void testRetainAll(){
321 >    /**
322 >     * retainAll(c) retains only those elements of c and reports true if changed
323 >     */
324 >    public void testRetainAll() {
325          LinkedList q = populatedQueue(SIZE);
326          LinkedList p = populatedQueue(SIZE);
327          for (int i = 0; i < SIZE; ++i) {
# Line 224 | Line 332 | public class LinkedListTest extends JSR1
332                  assertTrue(changed);
333  
334              assertTrue(q.containsAll(p));
335 <            assertEquals(SIZE-i, q.size());
335 >            assertEquals(SIZE - i, q.size());
336              p.remove();
337          }
338      }
339  
340 <    public void testRemoveAll(){
340 >    /**
341 >     * removeAll(c) removes only those elements of c and reports true if changed
342 >     */
343 >    public void testRemoveAll() {
344          for (int i = 1; i < SIZE; ++i) {
345              LinkedList q = populatedQueue(SIZE);
346              LinkedList p = populatedQueue(i);
347              assertTrue(q.removeAll(p));
348 <            assertEquals(SIZE-i, q.size());
348 >            assertEquals(SIZE - i, q.size());
349              for (int j = 0; j < i; ++j) {
350 <                Integer I = (Integer)(p.remove());
351 <                assertFalse(q.contains(I));
350 >                Integer x = (Integer)(p.remove());
351 >                assertFalse(q.contains(x));
352              }
353          }
354      }
355  
356 <    public void testToArray(){
356 >    /**
357 >     * toArray contains all elements in FIFO order
358 >     */
359 >    public void testToArray() {
360          LinkedList q = populatedQueue(SIZE);
361 <        Object[] o = q.toArray();
362 <        Arrays.sort(o);
363 <        for(int i = 0; i < o.length; i++)
364 <            assertEquals(o[i], q.poll());
361 >        Object[] a = q.toArray();
362 >        assertSame(Object[].class, a.getClass());
363 >        for (Object o : a)
364 >            assertSame(o, q.poll());
365 >        assertTrue(q.isEmpty());
366      }
367  
368 <    public void testToArray2(){
369 <        LinkedList q = populatedQueue(SIZE);
370 <        Integer[] ints = new Integer[SIZE];
371 <        ints = (Integer[])q.toArray(ints);
372 <        Arrays.sort(ints);
373 <        for(int i = 0; i < ints.length; i++)
374 <            assertEquals(ints[i], q.poll());
368 >    /**
369 >     * toArray(a) contains all elements in FIFO order
370 >     */
371 >    public void testToArray2() {
372 >        LinkedList<Integer> q = populatedQueue(SIZE);
373 >        Integer[] ints = new Integer[SIZE];
374 >        Integer[] array = q.toArray(ints);
375 >        assertSame(ints, array);
376 >        for (Integer o : ints)
377 >            assertSame(o, q.poll());
378 >        assertTrue(q.isEmpty());
379      }
380 <    
381 <    public void testIterator(){
380 >
381 >    /**
382 >     * toArray(null) throws NullPointerException
383 >     */
384 >    public void testToArray_NullArg() {
385 >        LinkedList l = new LinkedList();
386 >        l.add(new Object());
387 >        try {
388 >            l.toArray(null);
389 >            shouldThrow();
390 >        } catch (NullPointerException success) {}
391 >    }
392 >
393 >    /**
394 >     * toArray(incompatible array type) throws ArrayStoreException
395 >     */
396 >    public void testToArray1_BadArg() {
397 >        LinkedList l = new LinkedList();
398 >        l.add(new Integer(5));
399 >        try {
400 >            l.toArray(new String[10]);
401 >            shouldThrow();
402 >        } catch (ArrayStoreException success) {}
403 >    }
404 >
405 >    /**
406 >     * iterator iterates through all elements
407 >     */
408 >    public void testIterator() {
409          LinkedList q = populatedQueue(SIZE);
410 <        int i = 0;
411 <        Iterator it = q.iterator();
412 <        while(it.hasNext()) {
410 >        Iterator it = q.iterator();
411 >        int i;
412 >        for (i = 0; it.hasNext(); i++)
413              assertTrue(q.contains(it.next()));
268            ++i;
269        }
414          assertEquals(i, SIZE);
415 +        assertIteratorExhausted(it);
416      }
417  
418 <    public void testIteratorOrdering() {
418 >    /**
419 >     * iterator of empty collection has no elements
420 >     */
421 >    public void testEmptyIterator() {
422 >        assertIteratorExhausted(new LinkedList().iterator());
423 >    }
424  
425 +    /**
426 +     * iterator ordering is FIFO
427 +     */
428 +    public void testIteratorOrdering() {
429          final LinkedList q = new LinkedList();
276
430          q.add(new Integer(1));
431          q.add(new Integer(2));
432          q.add(new Integer(3));
280
433          int k = 0;
434          for (Iterator it = q.iterator(); it.hasNext();) {
435 <            int i = ((Integer)(it.next())).intValue();
284 <            assertEquals("items should come out in order", ++k, i);
435 >            assertEquals(++k, it.next());
436          }
437  
438 <        assertEquals("should go through 3 elements", 3, k);
438 >        assertEquals(3, k);
439      }
440  
441 <    public void testIteratorRemove () {
441 >    /**
442 >     * iterator.remove removes current element
443 >     */
444 >    public void testIteratorRemove() {
445          final LinkedList q = new LinkedList();
292
446          q.add(new Integer(1));
447          q.add(new Integer(2));
448          q.add(new Integer(3));
296
449          Iterator it = q.iterator();
450 <        it.next();
450 >        assertEquals(1, it.next());
451          it.remove();
300
452          it = q.iterator();
453 <        assertEquals(it.next(), new Integer(2));
454 <        assertEquals(it.next(), new Integer(3));
453 >        assertEquals(2, it.next());
454 >        assertEquals(3, it.next());
455          assertFalse(it.hasNext());
456      }
457  
458 +    /**
459 +     * Descending iterator iterates through all elements
460 +     */
461 +    public void testDescendingIterator() {
462 +        LinkedList q = populatedQueue(SIZE);
463 +        int i = 0;
464 +        Iterator it = q.descendingIterator();
465 +        while (it.hasNext()) {
466 +            assertTrue(q.contains(it.next()));
467 +            ++i;
468 +        }
469 +        assertEquals(i, SIZE);
470 +        assertFalse(it.hasNext());
471 +        try {
472 +            it.next();
473 +            shouldThrow();
474 +        } catch (NoSuchElementException success) {}
475 +    }
476  
477 <    public void testToString(){
477 >    /**
478 >     * Descending iterator ordering is reverse FIFO
479 >     */
480 >    public void testDescendingIteratorOrdering() {
481 >        final LinkedList q = new LinkedList();
482 >        q.add(new Integer(3));
483 >        q.add(new Integer(2));
484 >        q.add(new Integer(1));
485 >        int k = 0;
486 >        for (Iterator it = q.descendingIterator(); it.hasNext();) {
487 >            assertEquals(++k, it.next());
488 >        }
489 >
490 >        assertEquals(3, k);
491 >    }
492 >
493 >    /**
494 >     * descendingIterator.remove removes current element
495 >     */
496 >    public void testDescendingIteratorRemove() {
497 >        final LinkedList q = new LinkedList();
498 >        q.add(three);
499 >        q.add(two);
500 >        q.add(one);
501 >        Iterator it = q.descendingIterator();
502 >        it.next();
503 >        it.remove();
504 >        it = q.descendingIterator();
505 >        assertSame(it.next(), two);
506 >        assertSame(it.next(), three);
507 >        assertFalse(it.hasNext());
508 >    }
509 >
510 >    /**
511 >     * toString contains toStrings of elements
512 >     */
513 >    public void testToString() {
514          LinkedList q = populatedQueue(SIZE);
515          String s = q.toString();
516          for (int i = 0; i < SIZE; ++i) {
517 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
517 >            assertTrue(s.contains(String.valueOf(i)));
518          }
519 <    }        
519 >    }
520  
521 <    public void testAddFirst(){
521 >    /**
522 >     * peek returns element inserted with addFirst
523 >     */
524 >    public void testAddFirst() {
525          LinkedList q = populatedQueue(3);
526 <        q.addFirst(new Integer(4));
527 <        assertEquals(new Integer(4),q.get(0));
528 <    }  
526 >        q.addFirst(four);
527 >        assertSame(four, q.peek());
528 >    }
529  
530 <    public void testAddLast(){
530 >    /**
531 >     * peekFirst returns element inserted with push
532 >     */
533 >    public void testPush() {
534          LinkedList q = populatedQueue(3);
535 <        q.addLast(new Integer(3));
536 <        assertEquals(new Integer(3),q.get(3));
535 >        q.push(four);
536 >        assertSame(four, q.peekFirst());
537      }
538 <    
539 <    public void testGetFirst() {
540 <        LinkedList q = populatedQueue(3);
541 <        assertEquals(new Integer(0),q.getFirst());
542 <    }  
543 <    
544 <    public void testGetLast() {
545 <        LinkedList q = populatedQueue(3);
546 <        assertEquals(new Integer(2),q.getLast());
538 >
539 >    /**
540 >     * pop removes next element, or throws NSEE if empty
541 >     */
542 >    public void testPop() {
543 >        LinkedList q = populatedQueue(SIZE);
544 >        for (int i = 0; i < SIZE; ++i) {
545 >            assertEquals(i, q.pop());
546 >        }
547 >        try {
548 >            q.pop();
549 >            shouldThrow();
550 >        } catch (NoSuchElementException success) {}
551      }
552 <    
553 <    public void testIndexOf(){
554 <        LinkedList q = populatedQueue(3);
555 <        assertEquals(0,q.indexOf(new Integer(0)));
556 <        assertEquals(1,q.indexOf(new Integer(1)));
557 <        assertEquals(2,q.indexOf(new Integer(2)));
558 <        assertEquals(-1, q.indexOf("not there"));
552 >
553 >    /**
554 >     * OfferFirst succeeds
555 >     */
556 >    public void testOfferFirst() {
557 >        LinkedList q = new LinkedList();
558 >        assertTrue(q.offerFirst(new Integer(0)));
559 >        assertTrue(q.offerFirst(new Integer(1)));
560      }
561  
562 <    public void testLastIndexOf(){
563 <        LinkedList q = populatedQueue(3);
564 <        q.add(new Integer(2));
565 <        assertEquals(3,q.lastIndexOf(new Integer(2)));
566 <        assertEquals(-1, q.lastIndexOf("not there"));
562 >    /**
563 >     * OfferLast succeeds
564 >     */
565 >    public void testOfferLast() {
566 >        LinkedList q = new LinkedList();
567 >        assertTrue(q.offerLast(new Integer(0)));
568 >        assertTrue(q.offerLast(new Integer(1)));
569      }
570 <    
571 <    public void testSet(){
572 <        LinkedList q = populatedQueue(3);
573 <        q.set(0,(new Integer(1)));
574 <        assertFalse(q.contains(new Integer(0)));
575 <        assertEquals(new Integer(1), q.get(0));
576 <    }
577 <    
578 <
579 <    public void testGetFirst_NoSuchElementException(){
362 <        try {
363 <            LinkedList l = new LinkedList();
364 <            l.getFirst();
365 <            fail("First Element");
366 <        }
367 <        catch(NoSuchElementException success) {}
368 <    }
369 <    
370 <    public void testRemoveFirst() {
371 <        try {
372 <            LinkedList l = new LinkedList();
373 <            l.removeFirst();
374 <            fail("R: First Element");
375 <        }
376 <        catch(NoSuchElementException success) {}
377 <    }
378 <    
379 <    public void testRemoveLast() {
380 <        try {
381 <            LinkedList l = new LinkedList();
382 <            l.removeLast();
383 <            fail("R: Last Element");  
384 <        }
385 <        catch(NoSuchElementException success) {}
386 <    }
387 <    
388 <    public void testGetLast_NoSuchElementException(){
389 <        try {
390 <            LinkedList l = new LinkedList();
391 <            l.getLast();
392 <            fail("Last Element");  
393 <        }
394 <        catch(NoSuchElementException success) {}
570 >
571 >    /**
572 >     * pollLast succeeds unless empty
573 >     */
574 >    public void testPollLast() {
575 >        LinkedList q = populatedQueue(SIZE);
576 >        for (int i = SIZE - 1; i >= 0; --i) {
577 >            assertEquals(i, q.pollLast());
578 >        }
579 >        assertNull(q.pollLast());
580      }
581  
582 +    /**
583 +     * peekFirst returns next element, or null if empty
584 +     */
585 +    public void testPeekFirst() {
586 +        LinkedList q = populatedQueue(SIZE);
587 +        for (int i = 0; i < SIZE; ++i) {
588 +            assertEquals(i, q.peekFirst());
589 +            assertEquals(i, q.pollFirst());
590 +            assertTrue(q.peekFirst() == null ||
591 +                       !q.peekFirst().equals(i));
592 +        }
593 +        assertNull(q.peekFirst());
594 +    }
595  
596 <    public void testAddAll_NullPointerException(){
597 <        try {
598 <            LinkedList l = new LinkedList();
599 <            l.addAll((Collection)null);
600 <            fail("Add All Failed");
601 <        }
602 <        catch(NullPointerException success){}
603 <    }
604 <    
605 <    
606 <    public void testAddAll1_OutOfBounds() {
607 <        try {
410 <            LinkedList l = new LinkedList();
411 <            l.addAll(4,new LinkedList());
412 <            fail("boolean addAll(int, Collection) should throw IndexOutOfBoundsException");
413 <        }
414 <        catch(IndexOutOfBoundsException  success) {}
596 >    /**
597 >     * peekLast returns next element, or null if empty
598 >     */
599 >    public void testPeekLast() {
600 >        LinkedList q = populatedQueue(SIZE);
601 >        for (int i = SIZE - 1; i >= 0; --i) {
602 >            assertEquals(i, q.peekLast());
603 >            assertEquals(i, q.pollLast());
604 >            assertTrue(q.peekLast() == null ||
605 >                       !q.peekLast().equals(i));
606 >        }
607 >        assertNull(q.peekLast());
608      }
609 <    
610 <    
611 <    public void testAddAll2_IndexOutOfBoundsException() {
612 <        try {
613 <            LinkedList l = new LinkedList();
614 <            l.add(new Object());
615 <            LinkedList m = new LinkedList();
616 <            m.add(new Object());
617 <            l.addAll(4,m);
618 <            fail("Add All Failed " + l.size());
619 <        }catch(IndexOutOfBoundsException  success) {}
609 >
610 >    public void testFirstElement() {
611 >        LinkedList q = populatedQueue(SIZE);
612 >        for (int i = 0; i < SIZE; ++i) {
613 >            assertEquals(i, q.getFirst());
614 >            assertEquals(i, q.pollFirst());
615 >        }
616 >        try {
617 >            q.getFirst();
618 >            shouldThrow();
619 >        } catch (NoSuchElementException success) {}
620      }
621  
622 <    public void testAddAll4_BadIndex() {
623 <        try {
624 <            LinkedList l = new LinkedList();
625 <            l.add(new Object());
626 <            LinkedList m = new LinkedList();
627 <            m.add(new Object());
628 <            l.addAll(-1,m);
629 <            fail("Add All Failed " + l.size());
630 <        }catch(IndexOutOfBoundsException  success){}
631 <    }
632 <
633 <    public void testget1() {
634 <        try {
635 <            LinkedList l = new LinkedList();
443 <            l.add(new Object());
444 <            l.get(-1);
445 <            fail("get Failed - l.get(-1)");
446 <        }catch(IndexOutOfBoundsException  success) {}  
447 <    }
448 <
449 <    public void testget2() {
450 <        try {
451 <            LinkedList l = new LinkedList();
452 <            l.add(new Object());
453 <            l.get(5);
454 <            fail("get Failed - l.get(5) l.size(): " + l.size());
455 <        }catch(IndexOutOfBoundsException  success){}    
456 <    }
457 <
458 <    public void testset1() {
459 <        try {
460 <            LinkedList l = new LinkedList();
461 <            l.add(new Object());
462 <            l.set(-1,new Object());
463 <            fail("set failed - l.set(-1,...)" + l.size());
464 <        }catch(IndexOutOfBoundsException  success){}    
465 <    }
466 <
467 <    public void testset2() {
468 <        try {
469 <            LinkedList l = new LinkedList();
470 <            l.add(new Object());
471 <            l.set(5,new Object());
472 <            fail("set failed = l.set(5,..) l.size():" + l.size());
473 <        }catch(IndexOutOfBoundsException  success){}    
474 <    }
475 <
476 <    public void testadd1() {
477 <        try {
478 <            LinkedList l = new LinkedList();
479 <            l.add(new Object());
480 <            l.add(-1,new Object());
481 <            fail("Add Failed - l.add(-1) l.size(): " + l.size());
482 <        }catch(IndexOutOfBoundsException  success){}    
483 <    }
484 <
485 <    public void add2(){
486 <        try {
487 <            LinkedList l = new LinkedList();
488 <            l.add(new Object());
489 <            l.add(5,new Object());
490 <            fail("Add Failed  l.add(f,...)");
491 <        }catch(IndexOutOfBoundsException  success) {}  
492 <    }
493 <
494 <    public void testremove(){
495 <        try {
496 <            LinkedList l = new LinkedList();
497 <            l.add(new Object());
498 <            l.remove(-1);
499 <            fail("Remove Failed l.remove(-1); l.size():" + l.size());
500 <        }catch(IndexOutOfBoundsException  success){}
501 <    }
502 <    
503 <    public void testremove1(){
504 <        try {
505 <            LinkedList l = new LinkedList();
506 <            l.add(new Object());
507 <            l.remove(5);
508 <            fail("Remove Failed l.remove(5); l.size():" + l.size());
509 <        }catch(IndexOutOfBoundsException  success){}
510 <    }
511 <
512 <    
513 <    public void testremove2(){
514 <        try{
515 <            LinkedList l = new LinkedList();
516 <            l.remove();
517 <            fail("LinkedList - Object remove() should throw a NoSuchElementException");
518 <        }catch(NoSuchElementException e){}      
519 <    }
520 <
521 <    public void testlistIt1() {
522 <        try {
523 <            LinkedList l = new LinkedList();
524 <            l.add(new Object());
525 <            l.listIterator(5);
526 <            fail("l.listIterator(5) l.size():" + l.size());
527 <        }catch(IndexOutOfBoundsException  success){}
528 <    }
529 <    
530 <    public void testlistIt2() {
531 <        try {
532 <            LinkedList l = new LinkedList();
533 <            l.add(new Object());
534 <            l.listIterator(-1);
535 <            fail("l.listIterator(-1) l.size():" + l.size());
536 <        }catch(IndexOutOfBoundsException  success){}
537 <    }
538 <    
539 <    public void testlistIt3() {
540 <        try {
541 <            LinkedList l = new LinkedList();
542 <            l.add(new Object());
543 <            ListIterator a = l.listIterator(0);
544 <            l.removeFirst();
545 <            a.next();
546 <            fail("l.listIterator(-1) l.size():" + l.size());
547 <        }catch(ConcurrentModificationException success){}
548 <    }
549 <
550 <    public void testToArray_BadArg() {
551 <        try {
552 <            LinkedList l = new LinkedList();
553 <            l.add(new Object());
554 <            Object o[] = l.toArray(null);
555 <            fail("l.toArray(null) did not throw an exception");
556 <        }catch(NullPointerException success){}
622 >    /**
623 >     * getLast returns next element, or throws NSEE if empty
624 >     */
625 >    public void testLastElement() {
626 >        LinkedList q = populatedQueue(SIZE);
627 >        for (int i = SIZE - 1; i >= 0; --i) {
628 >            assertEquals(i, q.getLast());
629 >            assertEquals(i, q.pollLast());
630 >        }
631 >        try {
632 >            q.getLast();
633 >            shouldThrow();
634 >        } catch (NoSuchElementException success) {}
635 >        assertNull(q.peekLast());
636      }
637  
638 <    public void testToArray1_BadArg() {
639 <        try {
640 <            LinkedList l = new LinkedList();
641 <            l.add(new Integer(5));
642 <            Object o[] = l.toArray(new String[10] );
643 <            fail("l.toArray(String[] f) did not throw an exception, an Integer was added");
644 <        }catch(ArrayStoreException  success){}
638 >    /**
639 >     * removeFirstOccurrence(x) removes x and returns true if present
640 >     */
641 >    public void testRemoveFirstOccurrence() {
642 >        LinkedList q = populatedQueue(SIZE);
643 >        for (int i = 1; i < SIZE; i += 2) {
644 >            assertTrue(q.removeFirstOccurrence(new Integer(i)));
645 >        }
646 >        for (int i = 0; i < SIZE; i += 2) {
647 >            assertTrue(q.removeFirstOccurrence(new Integer(i)));
648 >            assertFalse(q.removeFirstOccurrence(new Integer(i + 1)));
649 >        }
650 >        assertTrue(q.isEmpty());
651 >    }
652 >
653 >    /**
654 >     * removeLastOccurrence(x) removes x and returns true if present
655 >     */
656 >    public void testRemoveLastOccurrence() {
657 >        LinkedList q = populatedQueue(SIZE);
658 >        for (int i = 1; i < SIZE; i += 2) {
659 >            assertTrue(q.removeLastOccurrence(new Integer(i)));
660 >        }
661 >        for (int i = 0; i < SIZE; i += 2) {
662 >            assertTrue(q.removeLastOccurrence(new Integer(i)));
663 >            assertFalse(q.removeLastOccurrence(new Integer(i + 1)));
664 >        }
665 >        assertTrue(q.isEmpty());
666      }
667  
668   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines