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

Comparing jsr166/src/test/tck/Collection8Test.java (file contents):
Revision 1.4 by jsr166, Mon Oct 17 01:55:48 2016 UTC vs.
Revision 1.10 by jsr166, Sat Nov 5 01:27:00 2016 UTC

# Line 10 | Line 10 | import static java.util.concurrent.TimeU
10   import java.util.ArrayList;
11   import java.util.Collection;
12   import java.util.Collections;
13 + import java.util.Deque;
14 + import java.util.HashSet;
15 + import java.util.Iterator;
16 + import java.util.List;
17 + import java.util.NoSuchElementException;
18 + import java.util.Queue;
19 + import java.util.Spliterator;
20   import java.util.concurrent.CountDownLatch;
21   import java.util.concurrent.Executors;
22   import java.util.concurrent.ExecutorService;
23   import java.util.concurrent.Future;
24 + import java.util.concurrent.ThreadLocalRandom;
25   import java.util.concurrent.atomic.AtomicBoolean;
26   import java.util.concurrent.atomic.AtomicLong;
27 + import java.util.concurrent.atomic.AtomicReference;
28   import java.util.function.Consumer;
29 + import java.util.function.Predicate;
30  
31   import junit.framework.Test;
32  
# Line 39 | Line 49 | public class Collection8Test extends JSR
49                                        impl);
50      }
51  
52 +    Object bomb() {
53 +        return new Object() {
54 +                public boolean equals(Object x) { throw new AssertionError(); }
55 +                public int hashCode() { throw new AssertionError(); }
56 +            };
57 +    }
58 +
59 +    /** Checks properties of empty collections. */
60 +    public void testEmptyMeansEmpty() {
61 +        Collection c = impl.emptyCollection();
62 +        assertTrue(c.isEmpty());
63 +        assertEquals(0, c.size());
64 +        assertEquals("[]", c.toString());
65 +        {
66 +            Object[] a = c.toArray();
67 +            assertEquals(0, a.length);
68 +            assertSame(Object[].class, a.getClass());
69 +        }
70 +        {
71 +            Object[] a = new Object[0];
72 +            assertSame(a, c.toArray(a));
73 +        }
74 +        {
75 +            Integer[] a = new Integer[0];
76 +            assertSame(a, c.toArray(a));
77 +        }
78 +        {
79 +            Integer[] a = { 1, 2, 3};
80 +            assertSame(a, c.toArray(a));
81 +            assertNull(a[0]);
82 +            assertSame(2, a[1]);
83 +            assertSame(3, a[2]);
84 +        }
85 +        assertIteratorExhausted(c.iterator());
86 +        Consumer alwaysThrows = (e) -> { throw new AssertionError(); };
87 +        c.forEach(alwaysThrows);
88 +        c.iterator().forEachRemaining(alwaysThrows);
89 +        c.spliterator().forEachRemaining(alwaysThrows);
90 +        assertFalse(c.spliterator().tryAdvance(alwaysThrows));
91 +        if (c.spliterator().hasCharacteristics(Spliterator.SIZED))
92 +            assertEquals(0, c.spliterator().estimateSize());
93 +        assertFalse(c.contains(bomb()));
94 +        assertFalse(c.remove(bomb()));
95 +        if (Queue.class.isAssignableFrom(impl.klazz())) {
96 +            Queue q = (Queue) c;
97 +            assertNull(q.peek());
98 +            assertNull(q.poll());
99 +        }
100 +        if (Deque.class.isAssignableFrom(impl.klazz())) {
101 +            Deque d = (Deque) c;
102 +            assertNull(d.peekFirst());
103 +            assertNull(d.peekLast());
104 +            assertNull(d.pollFirst());
105 +            assertNull(d.pollLast());
106 +            assertIteratorExhausted(d.descendingIterator());
107 +            d.descendingIterator().forEachRemaining(alwaysThrows);
108 +            assertFalse(d.removeFirstOccurrence(bomb()));
109 +            assertFalse(d.removeLastOccurrence(bomb()));
110 +        }
111 +    }
112 +
113 +    public void testNullPointerExceptions() {
114 +        Collection c = impl.emptyCollection();
115 +        assertThrows(
116 +            NullPointerException.class,
117 +            () -> c.addAll(null),
118 +            () -> c.containsAll(null),
119 +            () -> c.retainAll(null),
120 +            () -> c.removeAll(null),
121 +            () -> c.removeIf(null),
122 +            () -> c.forEach(null),
123 +            () -> c.iterator().forEachRemaining(null),
124 +            () -> c.spliterator().forEachRemaining(null),
125 +            () -> c.spliterator().tryAdvance(null),
126 +            () -> c.toArray(null));
127 +
128 +        if (!impl.permitsNulls()) {
129 +            assertThrows(
130 +                NullPointerException.class,
131 +                () -> c.add(null));
132 +        }
133 +        if (!impl.permitsNulls()
134 +            && Queue.class.isAssignableFrom(impl.klazz())) {
135 +            Queue q = (Queue) c;
136 +            assertThrows(
137 +                NullPointerException.class,
138 +                () -> q.offer(null));
139 +        }
140 +        if (!impl.permitsNulls()
141 +            && Deque.class.isAssignableFrom(impl.klazz())) {
142 +            Deque d = (Deque) c;
143 +            assertThrows(
144 +                NullPointerException.class,
145 +                () -> d.addFirst(null),
146 +                () -> d.addLast(null),
147 +                () -> d.offerFirst(null),
148 +                () -> d.offerLast(null),
149 +                () -> d.push(null),
150 +                () -> d.descendingIterator().forEachRemaining(null));
151 +        }
152 +    }
153 +
154 +    public void testNoSuchElementExceptions() {
155 +        Collection c = impl.emptyCollection();
156 +        assertThrows(
157 +            NoSuchElementException.class,
158 +            () -> c.iterator().next());
159 +
160 +        if (Queue.class.isAssignableFrom(impl.klazz())) {
161 +            Queue q = (Queue) c;
162 +            assertThrows(
163 +                NoSuchElementException.class,
164 +                () -> q.element(),
165 +                () -> q.remove());
166 +        }
167 +        if (Deque.class.isAssignableFrom(impl.klazz())) {
168 +            Deque d = (Deque) c;
169 +            assertThrows(
170 +                NoSuchElementException.class,
171 +                () -> d.getFirst(),
172 +                () -> d.getLast(),
173 +                () -> d.removeFirst(),
174 +                () -> d.removeLast(),
175 +                () -> d.pop(),
176 +                () -> d.descendingIterator().next());
177 +        }
178 +    }
179 +
180 +    public void testRemoveIf() {
181 +        Collection c = impl.emptyCollection();
182 +        ThreadLocalRandom rnd = ThreadLocalRandom.current();
183 +        int n = rnd.nextInt(6);
184 +        for (int i = 0; i < n; i++) c.add(impl.makeElement(i));
185 +        AtomicReference threwAt = new AtomicReference(null);
186 +        ArrayList survivors = new ArrayList(c);
187 +        ArrayList accepts = new ArrayList();
188 +        ArrayList rejects = new ArrayList();
189 +        Predicate randomPredicate = (e) -> {
190 +            assertNull(threwAt.get());
191 +            switch (rnd.nextInt(3)) {
192 +            case 0: accepts.add(e); return true;
193 +            case 1: rejects.add(e); return false;
194 +            case 2: threwAt.set(e); throw new ArithmeticException();
195 +            default: throw new AssertionError();
196 +            }
197 +        };
198 +        try {
199 +            assertFalse(survivors.contains(null));
200 +            try {
201 +                boolean modified = c.removeIf(randomPredicate);
202 +                if (!modified) {
203 +                    assertNull(threwAt.get());
204 +                    assertEquals(n, rejects.size());
205 +                    assertEquals(0, accepts.size());
206 +                }
207 +            } catch (ArithmeticException ok) {}
208 +            survivors.removeAll(accepts);
209 +            assertEquals(n - accepts.size(), c.size());
210 +            assertTrue(c.containsAll(survivors));
211 +            assertTrue(survivors.containsAll(rejects));
212 +            for (Object x : accepts) assertFalse(c.contains(x));
213 +            if (threwAt.get() == null)
214 +                assertEquals(accepts.size() + rejects.size(), n);
215 +        } catch (Throwable ex) {
216 +            System.err.println(impl.klazz());
217 +            System.err.printf("c=%s%n", c);
218 +            System.err.printf("n=%d%n", n);
219 +            System.err.printf("accepts=%s%n", accepts);
220 +            System.err.printf("rejects=%s%n", rejects);
221 +            System.err.printf("survivors=%s%n", survivors);
222 +            System.err.printf("threw=%s%n", threwAt.get());
223 +            throw ex;
224 +        }
225 +    }
226 +
227 +    /**
228 +     * Various ways of traversing a collection yield same elements
229 +     */
230 +    public void testIteratorEquivalence() {
231 +        Collection c = impl.emptyCollection();
232 +        ThreadLocalRandom rnd = ThreadLocalRandom.current();
233 +        int n = rnd.nextInt(6);
234 +        for (int i = 0; i < n; i++) c.add(impl.makeElement(i));
235 +        ArrayList iterated = new ArrayList();
236 +        ArrayList iteratedForEachRemaining = new ArrayList();
237 +        ArrayList spliterated = new ArrayList();
238 +        ArrayList foreached = new ArrayList();
239 +        for (Object x : c) iterated.add(x);
240 +        c.iterator().forEachRemaining(e -> iteratedForEachRemaining.add(e));
241 +        c.spliterator().forEachRemaining(e -> spliterated.add(e));
242 +        c.forEach(e -> foreached.add(e));
243 +        boolean ordered =
244 +            c.spliterator().hasCharacteristics(Spliterator.ORDERED);
245 +        if (c instanceof List || c instanceof Deque)
246 +            assertTrue(ordered);
247 +        if (ordered) {
248 +            assertEquals(iterated, iteratedForEachRemaining);
249 +            assertEquals(iterated, spliterated);
250 +            assertEquals(iterated, foreached);
251 +        } else {
252 +            HashSet cset = new HashSet(c);
253 +            assertEquals(cset, new HashSet(iterated));
254 +            assertEquals(cset, new HashSet(iteratedForEachRemaining));
255 +            assertEquals(cset, new HashSet(spliterated));
256 +            assertEquals(cset, new HashSet(foreached));
257 +        }
258 +        if (c instanceof Deque) {
259 +            Deque d = (Deque) c;
260 +            ArrayList descending = new ArrayList();
261 +            ArrayList descendingForEachRemaining = new ArrayList();
262 +            for (Iterator it = d.descendingIterator(); it.hasNext(); )
263 +                descending.add(it.next());
264 +            d.descendingIterator().forEachRemaining(
265 +                e -> descendingForEachRemaining.add(e));
266 +            Collections.reverse(descending);
267 +            Collections.reverse(descendingForEachRemaining);
268 +            assertEquals(iterated, descending);
269 +            assertEquals(iterated, descendingForEachRemaining);
270 +        }
271 +    }
272 +
273 +    /**
274 +     * Calling Iterator#remove() after Iterator#forEachRemaining
275 +     * should remove last element
276 +     */
277 +    public void testRemoveAfterForEachRemaining() {
278 +        Collection c = impl.emptyCollection();
279 +        ThreadLocalRandom rnd = ThreadLocalRandom.current();
280 +        {
281 +            int n = 3 + rnd.nextInt(2);
282 +            for (int i = 0; i < n; i++) c.add(impl.makeElement(i));
283 +            Iterator it = c.iterator();
284 +            assertTrue(it.hasNext());
285 +            assertEquals(impl.makeElement(0), it.next());
286 +            assertTrue(it.hasNext());
287 +            assertEquals(impl.makeElement(1), it.next());
288 +            it.forEachRemaining((e) -> {});
289 +            it.remove();
290 +            assertEquals(n - 1, c.size());
291 +            for (int i = 0; i < n - 1; i++)
292 +                assertTrue(c.contains(impl.makeElement(i)));
293 +            assertFalse(c.contains(impl.makeElement(n - 1)));
294 +        }
295 +        if (c instanceof Deque) {
296 +            Deque d = (Deque) impl.emptyCollection();
297 +            int n = 3 + rnd.nextInt(2);
298 +            for (int i = 0; i < n; i++) d.add(impl.makeElement(i));
299 +            Iterator it = d.descendingIterator();
300 +            assertTrue(it.hasNext());
301 +            assertEquals(impl.makeElement(n - 1), it.next());
302 +            assertTrue(it.hasNext());
303 +            assertEquals(impl.makeElement(n - 2), it.next());
304 +            it.forEachRemaining((e) -> {});
305 +            it.remove();
306 +            assertEquals(n - 1, d.size());
307 +            for (int i = 1; i < n; i++)
308 +                assertTrue(d.contains(impl.makeElement(i)));
309 +            assertFalse(d.contains(impl.makeElement(0)));
310 +        }
311 +    }
312 +
313      /**
314       * stream().forEach returns elements in the collection
315       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines