ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentHashMapTest.java
Revision: 1.66
Committed: Wed Jan 27 02:55:18 2021 UTC (3 years, 3 months ago) by jsr166
Branch: MAIN
CVS Tags: HEAD
Changes since 1.65: +1 -0 lines
Log Message:
Suppress all new errorprone "errors"

File Contents

# User Rev Content
1 dl 1.1 /*
2 jsr166 1.56 * Written by Doug Lea and Martin Buchholz with assistance from
3     * members of JCP JSR-166 Expert Group and released to the public
4     * domain, as explained at
5 jsr166 1.23 * http://creativecommons.org/publicdomain/zero/1.0/
6 jsr166 1.14 * Other contributors include Andrew Wright, Jeffrey Hayes,
7     * Pat Fisher, Mike Judd.
8 dl 1.1 */
9    
10 jsr166 1.40 import java.util.ArrayList;
11     import java.util.Arrays;
12     import java.util.Collection;
13     import java.util.Collections;
14     import java.util.Enumeration;
15     import java.util.Iterator;
16     import java.util.Map;
17     import java.util.Random;
18     import java.util.Set;
19 jsr166 1.25 import java.util.concurrent.ConcurrentHashMap;
20 dl 1.1
21 jsr166 1.40 import junit.framework.Test;
22    
23 jsr166 1.16 public class ConcurrentHashMapTest extends JSR166TestCase {
24 dl 1.1 public static void main(String[] args) {
25 jsr166 1.45 main(suite(), args);
26 dl 1.1 }
27     public static Test suite() {
28 jsr166 1.56 class Implementation implements MapImplementation {
29     public Class<?> klazz() { return ConcurrentHashMap.class; }
30     public Map emptyMap() { return new ConcurrentHashMap(); }
31     public boolean isConcurrent() { return true; }
32     public boolean permitsNullKeys() { return false; }
33     public boolean permitsNullValues() { return false; }
34     public boolean supportsSetValue() { return true; }
35     }
36     return newTestSuite(
37     ConcurrentHashMapTest.class,
38     MapTest.testSuite(new Implementation()));
39 dl 1.1 }
40    
41 dl 1.5 /**
42 dl 1.63 * Returns a new map from Items 1-5 to Strings "A"-"E".
43 dl 1.5 */
44 dl 1.63 private static ConcurrentHashMap<Item, String> map5() {
45     ConcurrentHashMap<Item, String> map = new ConcurrentHashMap<>(5);
46 dl 1.1 assertTrue(map.isEmpty());
47 jsr166 1.17 map.put(one, "A");
48     map.put(two, "B");
49     map.put(three, "C");
50     map.put(four, "D");
51     map.put(five, "E");
52 dl 1.1 assertFalse(map.isEmpty());
53 dl 1.63 mustEqual(5, map.size());
54 jsr166 1.17 return map;
55 dl 1.1 }
56    
57 jsr166 1.30 // classes for testing Comparable fallbacks
58     static class BI implements Comparable<BI> {
59     private final int value;
60     BI(int value) { this.value = value; }
61     public int compareTo(BI other) {
62 jsr166 1.58 return Integer.compare(value, other.value);
63 jsr166 1.30 }
64     public boolean equals(Object x) {
65     return (x instanceof BI) && ((BI)x).value == value;
66     }
67     public int hashCode() { return 42; }
68     }
69     static class CI extends BI { CI(int value) { super(value); } }
70     static class DI extends BI { DI(int value) { super(value); } }
71    
72     static class BS implements Comparable<BS> {
73     private final String value;
74     BS(String value) { this.value = value; }
75     public int compareTo(BS other) {
76     return value.compareTo(other.value);
77     }
78     public boolean equals(Object x) {
79     return (x instanceof BS) && value.equals(((BS)x).value);
80     }
81     public int hashCode() { return 42; }
82     }
83    
84     static class LexicographicList<E extends Comparable<E>> extends ArrayList<E>
85     implements Comparable<LexicographicList<E>> {
86     LexicographicList(Collection<E> c) { super(c); }
87     LexicographicList(E e) { super(Collections.singleton(e)); }
88     public int compareTo(LexicographicList<E> other) {
89     int common = Math.min(size(), other.size());
90     int r = 0;
91     for (int i = 0; i < common; i++) {
92     if ((r = get(i).compareTo(other.get(i))) != 0)
93     break;
94     }
95     if (r == 0)
96 jsr166 1.58 r = Integer.compare(size(), other.size());
97 jsr166 1.30 return r;
98     }
99     private static final long serialVersionUID = 0;
100     }
101    
102 dl 1.34 static class CollidingObject {
103     final String value;
104     CollidingObject(final String value) { this.value = value; }
105     public int hashCode() { return this.value.hashCode() & 1; }
106     public boolean equals(final Object obj) {
107     return (obj instanceof CollidingObject) && ((CollidingObject)obj).value.equals(value);
108     }
109     }
110    
111     static class ComparableCollidingObject extends CollidingObject implements Comparable<ComparableCollidingObject> {
112     ComparableCollidingObject(final String value) { super(value); }
113     public int compareTo(final ComparableCollidingObject o) {
114     return value.compareTo(o.value);
115     }
116     }
117    
118 jsr166 1.30 /**
119     * Inserted elements that are subclasses of the same Comparable
120     * class are found.
121     */
122     public void testComparableFamily() {
123 jsr166 1.39 int size = 500; // makes measured test run time -> 60ms
124 jsr166 1.57 ConcurrentHashMap<BI, Boolean> m = new ConcurrentHashMap<>();
125 jsr166 1.39 for (int i = 0; i < size; i++) {
126 jsr166 1.54 assertNull(m.put(new CI(i), true));
127 jsr166 1.30 }
128 jsr166 1.39 for (int i = 0; i < size; i++) {
129 jsr166 1.30 assertTrue(m.containsKey(new CI(i)));
130     assertTrue(m.containsKey(new DI(i)));
131     }
132     }
133    
134     /**
135     * Elements of classes with erased generic type parameters based
136     * on Comparable can be inserted and found.
137     */
138     public void testGenericComparable() {
139 jsr166 1.39 int size = 120; // makes measured test run time -> 60ms
140 jsr166 1.57 ConcurrentHashMap<Object, Boolean> m = new ConcurrentHashMap<>();
141 jsr166 1.39 for (int i = 0; i < size; i++) {
142 jsr166 1.30 BI bi = new BI(i);
143     BS bs = new BS(String.valueOf(i));
144 jsr166 1.57 LexicographicList<BI> bis = new LexicographicList<>(bi);
145     LexicographicList<BS> bss = new LexicographicList<>(bs);
146 jsr166 1.54 assertNull(m.putIfAbsent(bis, true));
147 jsr166 1.30 assertTrue(m.containsKey(bis));
148     if (m.putIfAbsent(bss, true) == null)
149     assertTrue(m.containsKey(bss));
150     assertTrue(m.containsKey(bis));
151     }
152 jsr166 1.39 for (int i = 0; i < size; i++) {
153     assertTrue(m.containsKey(Collections.singletonList(new BI(i))));
154 jsr166 1.30 }
155     }
156    
157     /**
158     * Elements of non-comparable classes equal to those of classes
159     * with erased generic type parameters based on Comparable can be
160     * inserted and found.
161     */
162     public void testGenericComparable2() {
163 jsr166 1.39 int size = 500; // makes measured test run time -> 60ms
164 jsr166 1.57 ConcurrentHashMap<Object, Boolean> m = new ConcurrentHashMap<>();
165 jsr166 1.39 for (int i = 0; i < size; i++) {
166     m.put(Collections.singletonList(new BI(i)), true);
167 jsr166 1.30 }
168    
169 jsr166 1.39 for (int i = 0; i < size; i++) {
170 jsr166 1.57 LexicographicList<BI> bis = new LexicographicList<>(new BI(i));
171 jsr166 1.30 assertTrue(m.containsKey(bis));
172     }
173     }
174    
175 dl 1.1 /**
176 dl 1.34 * Mixtures of instances of comparable and non-comparable classes
177     * can be inserted and found.
178     */
179     public void testMixedComparable() {
180 jsr166 1.38 int size = 1200; // makes measured test run time -> 35ms
181 jsr166 1.57 ConcurrentHashMap<Object, Object> map = new ConcurrentHashMap<>();
182 jsr166 1.38 Random rng = new Random();
183 jsr166 1.35 for (int i = 0; i < size; i++) {
184 dl 1.34 Object x;
185 jsr166 1.35 switch (rng.nextInt(4)) {
186 dl 1.34 case 0:
187     x = new Object();
188     break;
189     case 1:
190     x = new CollidingObject(Integer.toString(i));
191     break;
192     default:
193     x = new ComparableCollidingObject(Integer.toString(i));
194     }
195     assertNull(map.put(x, x));
196     }
197     int count = 0;
198     for (Object k : map.keySet()) {
199 dl 1.63 mustEqual(map.get(k), k);
200 dl 1.34 ++count;
201     }
202 dl 1.63 mustEqual(count, size);
203     mustEqual(map.size(), size);
204 dl 1.34 for (Object k : map.keySet()) {
205 dl 1.63 mustEqual(map.put(k, k), k);
206 dl 1.34 }
207     }
208    
209     /**
210 jsr166 1.22 * clear removes all pairs
211 dl 1.1 */
212 dl 1.5 public void testClear() {
213 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
214 jsr166 1.17 map.clear();
215 dl 1.63 mustEqual(0, map.size());
216 dl 1.1 }
217    
218     /**
219 jsr166 1.22 * Maps with same contents are equal
220 dl 1.5 */
221     public void testEquals() {
222 dl 1.63 ConcurrentHashMap<Item,String> map1 = map5();
223     ConcurrentHashMap<Item,String> map2 = map5();
224     mustEqual(map1, map2);
225     mustEqual(map2, map1);
226 jsr166 1.17 map1.clear();
227 dl 1.5 assertFalse(map1.equals(map2));
228     assertFalse(map2.equals(map1));
229     }
230    
231 dl 1.36 /**
232 jsr166 1.37 * hashCode() equals sum of each key.hashCode ^ value.hashCode
233     */
234 dl 1.36 public void testHashCode() {
235 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
236 dl 1.36 int sum = 0;
237 dl 1.63 for (Map.Entry<Item,String> e : map.entrySet())
238 dl 1.36 sum += e.getKey().hashCode() ^ e.getValue().hashCode();
239 dl 1.63 mustEqual(sum, map.hashCode());
240 dl 1.36 }
241    
242 dl 1.5 /**
243 jsr166 1.22 * contains returns true for contained value
244 dl 1.1 */
245 dl 1.5 public void testContains() {
246 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
247 jsr166 1.17 assertTrue(map.contains("A"));
248 dl 1.1 assertFalse(map.contains("Z"));
249     }
250 jsr166 1.14
251 dl 1.1 /**
252 jsr166 1.22 * containsKey returns true for contained key
253 dl 1.1 */
254 dl 1.5 public void testContainsKey() {
255 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
256 jsr166 1.17 assertTrue(map.containsKey(one));
257 dl 1.5 assertFalse(map.containsKey(zero));
258 dl 1.1 }
259    
260     /**
261 jsr166 1.22 * containsValue returns true for held values
262 dl 1.1 */
263 dl 1.5 public void testContainsValue() {
264 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
265 jsr166 1.17 assertTrue(map.containsValue("A"));
266 dl 1.11 assertFalse(map.containsValue("Z"));
267 dl 1.1 }
268    
269     /**
270 jsr166 1.22 * enumeration returns an enumeration containing the correct
271     * elements
272 dl 1.1 */
273 dl 1.5 public void testEnumeration() {
274 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
275     Enumeration<String> e = map.elements();
276 jsr166 1.17 int count = 0;
277     while (e.hasMoreElements()) {
278     count++;
279     e.nextElement();
280     }
281 dl 1.63 mustEqual(5, count);
282 dl 1.4 }
283    
284     /**
285 jsr166 1.22 * get returns the correct element at the given key,
286     * or null if not present
287 dl 1.1 */
288 jsr166 1.66 @SuppressWarnings("CollectionIncompatibleType")
289 dl 1.5 public void testGet() {
290 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
291     mustEqual("A", map.get(one));
292 jsr166 1.65 ConcurrentHashMap<Item,String> empty = new ConcurrentHashMap<>();
293 dl 1.5 assertNull(map.get("anything"));
294 jsr166 1.42 assertNull(empty.get("anything"));
295 dl 1.1 }
296    
297     /**
298 jsr166 1.22 * isEmpty is true of empty map and false for non-empty
299 dl 1.1 */
300 dl 1.5 public void testIsEmpty() {
301 jsr166 1.65 ConcurrentHashMap<Item,String> empty = new ConcurrentHashMap<>();
302 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
303 jsr166 1.17 assertTrue(empty.isEmpty());
304 dl 1.1 assertFalse(map.isEmpty());
305     }
306    
307     /**
308 jsr166 1.22 * keys returns an enumeration containing all the keys from the map
309 dl 1.1 */
310 dl 1.5 public void testKeys() {
311 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
312     Enumeration<Item> e = map.keys();
313 jsr166 1.17 int count = 0;
314     while (e.hasMoreElements()) {
315     count++;
316     e.nextElement();
317     }
318 dl 1.63 mustEqual(5, count);
319 dl 1.1 }
320    
321     /**
322 jsr166 1.22 * keySet returns a Set containing all the keys
323 dl 1.1 */
324 dl 1.5 public void testKeySet() {
325 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
326     Set<Item> s = map.keySet();
327     mustEqual(5, s.size());
328     mustContain(s, one);
329     mustContain(s, two);
330     mustContain(s, three);
331     mustContain(s, four);
332     mustContain(s, five);
333 dl 1.1 }
334    
335 dl 1.5 /**
336 jsr166 1.50 * Test keySet().removeAll on empty map
337     */
338     public void testKeySet_empty_removeAll() {
339 dl 1.63 ConcurrentHashMap<Item, String> map = new ConcurrentHashMap<>();
340     Set<Item> set = map.keySet();
341 jsr166 1.50 set.removeAll(Collections.emptyList());
342     assertTrue(map.isEmpty());
343     assertTrue(set.isEmpty());
344     // following is test for JDK-8163353
345     set.removeAll(Collections.emptySet());
346     assertTrue(map.isEmpty());
347     assertTrue(set.isEmpty());
348     }
349    
350     /**
351 jsr166 1.22 * keySet.toArray returns contains all keys
352 dl 1.13 */
353     public void testKeySetToArray() {
354 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
355     Set<Item> s = map.keySet();
356 dl 1.13 Object[] ar = s.toArray();
357     assertTrue(s.containsAll(Arrays.asList(ar)));
358 dl 1.63 mustEqual(5, ar.length);
359     ar[0] = minusTen;
360 dl 1.13 assertFalse(s.containsAll(Arrays.asList(ar)));
361     }
362    
363     /**
364 jsr166 1.22 * Values.toArray contains all values
365 dl 1.13 */
366     public void testValuesToArray() {
367 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
368     Collection<String> v = map.values();
369     String[] ar = v.toArray(new String[0]);
370 jsr166 1.65 ArrayList<String> s = new ArrayList<>(Arrays.asList(ar));
371 dl 1.63 mustEqual(5, ar.length);
372 jsr166 1.17 assertTrue(s.contains("A"));
373     assertTrue(s.contains("B"));
374     assertTrue(s.contains("C"));
375     assertTrue(s.contains("D"));
376     assertTrue(s.contains("E"));
377 dl 1.13 }
378    
379     /**
380 jsr166 1.22 * entrySet.toArray contains all entries
381 dl 1.13 */
382     public void testEntrySetToArray() {
383 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
384     Set<Map.Entry<Item,String>> s = map.entrySet();
385 dl 1.13 Object[] ar = s.toArray();
386 dl 1.63 mustEqual(5, ar.length);
387 dl 1.13 for (int i = 0; i < 5; ++i) {
388     assertTrue(map.containsKey(((Map.Entry)(ar[i])).getKey()));
389     assertTrue(map.containsValue(((Map.Entry)(ar[i])).getValue()));
390     }
391     }
392    
393     /**
394 dl 1.5 * values collection contains all values
395     */
396     public void testValues() {
397 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
398     Collection<String> s = map.values();
399     mustEqual(5, s.size());
400 jsr166 1.17 assertTrue(s.contains("A"));
401     assertTrue(s.contains("B"));
402     assertTrue(s.contains("C"));
403     assertTrue(s.contains("D"));
404     assertTrue(s.contains("E"));
405 dl 1.1 }
406    
407 dl 1.5 /**
408     * entrySet contains all pairs
409     */
410     public void testEntrySet() {
411 dl 1.63 ConcurrentHashMap<Item, String> map = map5();
412     Set<Map.Entry<Item,String>> s = map.entrySet();
413     mustEqual(5, s.size());
414     Iterator<Map.Entry<Item,String>> it = s.iterator();
415 dl 1.1 while (it.hasNext()) {
416 dl 1.63 Map.Entry<Item,String> e = it.next();
417 jsr166 1.14 assertTrue(
418 dl 1.1 (e.getKey().equals(one) && e.getValue().equals("A")) ||
419     (e.getKey().equals(two) && e.getValue().equals("B")) ||
420     (e.getKey().equals(three) && e.getValue().equals("C")) ||
421     (e.getKey().equals(four) && e.getValue().equals("D")) ||
422     (e.getKey().equals(five) && e.getValue().equals("E")));
423     }
424     }
425    
426     /**
427 jsr166 1.22 * putAll adds all key-value pairs from the given map
428 dl 1.1 */
429 dl 1.5 public void testPutAll() {
430 jsr166 1.65 ConcurrentHashMap<Item,String> p = new ConcurrentHashMap<>();
431 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
432     p.putAll(map);
433     mustEqual(5, p.size());
434     assertTrue(p.containsKey(one));
435     assertTrue(p.containsKey(two));
436     assertTrue(p.containsKey(three));
437     assertTrue(p.containsKey(four));
438     assertTrue(p.containsKey(five));
439 dl 1.1 }
440    
441     /**
442 jsr166 1.22 * putIfAbsent works when the given key is not present
443 dl 1.1 */
444 dl 1.5 public void testPutIfAbsent() {
445 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
446 jsr166 1.17 map.putIfAbsent(six, "Z");
447 dl 1.7 assertTrue(map.containsKey(six));
448 dl 1.1 }
449    
450     /**
451 jsr166 1.22 * putIfAbsent does not add the pair if the key is already present
452 dl 1.1 */
453 dl 1.5 public void testPutIfAbsent2() {
454 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
455     mustEqual("A", map.putIfAbsent(one, "Z"));
456 dl 1.1 }
457    
458     /**
459 jsr166 1.22 * replace fails when the given key is not present
460 dl 1.7 */
461     public void testReplace() {
462 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
463 jsr166 1.17 assertNull(map.replace(six, "Z"));
464 dl 1.7 assertFalse(map.containsKey(six));
465     }
466    
467     /**
468 jsr166 1.22 * replace succeeds if the key is already present
469 dl 1.7 */
470     public void testReplace2() {
471 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
472 dl 1.8 assertNotNull(map.replace(one, "Z"));
473 dl 1.63 mustEqual("Z", map.get(one));
474 dl 1.7 }
475    
476     /**
477     * replace value fails when the given key not mapped to expected value
478     */
479     public void testReplaceValue() {
480 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
481     mustEqual("A", map.get(one));
482 jsr166 1.17 assertFalse(map.replace(one, "Z", "Z"));
483 dl 1.63 mustEqual("A", map.get(one));
484 dl 1.7 }
485    
486     /**
487     * replace value succeeds when the given key mapped to expected value
488     */
489     public void testReplaceValue2() {
490 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
491     mustEqual("A", map.get(one));
492 jsr166 1.17 assertTrue(map.replace(one, "A", "Z"));
493 dl 1.63 mustEqual("Z", map.get(one));
494 dl 1.7 }
495    
496     /**
497 jsr166 1.22 * remove removes the correct key-value pair from the map
498 dl 1.1 */
499 dl 1.5 public void testRemove() {
500 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
501 jsr166 1.17 map.remove(five);
502 dl 1.63 mustEqual(4, map.size());
503 jsr166 1.17 assertFalse(map.containsKey(five));
504 dl 1.1 }
505    
506 dl 1.5 /**
507     * remove(key,value) removes only if pair present
508     */
509     public void testRemove2() {
510 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
511 jsr166 1.17 map.remove(five, "E");
512 dl 1.63 mustEqual(4, map.size());
513 jsr166 1.17 assertFalse(map.containsKey(five));
514     map.remove(four, "A");
515 dl 1.63 mustEqual(4, map.size());
516 jsr166 1.17 assertTrue(map.containsKey(four));
517 dl 1.1 }
518    
519     /**
520 jsr166 1.22 * size returns the correct values
521 dl 1.1 */
522 dl 1.5 public void testSize() {
523 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
524 jsr166 1.65 ConcurrentHashMap<Item,String> empty = new ConcurrentHashMap<>();
525 dl 1.63 mustEqual(0, empty.size());
526     mustEqual(5, map.size());
527 dl 1.1 }
528    
529 dl 1.5 /**
530     * toString contains toString of elements
531     */
532     public void testToString() {
533 dl 1.63 ConcurrentHashMap<Item,String> map = map5();
534 dl 1.1 String s = map.toString();
535     for (int i = 1; i <= 5; ++i) {
536 jsr166 1.24 assertTrue(s.contains(String.valueOf(i)));
537 dl 1.1 }
538 jsr166 1.14 }
539 dl 1.1
540     // Exception tests
541 jsr166 1.14
542 dl 1.5 /**
543 dl 1.36 * Cannot create with only negative capacity
544 dl 1.5 */
545     public void testConstructor1() {
546     try {
547 dl 1.63 new ConcurrentHashMap<Item,String>(-1);
548 dl 1.5 shouldThrow();
549 jsr166 1.19 } catch (IllegalArgumentException success) {}
550 dl 1.1 }
551    
552 dl 1.5 /**
553 dl 1.36 * Constructor (initialCapacity, loadFactor) throws
554     * IllegalArgumentException if either argument is negative
555 jsr166 1.47 */
556 dl 1.5 public void testConstructor2() {
557     try {
558 dl 1.63 new ConcurrentHashMap<Item,String>(-1, .75f);
559 dl 1.5 shouldThrow();
560 jsr166 1.43 } catch (IllegalArgumentException success) {}
561 jsr166 1.37
562 dl 1.36 try {
563 dl 1.63 new ConcurrentHashMap<Item,String>(16, -1);
564 dl 1.36 shouldThrow();
565 jsr166 1.43 } catch (IllegalArgumentException success) {}
566 dl 1.1 }
567 jsr166 1.37
568     /**
569     * Constructor (initialCapacity, loadFactor, concurrencyLevel)
570     * throws IllegalArgumentException if any argument is negative
571     */
572 dl 1.36 public void testConstructor3() {
573 jsr166 1.37 try {
574 dl 1.63 new ConcurrentHashMap<Item,String>(-1, .75f, 1);
575 jsr166 1.37 shouldThrow();
576 jsr166 1.43 } catch (IllegalArgumentException success) {}
577 jsr166 1.37
578     try {
579 dl 1.63 new ConcurrentHashMap<Item,String>(16, -1, 1);
580 jsr166 1.37 shouldThrow();
581 jsr166 1.43 } catch (IllegalArgumentException success) {}
582 jsr166 1.37
583     try {
584 dl 1.63 new ConcurrentHashMap<Item,String>(16, .75f, -1);
585 jsr166 1.37 shouldThrow();
586 jsr166 1.43 } catch (IllegalArgumentException success) {}
587 jsr166 1.37 }
588 dl 1.1
589 dl 1.5 /**
590 dl 1.36 * ConcurrentHashMap(map) throws NullPointerException if the given
591     * map is null
592 dl 1.5 */
593 dl 1.36 public void testConstructor4() {
594 dl 1.5 try {
595 dl 1.63 new ConcurrentHashMap<Item,String>(null);
596 dl 1.5 shouldThrow();
597 jsr166 1.43 } catch (NullPointerException success) {}
598 dl 1.36 }
599    
600     /**
601     * ConcurrentHashMap(map) creates a new map with the same mappings
602     * as the given map
603     */
604     public void testConstructor5() {
605 dl 1.63 ConcurrentHashMap<Item,String> map1 = map5();
606 jsr166 1.65 ConcurrentHashMap<Item,String> map2 = new ConcurrentHashMap<>(map1);
607 dl 1.36 assertTrue(map2.equals(map1));
608     map2.put(one, "F");
609     assertFalse(map2.equals(map1));
610 dl 1.1 }
611    
612 dl 1.5 /**
613     * get(null) throws NPE
614     */
615     public void testGet_NullPointerException() {
616 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
617 dl 1.5 try {
618 dl 1.1 c.get(null);
619 dl 1.5 shouldThrow();
620 jsr166 1.19 } catch (NullPointerException success) {}
621 dl 1.1 }
622    
623 dl 1.5 /**
624     * containsKey(null) throws NPE
625     */
626     public void testContainsKey_NullPointerException() {
627 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
628 dl 1.5 try {
629 dl 1.1 c.containsKey(null);
630 dl 1.5 shouldThrow();
631 jsr166 1.19 } catch (NullPointerException success) {}
632 dl 1.1 }
633    
634 dl 1.5 /**
635     * containsValue(null) throws NPE
636     */
637     public void testContainsValue_NullPointerException() {
638 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
639 dl 1.5 try {
640 dl 1.1 c.containsValue(null);
641 dl 1.5 shouldThrow();
642 jsr166 1.19 } catch (NullPointerException success) {}
643 dl 1.1 }
644    
645 dl 1.5 /**
646     * contains(null) throws NPE
647     */
648     public void testContains_NullPointerException() {
649 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
650 dl 1.5 try {
651 dl 1.1 c.contains(null);
652 dl 1.5 shouldThrow();
653 jsr166 1.19 } catch (NullPointerException success) {}
654 dl 1.1 }
655    
656 dl 1.5 /**
657     * put(null,x) throws NPE
658     */
659     public void testPut1_NullPointerException() {
660 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
661 dl 1.5 try {
662 dl 1.1 c.put(null, "whatever");
663 dl 1.5 shouldThrow();
664 jsr166 1.19 } catch (NullPointerException success) {}
665 dl 1.1 }
666    
667 dl 1.5 /**
668     * put(x, null) throws NPE
669     */
670     public void testPut2_NullPointerException() {
671 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
672 dl 1.5 try {
673 dl 1.63 c.put(zero, null);
674 dl 1.5 shouldThrow();
675 jsr166 1.19 } catch (NullPointerException success) {}
676 dl 1.1 }
677    
678 dl 1.5 /**
679     * putIfAbsent(null, x) throws NPE
680     */
681     public void testPutIfAbsent1_NullPointerException() {
682 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
683 dl 1.5 try {
684 dl 1.1 c.putIfAbsent(null, "whatever");
685 dl 1.5 shouldThrow();
686 jsr166 1.19 } catch (NullPointerException success) {}
687 dl 1.1 }
688    
689 dl 1.5 /**
690 dl 1.7 * replace(null, x) throws NPE
691     */
692     public void testReplace_NullPointerException() {
693 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
694 dl 1.7 try {
695     c.replace(null, "whatever");
696     shouldThrow();
697 jsr166 1.19 } catch (NullPointerException success) {}
698 dl 1.7 }
699    
700     /**
701     * replace(null, x, y) throws NPE
702     */
703     public void testReplaceValue_NullPointerException() {
704 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
705 dl 1.7 try {
706 dl 1.63 c.replace(null, "A", "B");
707 dl 1.7 shouldThrow();
708 jsr166 1.19 } catch (NullPointerException success) {}
709 dl 1.7 }
710    
711     /**
712 dl 1.5 * putIfAbsent(x, null) throws NPE
713     */
714     public void testPutIfAbsent2_NullPointerException() {
715 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
716 dl 1.5 try {
717 dl 1.63 c.putIfAbsent(zero, null);
718 dl 1.7 shouldThrow();
719 jsr166 1.19 } catch (NullPointerException success) {}
720 dl 1.7 }
721    
722     /**
723     * replace(x, null) throws NPE
724     */
725     public void testReplace2_NullPointerException() {
726 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
727 dl 1.7 try {
728 dl 1.63 c.replace(one, null);
729 dl 1.7 shouldThrow();
730 jsr166 1.19 } catch (NullPointerException success) {}
731 dl 1.7 }
732    
733     /**
734     * replace(x, null, y) throws NPE
735     */
736     public void testReplaceValue2_NullPointerException() {
737 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
738 dl 1.7 try {
739 dl 1.63 c.replace(one, null, "A");
740 dl 1.7 shouldThrow();
741 jsr166 1.19 } catch (NullPointerException success) {}
742 dl 1.7 }
743    
744     /**
745     * replace(x, y, null) throws NPE
746     */
747     public void testReplaceValue3_NullPointerException() {
748 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
749 dl 1.7 try {
750 dl 1.63 c.replace(zero, "A", null);
751 dl 1.5 shouldThrow();
752 jsr166 1.19 } catch (NullPointerException success) {}
753 dl 1.1 }
754    
755 dl 1.5 /**
756     * remove(null) throws NPE
757     */
758     public void testRemove1_NullPointerException() {
759 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
760 dl 1.63 c.put(one, "asdads");
761 dl 1.5 try {
762 dl 1.1 c.remove(null);
763 dl 1.5 shouldThrow();
764 jsr166 1.19 } catch (NullPointerException success) {}
765 dl 1.1 }
766    
767 dl 1.5 /**
768     * remove(null, x) throws NPE
769     */
770     public void testRemove2_NullPointerException() {
771 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
772 dl 1.63 c.put(one, "asdads");
773 dl 1.5 try {
774 dl 1.1 c.remove(null, "whatever");
775 dl 1.5 shouldThrow();
776 jsr166 1.19 } catch (NullPointerException success) {}
777 dl 1.1 }
778 dl 1.2
779 dl 1.5 /**
780 dl 1.12 * remove(x, null) returns false
781     */
782     public void testRemove3() {
783 jsr166 1.65 ConcurrentHashMap<Item,String> c = new ConcurrentHashMap<>(5);
784 dl 1.63 c.put(one, "asdads");
785     assertFalse(c.remove(one, null));
786 dl 1.12 }
787    
788     /**
789 jsr166 1.55 * A deserialized/reserialized map equals original
790 dl 1.5 */
791 jsr166 1.18 public void testSerialization() throws Exception {
792 dl 1.63 Map<Item,String> x = map5();
793     Map<Item,String> y = serialClone(x);
794 dl 1.2
795 jsr166 1.31 assertNotSame(x, y);
796 dl 1.63 mustEqual(x.size(), y.size());
797     mustEqual(x, y);
798     mustEqual(y, x);
799 dl 1.2 }
800 dl 1.6
801     /**
802     * SetValue of an EntrySet entry sets value in the map.
803     */
804 dl 1.63 @SuppressWarnings("unchecked")
805 dl 1.6 public void testSetValueWriteThrough() {
806 jsr166 1.14 // Adapted from a bug report by Eric Zoerner
807 jsr166 1.65 ConcurrentHashMap<Object,Object> map = new ConcurrentHashMap<>(2, 5.0f, 1);
808 dl 1.6 assertTrue(map.isEmpty());
809     for (int i = 0; i < 20; i++)
810 dl 1.63 map.put(itemFor(i), itemFor(i));
811 dl 1.6 assertFalse(map.isEmpty());
812 dl 1.63 Item key = itemFor(16);
813     Map.Entry<Object,Object> entry1 = map.entrySet().iterator().next();
814 dl 1.29 // Unless it happens to be first (in which case remainder of
815     // test is skipped), remove a possibly-colliding key from map
816     // which, under some implementations, may cause entry1 to be
817     // cloned in map
818 dl 1.63 if (!entry1.getKey().equals(key)) {
819     map.remove(key);
820 dl 1.29 entry1.setValue("XYZ");
821     assertTrue(map.containsValue("XYZ")); // fails if write-through broken
822     }
823 dl 1.6 }
824 jsr166 1.14
825 jsr166 1.48 /**
826     * Tests performance of removeAll when the other collection is much smaller.
827     * ant -Djsr166.tckTestClass=ConcurrentHashMapTest -Djsr166.methodFilter=testRemoveAll_performance -Djsr166.expensiveTests=true tck
828     */
829     public void testRemoveAll_performance() {
830 jsr166 1.49 final int mapSize = expensiveTests ? 1_000_000 : 100;
831     final int iterations = expensiveTests ? 500 : 2;
832 dl 1.63 final ConcurrentHashMap<Item, Item> map = new ConcurrentHashMap<>();
833     for (int i = 0; i < mapSize; i++) {
834     Item I = itemFor(i);
835     map.put(I, I);
836     }
837     Set<Item> keySet = map.keySet();
838     Collection<Item> removeMe = Arrays.asList(new Item[] { minusOne, minusTwo });
839 jsr166 1.48 for (int i = 0; i < iterations; i++)
840     assertFalse(keySet.removeAll(removeMe));
841 dl 1.63 mustEqual(mapSize, map.size());
842 jsr166 1.48 }
843 jsr166 1.49
844 dl 1.59 public void testReentrantComputeIfAbsent() {
845 dl 1.63 ConcurrentHashMap<Item, Item> map = new ConcurrentHashMap<>(16);
846 dl 1.59 try {
847     for (int i = 0; i < 100; i++) { // force a resize
848 dl 1.63 map.computeIfAbsent(new Item(i), key -> new Item(findValue(map, key)));
849 dl 1.59 }
850 jsr166 1.61 fail("recursive computeIfAbsent should throw IllegalStateException");
851     } catch (IllegalStateException success) {}
852 dl 1.59 }
853    
854 jsr166 1.64 private static Item findValue(ConcurrentHashMap<Item, Item> map,
855 dl 1.63 Item key) {
856     return (key.value % 5 == 0) ? key :
857     map.computeIfAbsent(new Item(key.value + 1), k -> new Item(findValue(map, k)));
858 dl 1.59 }
859 dl 1.1 }