ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentHashMapTest.java
Revision: 1.51
Committed: Sat Oct 15 18:51:12 2016 UTC (7 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.50: +0 -26 lines
Log Message:
fix 4jdk7-tck target by segregating jdk8+ tests

File Contents

# User Rev Content
1 dl 1.1 /*
2 dl 1.9 * 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 jsr166 1.23 * http://creativecommons.org/publicdomain/zero/1.0/
5 jsr166 1.14 * Other contributors include Andrew Wright, Jeffrey Hayes,
6     * Pat Fisher, Mike Judd.
7 dl 1.1 */
8    
9 jsr166 1.40 import java.util.ArrayList;
10     import java.util.Arrays;
11     import java.util.Collection;
12     import java.util.Collections;
13     import java.util.Enumeration;
14     import java.util.Iterator;
15     import java.util.Map;
16     import java.util.Random;
17     import java.util.Set;
18 jsr166 1.25 import java.util.concurrent.ConcurrentHashMap;
19 jsr166 1.49 import java.util.concurrent.ExecutorService;
20     import java.util.concurrent.Executors;
21 dl 1.1
22 jsr166 1.40 import junit.framework.Test;
23     import junit.framework.TestSuite;
24    
25 jsr166 1.16 public class ConcurrentHashMapTest extends JSR166TestCase {
26 dl 1.1 public static void main(String[] args) {
27 jsr166 1.45 main(suite(), args);
28 dl 1.1 }
29     public static Test suite() {
30 jsr166 1.17 return new TestSuite(ConcurrentHashMapTest.class);
31 dl 1.1 }
32    
33 dl 1.5 /**
34 jsr166 1.28 * Returns a new map from Integers 1-5 to Strings "A"-"E".
35 dl 1.5 */
36 dl 1.36 private static ConcurrentHashMap<Integer, String> map5() {
37     ConcurrentHashMap map = new ConcurrentHashMap<Integer, String>(5);
38 dl 1.1 assertTrue(map.isEmpty());
39 jsr166 1.17 map.put(one, "A");
40     map.put(two, "B");
41     map.put(three, "C");
42     map.put(four, "D");
43     map.put(five, "E");
44 dl 1.1 assertFalse(map.isEmpty());
45     assertEquals(5, map.size());
46 jsr166 1.17 return map;
47 dl 1.1 }
48    
49 jsr166 1.33 /** Re-implement Integer.compare for old java versions */
50 jsr166 1.46 static int compare(int x, int y) {
51     return (x < y) ? -1 : (x > y) ? 1 : 0;
52     }
53 jsr166 1.33
54 jsr166 1.30 // classes for testing Comparable fallbacks
55     static class BI implements Comparable<BI> {
56     private final int value;
57     BI(int value) { this.value = value; }
58     public int compareTo(BI other) {
59 jsr166 1.33 return compare(value, other.value);
60 jsr166 1.30 }
61     public boolean equals(Object x) {
62     return (x instanceof BI) && ((BI)x).value == value;
63     }
64     public int hashCode() { return 42; }
65     }
66     static class CI extends BI { CI(int value) { super(value); } }
67     static class DI extends BI { DI(int value) { super(value); } }
68    
69     static class BS implements Comparable<BS> {
70     private final String value;
71     BS(String value) { this.value = value; }
72     public int compareTo(BS other) {
73     return value.compareTo(other.value);
74     }
75     public boolean equals(Object x) {
76     return (x instanceof BS) && value.equals(((BS)x).value);
77     }
78     public int hashCode() { return 42; }
79     }
80    
81     static class LexicographicList<E extends Comparable<E>> extends ArrayList<E>
82     implements Comparable<LexicographicList<E>> {
83     LexicographicList(Collection<E> c) { super(c); }
84     LexicographicList(E e) { super(Collections.singleton(e)); }
85     public int compareTo(LexicographicList<E> other) {
86     int common = Math.min(size(), other.size());
87     int r = 0;
88     for (int i = 0; i < common; i++) {
89     if ((r = get(i).compareTo(other.get(i))) != 0)
90     break;
91     }
92     if (r == 0)
93 jsr166 1.33 r = compare(size(), other.size());
94 jsr166 1.30 return r;
95     }
96     private static final long serialVersionUID = 0;
97     }
98    
99 dl 1.34 static class CollidingObject {
100     final String value;
101     CollidingObject(final String value) { this.value = value; }
102     public int hashCode() { return this.value.hashCode() & 1; }
103     public boolean equals(final Object obj) {
104     return (obj instanceof CollidingObject) && ((CollidingObject)obj).value.equals(value);
105     }
106     }
107    
108     static class ComparableCollidingObject extends CollidingObject implements Comparable<ComparableCollidingObject> {
109     ComparableCollidingObject(final String value) { super(value); }
110     public int compareTo(final ComparableCollidingObject o) {
111     return value.compareTo(o.value);
112     }
113     }
114    
115 jsr166 1.30 /**
116     * Inserted elements that are subclasses of the same Comparable
117     * class are found.
118     */
119     public void testComparableFamily() {
120 jsr166 1.39 int size = 500; // makes measured test run time -> 60ms
121 jsr166 1.32 ConcurrentHashMap<BI, Boolean> m =
122     new ConcurrentHashMap<BI, Boolean>();
123 jsr166 1.39 for (int i = 0; i < size; i++) {
124 jsr166 1.30 assertTrue(m.put(new CI(i), true) == null);
125     }
126 jsr166 1.39 for (int i = 0; i < size; i++) {
127 jsr166 1.30 assertTrue(m.containsKey(new CI(i)));
128     assertTrue(m.containsKey(new DI(i)));
129     }
130     }
131    
132     /**
133     * Elements of classes with erased generic type parameters based
134     * on Comparable can be inserted and found.
135     */
136     public void testGenericComparable() {
137 jsr166 1.39 int size = 120; // makes measured test run time -> 60ms
138 jsr166 1.32 ConcurrentHashMap<Object, Boolean> m =
139     new ConcurrentHashMap<Object, Boolean>();
140 jsr166 1.39 for (int i = 0; i < size; i++) {
141 jsr166 1.30 BI bi = new BI(i);
142     BS bs = new BS(String.valueOf(i));
143     LexicographicList<BI> bis = new LexicographicList<BI>(bi);
144     LexicographicList<BS> bss = new LexicographicList<BS>(bs);
145     assertTrue(m.putIfAbsent(bis, true) == null);
146     assertTrue(m.containsKey(bis));
147     if (m.putIfAbsent(bss, true) == null)
148     assertTrue(m.containsKey(bss));
149     assertTrue(m.containsKey(bis));
150     }
151 jsr166 1.39 for (int i = 0; i < size; i++) {
152     assertTrue(m.containsKey(Collections.singletonList(new BI(i))));
153 jsr166 1.30 }
154     }
155    
156     /**
157     * Elements of non-comparable classes equal to those of classes
158     * with erased generic type parameters based on Comparable can be
159     * inserted and found.
160     */
161     public void testGenericComparable2() {
162 jsr166 1.39 int size = 500; // makes measured test run time -> 60ms
163 jsr166 1.32 ConcurrentHashMap<Object, Boolean> m =
164     new ConcurrentHashMap<Object, Boolean>();
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.30 LexicographicList<BI> bis = new LexicographicList<BI>(new BI(i));
171     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.35 ConcurrentHashMap<Object, Object> map =
182 dl 1.34 new ConcurrentHashMap<Object, Object>();
183 jsr166 1.38 Random rng = new Random();
184 jsr166 1.35 for (int i = 0; i < size; i++) {
185 dl 1.34 Object x;
186 jsr166 1.35 switch (rng.nextInt(4)) {
187 dl 1.34 case 0:
188     x = new Object();
189     break;
190     case 1:
191     x = new CollidingObject(Integer.toString(i));
192     break;
193     default:
194     x = new ComparableCollidingObject(Integer.toString(i));
195     }
196     assertNull(map.put(x, x));
197     }
198     int count = 0;
199     for (Object k : map.keySet()) {
200     assertEquals(map.get(k), k);
201     ++count;
202     }
203     assertEquals(count, size);
204     assertEquals(map.size(), size);
205     for (Object k : map.keySet()) {
206     assertEquals(map.put(k, k), k);
207     }
208     }
209    
210     /**
211 jsr166 1.22 * clear removes all pairs
212 dl 1.1 */
213 dl 1.5 public void testClear() {
214 dl 1.1 ConcurrentHashMap map = map5();
215 jsr166 1.17 map.clear();
216 jsr166 1.26 assertEquals(0, map.size());
217 dl 1.1 }
218    
219     /**
220 jsr166 1.22 * Maps with same contents are equal
221 dl 1.5 */
222     public void testEquals() {
223     ConcurrentHashMap map1 = map5();
224     ConcurrentHashMap map2 = map5();
225     assertEquals(map1, map2);
226     assertEquals(map2, map1);
227 jsr166 1.17 map1.clear();
228 dl 1.5 assertFalse(map1.equals(map2));
229     assertFalse(map2.equals(map1));
230     }
231    
232 dl 1.36 /**
233 jsr166 1.37 * hashCode() equals sum of each key.hashCode ^ value.hashCode
234     */
235 dl 1.36 public void testHashCode() {
236     ConcurrentHashMap<Integer,String> map = map5();
237     int sum = 0;
238     for (Map.Entry<Integer,String> e : map.entrySet())
239     sum += e.getKey().hashCode() ^ e.getValue().hashCode();
240     assertEquals(sum, map.hashCode());
241     }
242    
243 dl 1.5 /**
244 jsr166 1.22 * contains returns true for contained value
245 dl 1.1 */
246 dl 1.5 public void testContains() {
247 dl 1.1 ConcurrentHashMap map = map5();
248 jsr166 1.17 assertTrue(map.contains("A"));
249 dl 1.1 assertFalse(map.contains("Z"));
250     }
251 jsr166 1.14
252 dl 1.1 /**
253 jsr166 1.22 * containsKey returns true for contained key
254 dl 1.1 */
255 dl 1.5 public void testContainsKey() {
256 dl 1.1 ConcurrentHashMap map = map5();
257 jsr166 1.17 assertTrue(map.containsKey(one));
258 dl 1.5 assertFalse(map.containsKey(zero));
259 dl 1.1 }
260    
261     /**
262 jsr166 1.22 * containsValue returns true for held values
263 dl 1.1 */
264 dl 1.5 public void testContainsValue() {
265 dl 1.1 ConcurrentHashMap map = map5();
266 jsr166 1.17 assertTrue(map.containsValue("A"));
267 dl 1.11 assertFalse(map.containsValue("Z"));
268 dl 1.1 }
269    
270     /**
271 jsr166 1.22 * enumeration returns an enumeration containing the correct
272     * elements
273 dl 1.1 */
274 dl 1.5 public void testEnumeration() {
275 dl 1.1 ConcurrentHashMap map = map5();
276 jsr166 1.17 Enumeration e = map.elements();
277     int count = 0;
278     while (e.hasMoreElements()) {
279     count++;
280     e.nextElement();
281     }
282     assertEquals(5, count);
283 dl 1.4 }
284    
285     /**
286 jsr166 1.22 * get returns the correct element at the given key,
287     * or null if not present
288 dl 1.1 */
289 dl 1.5 public void testGet() {
290 dl 1.1 ConcurrentHashMap map = map5();
291 jsr166 1.17 assertEquals("A", (String)map.get(one));
292 dl 1.1 ConcurrentHashMap 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 dl 1.1 ConcurrentHashMap empty = new ConcurrentHashMap();
302     ConcurrentHashMap 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.1 ConcurrentHashMap map = map5();
312 jsr166 1.17 Enumeration e = map.keys();
313     int count = 0;
314     while (e.hasMoreElements()) {
315     count++;
316     e.nextElement();
317     }
318     assertEquals(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.1 ConcurrentHashMap map = map5();
326 jsr166 1.17 Set s = map.keySet();
327     assertEquals(5, s.size());
328     assertTrue(s.contains(one));
329     assertTrue(s.contains(two));
330     assertTrue(s.contains(three));
331     assertTrue(s.contains(four));
332     assertTrue(s.contains(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     ConcurrentHashMap<Integer, String> map = new ConcurrentHashMap<>();
340     Set<Integer> set = map.keySet();
341     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     ConcurrentHashMap map = map5();
355 jsr166 1.17 Set s = map.keySet();
356 dl 1.13 Object[] ar = s.toArray();
357     assertTrue(s.containsAll(Arrays.asList(ar)));
358 jsr166 1.17 assertEquals(5, ar.length);
359 dl 1.13 ar[0] = m10;
360     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     ConcurrentHashMap map = map5();
368 jsr166 1.17 Collection v = map.values();
369 dl 1.13 Object[] ar = v.toArray();
370     ArrayList s = new ArrayList(Arrays.asList(ar));
371 jsr166 1.17 assertEquals(5, ar.length);
372     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     ConcurrentHashMap map = map5();
384 jsr166 1.17 Set s = map.entrySet();
385 dl 1.13 Object[] ar = s.toArray();
386     assertEquals(5, ar.length);
387     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.1 ConcurrentHashMap map = map5();
398 jsr166 1.17 Collection s = map.values();
399     assertEquals(5, s.size());
400     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.1 ConcurrentHashMap map = map5();
412 jsr166 1.17 Set s = map.entrySet();
413     assertEquals(5, s.size());
414 dl 1.1 Iterator it = s.iterator();
415     while (it.hasNext()) {
416     Map.Entry e = (Map.Entry) 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 dl 1.1 ConcurrentHashMap empty = new ConcurrentHashMap();
431     ConcurrentHashMap map = map5();
432 jsr166 1.17 empty.putAll(map);
433     assertEquals(5, empty.size());
434     assertTrue(empty.containsKey(one));
435     assertTrue(empty.containsKey(two));
436     assertTrue(empty.containsKey(three));
437     assertTrue(empty.containsKey(four));
438     assertTrue(empty.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.1 ConcurrentHashMap 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.1 ConcurrentHashMap map = map5();
455     assertEquals("A", map.putIfAbsent(one, "Z"));
456     }
457    
458     /**
459 jsr166 1.22 * replace fails when the given key is not present
460 dl 1.7 */
461     public void testReplace() {
462     ConcurrentHashMap 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     ConcurrentHashMap map = map5();
472 dl 1.8 assertNotNull(map.replace(one, "Z"));
473 dl 1.7 assertEquals("Z", map.get(one));
474     }
475    
476     /**
477     * replace value fails when the given key not mapped to expected value
478     */
479     public void testReplaceValue() {
480     ConcurrentHashMap map = map5();
481     assertEquals("A", map.get(one));
482 jsr166 1.17 assertFalse(map.replace(one, "Z", "Z"));
483 dl 1.7 assertEquals("A", map.get(one));
484     }
485    
486     /**
487     * replace value succeeds when the given key mapped to expected value
488     */
489     public void testReplaceValue2() {
490     ConcurrentHashMap map = map5();
491     assertEquals("A", map.get(one));
492 jsr166 1.17 assertTrue(map.replace(one, "A", "Z"));
493 dl 1.7 assertEquals("Z", map.get(one));
494     }
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.1 ConcurrentHashMap map = map5();
501 jsr166 1.17 map.remove(five);
502     assertEquals(4, map.size());
503     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.1 ConcurrentHashMap map = map5();
511 jsr166 1.17 map.remove(five, "E");
512     assertEquals(4, map.size());
513     assertFalse(map.containsKey(five));
514     map.remove(four, "A");
515     assertEquals(4, map.size());
516     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.1 ConcurrentHashMap map = map5();
524     ConcurrentHashMap empty = new ConcurrentHashMap();
525 jsr166 1.17 assertEquals(0, empty.size());
526     assertEquals(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.1 ConcurrentHashMap map = map5();
534     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.36 new ConcurrentHashMap(-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.36 new ConcurrentHashMap(-1, .75f);
559 dl 1.5 shouldThrow();
560 jsr166 1.43 } catch (IllegalArgumentException success) {}
561 jsr166 1.37
562 dl 1.36 try {
563     new ConcurrentHashMap(16, -1);
564     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     new ConcurrentHashMap(-1, .75f, 1);
575     shouldThrow();
576 jsr166 1.43 } catch (IllegalArgumentException success) {}
577 jsr166 1.37
578     try {
579     new ConcurrentHashMap(16, -1, 1);
580     shouldThrow();
581 jsr166 1.43 } catch (IllegalArgumentException success) {}
582 jsr166 1.37
583     try {
584     new ConcurrentHashMap(16, .75f, -1);
585     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.36 new ConcurrentHashMap(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     ConcurrentHashMap map1 = map5();
606     ConcurrentHashMap map2 = new ConcurrentHashMap(map5());
607     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.44 ConcurrentHashMap 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
672 dl 1.5 try {
673 dl 1.1 c.put("whatever", 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap 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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
705 dl 1.7 try {
706     c.replace(null, one, "whatever");
707     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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
716 dl 1.5 try {
717 dl 1.1 c.putIfAbsent("whatever", 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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
727 dl 1.7 try {
728     c.replace("whatever", null);
729     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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
738 dl 1.7 try {
739     c.replace("whatever", null, "A");
740     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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
749 dl 1.7 try {
750     c.replace("whatever", one, 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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
760     c.put("sadsdf", "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.44 ConcurrentHashMap c = new ConcurrentHashMap(5);
772     c.put("sadsdf", "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.19 ConcurrentHashMap c = new ConcurrentHashMap(5);
784     c.put("sadsdf", "asdads");
785     assertFalse(c.remove("sadsdf", null));
786 dl 1.12 }
787    
788     /**
789 dl 1.5 * A deserialized map equals original
790     */
791 jsr166 1.18 public void testSerialization() throws Exception {
792 jsr166 1.25 Map x = map5();
793     Map y = serialClone(x);
794 dl 1.2
795 jsr166 1.31 assertNotSame(x, y);
796 jsr166 1.25 assertEquals(x.size(), y.size());
797     assertEquals(x, y);
798     assertEquals(y, x);
799 dl 1.2 }
800 dl 1.6
801     /**
802     * SetValue of an EntrySet entry sets value in the map.
803     */
804     public void testSetValueWriteThrough() {
805 jsr166 1.14 // Adapted from a bug report by Eric Zoerner
806 dl 1.6 ConcurrentHashMap map = new ConcurrentHashMap(2, 5.0f, 1);
807     assertTrue(map.isEmpty());
808     for (int i = 0; i < 20; i++)
809     map.put(new Integer(i), new Integer(i));
810     assertFalse(map.isEmpty());
811     Map.Entry entry1 = (Map.Entry)map.entrySet().iterator().next();
812 dl 1.29 // Unless it happens to be first (in which case remainder of
813     // test is skipped), remove a possibly-colliding key from map
814     // which, under some implementations, may cause entry1 to be
815     // cloned in map
816     if (!entry1.getKey().equals(new Integer(16))) {
817     map.remove(new Integer(16));
818     entry1.setValue("XYZ");
819     assertTrue(map.containsValue("XYZ")); // fails if write-through broken
820     }
821 dl 1.6 }
822 jsr166 1.14
823 jsr166 1.48 /**
824     * Tests performance of removeAll when the other collection is much smaller.
825     * ant -Djsr166.tckTestClass=ConcurrentHashMapTest -Djsr166.methodFilter=testRemoveAll_performance -Djsr166.expensiveTests=true tck
826     */
827     public void testRemoveAll_performance() {
828 jsr166 1.49 final int mapSize = expensiveTests ? 1_000_000 : 100;
829     final int iterations = expensiveTests ? 500 : 2;
830     final ConcurrentHashMap<Integer, Integer> map = new ConcurrentHashMap<>();
831 jsr166 1.48 for (int i = 0; i < mapSize; i++)
832     map.put(i, i);
833     Set<Integer> keySet = map.keySet();
834     Collection<Integer> removeMe = Arrays.asList(new Integer[] { -99, -86 });
835     for (int i = 0; i < iterations; i++)
836     assertFalse(keySet.removeAll(removeMe));
837     assertEquals(mapSize, map.size());
838     }
839 jsr166 1.49
840 dl 1.1 }