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

Comparing jsr166/src/test/tck/CopyOnWriteArraySetTest.java (file contents):
Revision 1.20 by jsr166, Sat Nov 26 07:39:02 2011 UTC vs.
Revision 1.28 by jsr166, Wed Dec 31 19:05:42 2014 UTC

# Line 6 | Line 6
6   * Pat Fisher, Mike Judd.
7   */
8  
9 < import junit.framework.*;
9 > import java.util.ArrayList;
10   import java.util.Arrays;
11 + import java.util.Collection;
12 + import java.util.Collections;
13   import java.util.Iterator;
14 + import java.util.NoSuchElementException;
15   import java.util.Set;
16   import java.util.Vector;
17   import java.util.concurrent.CopyOnWriteArraySet;
18  
19 + import junit.framework.Test;
20 + import junit.framework.TestSuite;
21 +
22   public class CopyOnWriteArraySetTest extends JSR166TestCase {
23      public static void main(String[] args) {
24          junit.textui.TestRunner.run(suite());
# Line 21 | Line 27 | public class CopyOnWriteArraySetTest ext
27          return new TestSuite(CopyOnWriteArraySetTest.class);
28      }
29  
30 <    static CopyOnWriteArraySet populatedSet(int n) {
31 <        CopyOnWriteArraySet a = new CopyOnWriteArraySet();
30 >    static CopyOnWriteArraySet<Integer> populatedSet(int n) {
31 >        CopyOnWriteArraySet<Integer> a = new CopyOnWriteArraySet<Integer>();
32          assertTrue(a.isEmpty());
33 <        for (int i = 0; i < n; ++i)
34 <            a.add(new Integer(i));
33 >        for (int i = 0; i < n; i++)
34 >            a.add(i);
35          assertFalse(a.isEmpty());
36          assertEquals(n, a.size());
37          return a;
38      }
39  
40 +    static CopyOnWriteArraySet populatedSet(Integer[] elements) {
41 +        CopyOnWriteArraySet<Integer> a = new CopyOnWriteArraySet<Integer>();
42 +        assertTrue(a.isEmpty());
43 +        for (int i = 0; i < elements.length; i++)
44 +            a.add(elements[i]);
45 +        assertFalse(a.isEmpty());
46 +        assertEquals(elements.length, a.size());
47 +        return a;
48 +    }
49 +
50      /**
51       * Default-constructed set is empty
52       */
# Line 156 | Line 172 | public class CopyOnWriteArraySetTest ext
172      }
173  
174      /**
175 <     * iterator() returns an iterator containing the elements of the set
175 >     * iterator() returns an iterator containing the elements of the
176 >     * set in insertion order
177       */
178      public void testIterator() {
179 <        CopyOnWriteArraySet full = populatedSet(3);
180 <        Iterator i = full.iterator();
181 <        int j;
182 <        for (j = 0; i.hasNext(); j++)
183 <            assertEquals(j, i.next());
184 <        assertEquals(3, j);
179 >        Collection empty = new CopyOnWriteArraySet();
180 >        assertFalse(empty.iterator().hasNext());
181 >        try {
182 >            empty.iterator().next();
183 >            shouldThrow();
184 >        } catch (NoSuchElementException success) {}
185 >
186 >        Integer[] elements = new Integer[SIZE];
187 >        for (int i = 0; i < SIZE; i++)
188 >            elements[i] = i;
189 >        Collections.shuffle(Arrays.asList(elements));
190 >        Collection<Integer> full = populatedSet(elements);
191 >
192 >        Iterator it = full.iterator();
193 >        for (int j = 0; j < SIZE; j++) {
194 >            assertTrue(it.hasNext());
195 >            assertEquals(elements[j], it.next());
196 >        }
197 >        assertFalse(it.hasNext());
198 >        try {
199 >            it.next();
200 >            shouldThrow();
201 >        } catch (NoSuchElementException success) {}
202      }
203  
204      /**
# Line 184 | Line 218 | public class CopyOnWriteArraySetTest ext
218       * toString holds toString of elements
219       */
220      public void testToString() {
221 +        assertEquals("[]", new CopyOnWriteArraySet().toString());
222          CopyOnWriteArraySet full = populatedSet(3);
223          String s = full.toString();
224 <        for (int i = 0; i < 3; ++i) {
224 >        for (int i = 0; i < 3; ++i)
225              assertTrue(s.contains(String.valueOf(i)));
226 <        }
226 >        assertEquals(new ArrayList(full).toString(),
227 >                     full.toString());
228      }
229  
230      /**
# Line 224 | Line 260 | public class CopyOnWriteArraySetTest ext
260      }
261  
262      /**
263 <     * toArray returns an Object array containing all elements from the set
263 >     * toArray() returns an Object array containing all elements from
264 >     * the set in insertion order
265       */
266      public void testToArray() {
267 <        CopyOnWriteArraySet<Integer> full = populatedSet(SIZE);
268 <        Object[] array = full.toArray();
269 <        Iterator<Integer> it = full.iterator();
267 >        Object[] a = new CopyOnWriteArraySet().toArray();
268 >        assertTrue(Arrays.equals(new Object[0], a));
269 >        assertSame(Object[].class, a.getClass());
270 >
271 >        Integer[] elements = new Integer[SIZE];
272          for (int i = 0; i < SIZE; i++)
273 <            assertSame(array[i], it.next());
274 <        assertFalse(it.hasNext());
273 >            elements[i] = i;
274 >        Collections.shuffle(Arrays.asList(elements));
275 >        Collection<Integer> full = populatedSet(elements);
276 >
277 >        assertTrue(Arrays.equals(elements, full.toArray()));
278 >        assertSame(Object[].class, full.toArray().getClass());
279      }
280  
281      /**
282 <     * toArray returns an Integer array containing all elements from
283 <     * the set
282 >     * toArray(Integer array) returns an Integer array containing all
283 >     * elements from the set in insertion order
284       */
285      public void testToArray2() {
286 <        CopyOnWriteArraySet<Integer> full = populatedSet(SIZE);
287 <        Integer[] ints = new Integer[SIZE];
288 <        assertSame(ints, full.toArray(ints));
289 <        Iterator<Integer> it = full.iterator();
286 >        Collection empty = new CopyOnWriteArraySet();
287 >        Integer[] a;
288 >
289 >        a = new Integer[0];
290 >        assertSame(a, empty.toArray(a));
291 >
292 >        a = new Integer[SIZE/2];
293 >        Arrays.fill(a, 42);
294 >        assertSame(a, empty.toArray(a));
295 >        assertNull(a[0]);
296 >        for (int i = 1; i < a.length; i++)
297 >            assertEquals(42, (int) a[i]);
298 >
299 >        Integer[] elements = new Integer[SIZE];
300          for (int i = 0; i < SIZE; i++)
301 <            assertSame(ints[i], it.next());
302 <        assertFalse(it.hasNext());
301 >            elements[i] = i;
302 >        Collections.shuffle(Arrays.asList(elements));
303 >        Collection<Integer> full = populatedSet(elements);
304 >
305 >        Arrays.fill(a, 42);
306 >        assertTrue(Arrays.equals(elements, full.toArray(a)));
307 >        for (int i = 0; i < a.length; i++)
308 >            assertEquals(42, (int) a[i]);
309 >        assertSame(Integer[].class, full.toArray(a).getClass());
310 >
311 >        a = new Integer[SIZE];
312 >        Arrays.fill(a, 42);
313 >        assertSame(a, full.toArray(a));
314 >        assertTrue(Arrays.equals(elements, a));
315 >
316 >        a = new Integer[2*SIZE];
317 >        Arrays.fill(a, 42);
318 >        assertSame(a, full.toArray(a));
319 >        assertTrue(Arrays.equals(elements, Arrays.copyOf(a, SIZE)));
320 >        assertNull(a[SIZE]);
321 >        for (int i = SIZE + 1; i < a.length; i++)
322 >            assertEquals(42, (int) a[i]);
323      }
324  
325      /**
# Line 270 | Line 343 | public class CopyOnWriteArraySetTest ext
343          Set x = populatedSet(SIZE);
344          Set y = serialClone(x);
345  
346 <        assertTrue(x != y);
346 >        assertNotSame(y, x);
347          assertEquals(x.size(), y.size());
348 +        assertEquals(x.toString(), y.toString());
349 +        assertTrue(Arrays.equals(x.toArray(), y.toArray()));
350 +        assertEquals(x, y);
351 +        assertEquals(y, x);
352 +    }
353 +
354 +    /**
355 +     * addAll is idempotent
356 +     */
357 +    public void testAddAll_idempotent() throws Exception {
358 +        Set x = populatedSet(SIZE);
359 +        Set y = new CopyOnWriteArraySet(x);
360 +        y.addAll(x);
361          assertEquals(x, y);
362          assertEquals(y, x);
363      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines