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

Comparing jsr166/src/test/tck/PriorityQueueTest.java (file contents):
Revision 1.5 by dl, Sat Sep 20 18:20:08 2003 UTC vs.
Revision 1.19 by jsr166, Fri Nov 5 00:17:22 2010 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/licenses/publicdomain
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 11 | Line 12 | import java.util.concurrent.*;
12   import java.io.*;
13  
14   public class PriorityQueueTest extends JSR166TestCase {
14
15      public static void main(String[] args) {
16 <        junit.textui.TestRunner.run (suite());  
16 >        junit.textui.TestRunner.run(suite());
17      }
18
18      public static Test suite() {
19 <        return new TestSuite(PriorityQueueTest.class);
19 >        return new TestSuite(PriorityQueueTest.class);
20      }
21  
22 <    static class MyReverseComparator implements Comparator {
22 >    static class MyReverseComparator implements Comparator {
23          public int compare(Object x, Object y) {
24 <            int i = ((Integer)x).intValue();
26 <            int j = ((Integer)y).intValue();
27 <            if (i < j) return 1;
28 <            if (i > j) return -1;
29 <            return 0;
24 >            return ((Comparable)y).compareTo(x);
25          }
26      }
27  
33
28      /**
29       * Create a queue of given size containing consecutive
30       * Integers 0 ... n.
31       */
32 <    private PriorityQueue populatedQueue(int n) {
33 <        PriorityQueue q = new PriorityQueue(n);
32 >    private PriorityQueue<Integer> populatedQueue(int n) {
33 >        PriorityQueue<Integer> q = new PriorityQueue<Integer>(n);
34          assertTrue(q.isEmpty());
35 <        for(int i = n-1; i >= 0; i-=2)
36 <            assertTrue(q.offer(new Integer(i)));
37 <        for(int i = (n & 1); i < n; i+=2)
38 <            assertTrue(q.offer(new Integer(i)));
35 >        for (int i = n-1; i >= 0; i-=2)
36 >            assertTrue(q.offer(new Integer(i)));
37 >        for (int i = (n & 1); i < n; i+=2)
38 >            assertTrue(q.offer(new Integer(i)));
39          assertFalse(q.isEmpty());
40 <        assertEquals(n, q.size());
40 >        assertEquals(n, q.size());
41          return q;
42      }
43 <
43 >
44      /**
45 <     *
45 >     * A new queue has unbounded capacity
46       */
47      public void testConstructor1() {
48          assertEquals(0, new PriorityQueue(SIZE).size());
49      }
50  
51      /**
52 <     *
52 >     * Constructor throws IAE if capacity argument nonpositive
53       */
54      public void testConstructor2() {
55          try {
56              PriorityQueue q = new PriorityQueue(0);
57              shouldThrow();
58 <        }
65 <        catch (IllegalArgumentException success) {}
58 >        } catch (IllegalArgumentException success) {}
59      }
60  
61      /**
62 <     *
62 >     * Initializing from null Collection throws NPE
63       */
64      public void testConstructor3() {
72
65          try {
66              PriorityQueue q = new PriorityQueue((Collection)null);
67              shouldThrow();
68 <        }
77 <        catch (NullPointerException success) {}
68 >        } catch (NullPointerException success) {}
69      }
70  
71      /**
72 <     *
72 >     * Initializing from Collection of null elements throws NPE
73       */
74      public void testConstructor4() {
75          try {
76              Integer[] ints = new Integer[SIZE];
77              PriorityQueue q = new PriorityQueue(Arrays.asList(ints));
78              shouldThrow();
79 <        }
89 <        catch (NullPointerException success) {}
79 >        } catch (NullPointerException success) {}
80      }
81  
82      /**
83 <     *
83 >     * Initializing from Collection with some null elements throws NPE
84       */
85      public void testConstructor5() {
86          try {
# Line 99 | Line 89 | public class PriorityQueueTest extends J
89                  ints[i] = new Integer(i);
90              PriorityQueue q = new PriorityQueue(Arrays.asList(ints));
91              shouldThrow();
92 <        }
103 <        catch (NullPointerException success) {}
92 >        } catch (NullPointerException success) {}
93      }
94  
95      /**
96 <     *
96 >     * Queue contains all elements of collection used to initialize
97       */
98      public void testConstructor6() {
99 <        try {
100 <            Integer[] ints = new Integer[SIZE];
101 <            for (int i = 0; i < SIZE; ++i)
102 <                ints[i] = new Integer(i);
103 <            PriorityQueue q = new PriorityQueue(Arrays.asList(ints));
104 <            for (int i = 0; i < SIZE; ++i)
116 <                assertEquals(ints[i], q.poll());
117 <        }
118 <        finally {}
99 >        Integer[] ints = new Integer[SIZE];
100 >        for (int i = 0; i < SIZE; ++i)
101 >            ints[i] = new Integer(i);
102 >        PriorityQueue q = new PriorityQueue(Arrays.asList(ints));
103 >        for (int i = 0; i < SIZE; ++i)
104 >            assertEquals(ints[i], q.poll());
105      }
106  
107      /**
108 <     *
108 >     * The comparator used in constructor is used
109       */
110      public void testConstructor7() {
111 <        try {
112 <            MyReverseComparator cmp = new MyReverseComparator();
113 <            PriorityQueue q = new PriorityQueue(SIZE, cmp);
114 <            assertEquals(cmp, q.comparator());
115 <            Integer[] ints = new Integer[SIZE];
116 <            for (int i = 0; i < SIZE; ++i)
117 <                ints[i] = new Integer(i);
118 <            q.addAll(Arrays.asList(ints));
119 <            for (int i = SIZE-1; i >= 0; --i)
134 <                assertEquals(ints[i], q.poll());
135 <        }
136 <        finally {}
111 >        MyReverseComparator cmp = new MyReverseComparator();
112 >        PriorityQueue q = new PriorityQueue(SIZE, cmp);
113 >        assertEquals(cmp, q.comparator());
114 >        Integer[] ints = new Integer[SIZE];
115 >        for (int i = 0; i < SIZE; ++i)
116 >            ints[i] = new Integer(i);
117 >        q.addAll(Arrays.asList(ints));
118 >        for (int i = SIZE-1; i >= 0; --i)
119 >            assertEquals(ints[i], q.poll());
120      }
121  
122      /**
123 <     *
123 >     * isEmpty is true before add, false after
124       */
125      public void testEmpty() {
126          PriorityQueue q = new PriorityQueue(2);
# Line 151 | Line 134 | public class PriorityQueueTest extends J
134      }
135  
136      /**
137 <     *
137 >     * size changes when elements added and removed
138       */
139      public void testSize() {
140          PriorityQueue q = populatedQueue(SIZE);
# Line 166 | Line 149 | public class PriorityQueueTest extends J
149      }
150  
151      /**
152 <     *
152 >     * offer(null) throws NPE
153       */
154      public void testOfferNull() {
155 <        try {
155 >        try {
156              PriorityQueue q = new PriorityQueue(1);
157              q.offer(null);
158              shouldThrow();
159 <        } catch (NullPointerException success) { }  
159 >        } catch (NullPointerException success) {}
160 >    }
161 >
162 >    /**
163 >     * add(null) throws NPE
164 >     */
165 >    public void testAddNull() {
166 >        try {
167 >            PriorityQueue q = new PriorityQueue(1);
168 >            q.add(null);
169 >            shouldThrow();
170 >        } catch (NullPointerException success) {}
171      }
172  
173      /**
174 <     *
174 >     * Offer of comparable element succeeds
175       */
176      public void testOffer() {
177          PriorityQueue q = new PriorityQueue(1);
178 <        assertTrue(q.offer(new Integer(0)));
179 <        assertTrue(q.offer(new Integer(1)));
178 >        assertTrue(q.offer(zero));
179 >        assertTrue(q.offer(one));
180      }
181  
182      /**
183 <     *
183 >     * Offer of non-Comparable throws CCE
184       */
185      public void testOfferNonComparable() {
186          try {
# Line 195 | Line 189 | public class PriorityQueueTest extends J
189              q.offer(new Object());
190              q.offer(new Object());
191              shouldThrow();
192 <        }
199 <        catch(ClassCastException success) {}
192 >        } catch (ClassCastException success) {}
193      }
194  
195      /**
196 <     *
196 >     * add of comparable succeeds
197       */
198      public void testAdd() {
199          PriorityQueue q = new PriorityQueue(SIZE);
# Line 211 | Line 204 | public class PriorityQueueTest extends J
204      }
205  
206      /**
207 <     *
207 >     * addAll(null) throws NPE
208       */
209      public void testAddAll1() {
210          try {
211              PriorityQueue q = new PriorityQueue(1);
212              q.addAll(null);
213              shouldThrow();
214 <        }
222 <        catch (NullPointerException success) {}
214 >        } catch (NullPointerException success) {}
215      }
216 +
217      /**
218 <     *
218 >     * addAll of a collection with null elements throws NPE
219       */
220      public void testAddAll2() {
221          try {
# Line 230 | Line 223 | public class PriorityQueueTest extends J
223              Integer[] ints = new Integer[SIZE];
224              q.addAll(Arrays.asList(ints));
225              shouldThrow();
226 <        }
234 <        catch (NullPointerException success) {}
226 >        } catch (NullPointerException success) {}
227      }
228 +
229      /**
230 <     *
230 >     * addAll of a collection with any null elements throws NPE after
231 >     * possibly adding some elements
232       */
233      public void testAddAll3() {
234          try {
# Line 244 | Line 238 | public class PriorityQueueTest extends J
238                  ints[i] = new Integer(i);
239              q.addAll(Arrays.asList(ints));
240              shouldThrow();
241 <        }
248 <        catch (NullPointerException success) {}
241 >        } catch (NullPointerException success) {}
242      }
243  
244      /**
245 <     *
245 >     * Queue contains all elements of successful addAll
246       */
247      public void testAddAll5() {
248 <        try {
249 <            Integer[] empty = new Integer[0];
250 <            Integer[] ints = new Integer[SIZE];
251 <            for (int i = 0; i < SIZE; ++i)
252 <                ints[i] = new Integer(SIZE-1-i);
253 <            PriorityQueue q = new PriorityQueue(SIZE);
254 <            assertFalse(q.addAll(Arrays.asList(empty)));
255 <            assertTrue(q.addAll(Arrays.asList(ints)));
256 <            for (int i = 0; i < SIZE; ++i)
264 <                assertEquals(new Integer(i), q.poll());
265 <        }
266 <        finally {}
248 >        Integer[] empty = new Integer[0];
249 >        Integer[] ints = new Integer[SIZE];
250 >        for (int i = 0; i < SIZE; ++i)
251 >            ints[i] = new Integer(SIZE-1-i);
252 >        PriorityQueue q = new PriorityQueue(SIZE);
253 >        assertFalse(q.addAll(Arrays.asList(empty)));
254 >        assertTrue(q.addAll(Arrays.asList(ints)));
255 >        for (int i = 0; i < SIZE; ++i)
256 >            assertEquals(new Integer(i), q.poll());
257      }
258  
259      /**
260 <     *
260 >     * poll succeeds unless empty
261       */
262      public void testPoll() {
263          PriorityQueue q = populatedQueue(SIZE);
264          for (int i = 0; i < SIZE; ++i) {
265 <            assertEquals(i, ((Integer)q.poll()).intValue());
265 >            assertEquals(i, q.poll());
266          }
267 <        assertNull(q.poll());
267 >        assertNull(q.poll());
268      }
269  
270      /**
271 <     *
271 >     * peek returns next element, or null if empty
272       */
273      public void testPeek() {
274          PriorityQueue q = populatedQueue(SIZE);
275          for (int i = 0; i < SIZE; ++i) {
276 <            assertEquals(i, ((Integer)q.peek()).intValue());
277 <            q.poll();
276 >            assertEquals(i, q.peek());
277 >            assertEquals(i, q.poll());
278              assertTrue(q.peek() == null ||
279 <                       i != ((Integer)q.peek()).intValue());
279 >                       !q.peek().equals(i));
280          }
281 <        assertNull(q.peek());
281 >        assertNull(q.peek());
282      }
283  
284      /**
285 <     *
285 >     * element returns next element, or throws NSEE if empty
286       */
287      public void testElement() {
288          PriorityQueue q = populatedQueue(SIZE);
289          for (int i = 0; i < SIZE; ++i) {
290 <            assertEquals(i, ((Integer)q.element()).intValue());
291 <            q.poll();
290 >            assertEquals(i, q.element());
291 >            assertEquals(i, q.poll());
292          }
293          try {
294              q.element();
295              shouldThrow();
296 <        }
307 <        catch (NoSuchElementException success) {}
296 >        } catch (NoSuchElementException success) {}
297      }
298  
299      /**
300 <     *
300 >     * remove removes next element, or throws NSEE if empty
301       */
302      public void testRemove() {
303          PriorityQueue q = populatedQueue(SIZE);
304          for (int i = 0; i < SIZE; ++i) {
305 <            assertEquals(i, ((Integer)q.remove()).intValue());
305 >            assertEquals(i, q.remove());
306          }
307          try {
308              q.remove();
309              shouldThrow();
310 <        } catch (NoSuchElementException success){
322 <        }  
310 >        } catch (NoSuchElementException success) {}
311      }
312  
313      /**
314 <     *
314 >     * remove(x) removes x and returns true if present
315       */
316      public void testRemoveElement() {
317          PriorityQueue q = populatedQueue(SIZE);
# Line 336 | Line 324 | public class PriorityQueueTest extends J
324          }
325          assertTrue(q.isEmpty());
326      }
327 <        
327 >
328      /**
329 <     *
329 >     * contains(x) reports true when elements added but not yet removed
330       */
331      public void testContains() {
332          PriorityQueue q = populatedQueue(SIZE);
# Line 350 | Line 338 | public class PriorityQueueTest extends J
338      }
339  
340      /**
341 <     *
341 >     * clear removes all elements
342       */
343      public void testClear() {
344          PriorityQueue q = populatedQueue(SIZE);
# Line 364 | Line 352 | public class PriorityQueueTest extends J
352      }
353  
354      /**
355 <     *
355 >     * containsAll(c) is true when c contains a subset of elements
356       */
357      public void testContainsAll() {
358          PriorityQueue q = populatedQueue(SIZE);
# Line 378 | Line 366 | public class PriorityQueueTest extends J
366      }
367  
368      /**
369 <     *
369 >     * retainAll(c) retains only those elements of c and reports true if changed
370       */
371      public void testRetainAll() {
372          PriorityQueue q = populatedQueue(SIZE);
# Line 397 | Line 385 | public class PriorityQueueTest extends J
385      }
386  
387      /**
388 <     *
388 >     * removeAll(c) removes only those elements of c and reports true if changed
389       */
390      public void testRemoveAll() {
391          for (int i = 1; i < SIZE; ++i) {
# Line 413 | Line 401 | public class PriorityQueueTest extends J
401      }
402  
403      /**
404 <     *
404 >     * toArray contains all elements
405       */
406      public void testToArray() {
407          PriorityQueue q = populatedQueue(SIZE);
408 <        Object[] o = q.toArray();
408 >        Object[] o = q.toArray();
409          Arrays.sort(o);
410 <        for(int i = 0; i < o.length; i++)
411 <            assertEquals(o[i], q.poll());
410 >        for (int i = 0; i < o.length; i++)
411 >            assertSame(o[i], q.poll());
412      }
413  
414      /**
415 <     *
415 >     * toArray(a) contains all elements
416       */
417      public void testToArray2() {
418 <        PriorityQueue q = populatedQueue(SIZE);
419 <        Integer[] ints = new Integer[SIZE];
420 <        ints = (Integer[])q.toArray(ints);
418 >        PriorityQueue<Integer> q = populatedQueue(SIZE);
419 >        Integer[] ints = new Integer[SIZE];
420 >        Integer[] array = q.toArray(ints);
421 >        assertSame(ints, array);
422          Arrays.sort(ints);
423 <        for(int i = 0; i < ints.length; i++)
424 <            assertEquals(ints[i], q.poll());
423 >        for (int i = 0; i < ints.length; i++)
424 >            assertSame(ints[i], q.poll());
425      }
426 <    
426 >
427      /**
428 <     *
428 >     * iterator iterates through all elements
429       */
430      public void testIterator() {
431          PriorityQueue q = populatedQueue(SIZE);
432          int i = 0;
433 <        Iterator it = q.iterator();
434 <        while(it.hasNext()) {
433 >        Iterator it = q.iterator();
434 >        while (it.hasNext()) {
435              assertTrue(q.contains(it.next()));
436              ++i;
437          }
# Line 450 | Line 439 | public class PriorityQueueTest extends J
439      }
440  
441      /**
442 <     *
442 >     * iterator.remove removes current element
443       */
444 <    public void testIteratorRemove () {
444 >    public void testIteratorRemove() {
445          final PriorityQueue q = new PriorityQueue(3);
446          q.add(new Integer(2));
447          q.add(new Integer(1));
# Line 470 | Line 459 | public class PriorityQueueTest extends J
459  
460  
461      /**
462 <     *
462 >     * toString contains toStrings of elements
463       */
464      public void testToString() {
465          PriorityQueue q = populatedQueue(SIZE);
# Line 478 | Line 467 | public class PriorityQueueTest extends J
467          for (int i = 0; i < SIZE; ++i) {
468              assertTrue(s.indexOf(String.valueOf(i)) >= 0);
469          }
470 <    }        
470 >    }
471  
472      /**
473 <     *
473 >     * A deserialized serialized queue has same elements
474       */
475 <    public void testSerialization() {
475 >    public void testSerialization() throws Exception {
476          PriorityQueue q = populatedQueue(SIZE);
477 <        try {
478 <            ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
479 <            ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
480 <            out.writeObject(q);
481 <            out.close();
482 <
483 <            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
484 <            ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
485 <            PriorityQueue r = (PriorityQueue)in.readObject();
486 <            assertEquals(q.size(), r.size());
487 <            while (!q.isEmpty())
499 <                assertEquals(q.remove(), r.remove());
500 <        } catch(Exception e){
501 <            unexpectedException();
502 <        }
477 >        ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
478 >        ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
479 >        out.writeObject(q);
480 >        out.close();
481 >
482 >        ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
483 >        ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
484 >        PriorityQueue r = (PriorityQueue)in.readObject();
485 >        assertEquals(q.size(), r.size());
486 >        while (!q.isEmpty())
487 >            assertEquals(q.remove(), r.remove());
488      }
489   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines