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

Comparing jsr166/src/test/tck/ConcurrentHashMapTest.java (file contents):
Revision 1.21 by jsr166, Wed Aug 25 00:07:03 2010 UTC vs.
Revision 1.39 by jsr166, Tue Sep 24 17:26:27 2013 UTC

# Line 1 | Line 1
1   /*
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
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
10   import java.util.*;
11 < import java.util.concurrent.*;
12 < import java.util.Enumeration;
13 < import java.io.*;
11 > import java.util.concurrent.ConcurrentHashMap;
12  
13   public class ConcurrentHashMapTest extends JSR166TestCase {
14      public static void main(String[] args) {
# Line 21 | Line 19 | public class ConcurrentHashMapTest exten
19      }
20  
21      /**
22 <     * Create a map from Integers 1-5 to Strings "A"-"E".
22 >     * Returns a new map from Integers 1-5 to Strings "A"-"E".
23       */
24 <    private static ConcurrentHashMap map5() {
25 <        ConcurrentHashMap map = new ConcurrentHashMap(5);
24 >    private static ConcurrentHashMap<Integer, String> map5() {
25 >        ConcurrentHashMap map = new ConcurrentHashMap<Integer, String>(5);
26          assertTrue(map.isEmpty());
27          map.put(one, "A");
28          map.put(two, "B");
# Line 36 | Line 34 | public class ConcurrentHashMapTest exten
34          return map;
35      }
36  
37 +    /** Re-implement Integer.compare for old java versions */
38 +    static int compare(int x, int y) { return x < y ? -1 : x > y ? 1 : 0; }
39 +
40 +    // classes for testing Comparable fallbacks
41 +    static class BI implements Comparable<BI> {
42 +        private final int value;
43 +        BI(int value) { this.value = value; }
44 +        public int compareTo(BI other) {
45 +            return compare(value, other.value);
46 +        }
47 +        public boolean equals(Object x) {
48 +            return (x instanceof BI) && ((BI)x).value == value;
49 +        }
50 +        public int hashCode() { return 42; }
51 +    }
52 +    static class CI extends BI { CI(int value) { super(value); } }
53 +    static class DI extends BI { DI(int value) { super(value); } }
54 +
55 +    static class BS implements Comparable<BS> {
56 +        private final String value;
57 +        BS(String value) { this.value = value; }
58 +        public int compareTo(BS other) {
59 +            return value.compareTo(other.value);
60 +        }
61 +        public boolean equals(Object x) {
62 +            return (x instanceof BS) && value.equals(((BS)x).value);
63 +        }
64 +        public int hashCode() { return 42; }
65 +    }
66 +
67 +    static class LexicographicList<E extends Comparable<E>> extends ArrayList<E>
68 +        implements Comparable<LexicographicList<E>> {
69 +        LexicographicList(Collection<E> c) { super(c); }
70 +        LexicographicList(E e) { super(Collections.singleton(e)); }
71 +        public int compareTo(LexicographicList<E> other) {
72 +            int common = Math.min(size(), other.size());
73 +            int r = 0;
74 +            for (int i = 0; i < common; i++) {
75 +                if ((r = get(i).compareTo(other.get(i))) != 0)
76 +                    break;
77 +            }
78 +            if (r == 0)
79 +                r = compare(size(), other.size());
80 +            return r;
81 +        }
82 +        private static final long serialVersionUID = 0;
83 +    }
84 +
85 +    static class CollidingObject {
86 +        final String value;
87 +        CollidingObject(final String value) { this.value = value; }
88 +        public int hashCode() { return this.value.hashCode() & 1; }
89 +        public boolean equals(final Object obj) {
90 +            return (obj instanceof CollidingObject) && ((CollidingObject)obj).value.equals(value);
91 +        }
92 +    }
93 +
94 +    static class ComparableCollidingObject extends CollidingObject implements Comparable<ComparableCollidingObject> {
95 +        ComparableCollidingObject(final String value) { super(value); }
96 +        public int compareTo(final ComparableCollidingObject o) {
97 +            return value.compareTo(o.value);
98 +        }
99 +    }
100 +
101 +    /**
102 +     * Inserted elements that are subclasses of the same Comparable
103 +     * class are found.
104 +     */
105 +    public void testComparableFamily() {
106 +        int size = 500;         // makes measured test run time -> 60ms
107 +        ConcurrentHashMap<BI, Boolean> m =
108 +            new ConcurrentHashMap<BI, Boolean>();
109 +        for (int i = 0; i < size; i++) {
110 +            assertTrue(m.put(new CI(i), true) == null);
111 +        }
112 +        for (int i = 0; i < size; i++) {
113 +            assertTrue(m.containsKey(new CI(i)));
114 +            assertTrue(m.containsKey(new DI(i)));
115 +        }
116 +    }
117 +
118 +    /**
119 +     * Elements of classes with erased generic type parameters based
120 +     * on Comparable can be inserted and found.
121 +     */
122 +    public void testGenericComparable() {
123 +        int size = 120;         // makes measured test run time -> 60ms
124 +        ConcurrentHashMap<Object, Boolean> m =
125 +            new ConcurrentHashMap<Object, Boolean>();
126 +        for (int i = 0; i < size; i++) {
127 +            BI bi = new BI(i);
128 +            BS bs = new BS(String.valueOf(i));
129 +            LexicographicList<BI> bis = new LexicographicList<BI>(bi);
130 +            LexicographicList<BS> bss = new LexicographicList<BS>(bs);
131 +            assertTrue(m.putIfAbsent(bis, true) == null);
132 +            assertTrue(m.containsKey(bis));
133 +            if (m.putIfAbsent(bss, true) == null)
134 +                assertTrue(m.containsKey(bss));
135 +            assertTrue(m.containsKey(bis));
136 +        }
137 +        for (int i = 0; i < size; i++) {
138 +            assertTrue(m.containsKey(Collections.singletonList(new BI(i))));
139 +        }
140 +    }
141 +
142 +    /**
143 +     * Elements of non-comparable classes equal to those of classes
144 +     * with erased generic type parameters based on Comparable can be
145 +     * inserted and found.
146 +     */
147 +    public void testGenericComparable2() {
148 +        int size = 500;         // makes measured test run time -> 60ms
149 +        ConcurrentHashMap<Object, Boolean> m =
150 +            new ConcurrentHashMap<Object, Boolean>();
151 +        for (int i = 0; i < size; i++) {
152 +            m.put(Collections.singletonList(new BI(i)), true);
153 +        }
154 +
155 +        for (int i = 0; i < size; i++) {
156 +            LexicographicList<BI> bis = new LexicographicList<BI>(new BI(i));
157 +            assertTrue(m.containsKey(bis));
158 +        }
159 +    }
160 +
161 +    /**
162 +     * Mixtures of instances of comparable and non-comparable classes
163 +     * can be inserted and found.
164 +     */
165 +    public void testMixedComparable() {
166 +        int size = 1200;        // makes measured test run time -> 35ms
167 +        ConcurrentHashMap<Object, Object> map =
168 +            new ConcurrentHashMap<Object, Object>();
169 +        Random rng = new Random();
170 +        for (int i = 0; i < size; i++) {
171 +            Object x;
172 +            switch (rng.nextInt(4)) {
173 +            case 0:
174 +                x = new Object();
175 +                break;
176 +            case 1:
177 +                x = new CollidingObject(Integer.toString(i));
178 +                break;
179 +            default:
180 +                x = new ComparableCollidingObject(Integer.toString(i));
181 +            }
182 +            assertNull(map.put(x, x));
183 +        }
184 +        int count = 0;
185 +        for (Object k : map.keySet()) {
186 +            assertEquals(map.get(k), k);
187 +            ++count;
188 +        }
189 +        assertEquals(count, size);
190 +        assertEquals(map.size(), size);
191 +        for (Object k : map.keySet()) {
192 +            assertEquals(map.put(k, k), k);
193 +        }
194 +    }
195 +
196      /**
197 <     *  clear removes all pairs
197 >     * clear removes all pairs
198       */
199      public void testClear() {
200          ConcurrentHashMap map = map5();
201          map.clear();
202 <        assertEquals(map.size(), 0);
202 >        assertEquals(0, map.size());
203      }
204  
205      /**
206 <     *  Maps with same contents are equal
206 >     * Maps with same contents are equal
207       */
208      public void testEquals() {
209          ConcurrentHashMap map1 = map5();
# Line 59 | Line 216 | public class ConcurrentHashMapTest exten
216      }
217  
218      /**
219 <     *  contains returns true for contained value
219 >     * hashCode() equals sum of each key.hashCode ^ value.hashCode
220 >     */
221 >    public void testHashCode() {
222 >        ConcurrentHashMap<Integer,String> map = map5();
223 >        int sum = 0;
224 >        for (Map.Entry<Integer,String> e : map.entrySet())
225 >            sum += e.getKey().hashCode() ^ e.getValue().hashCode();
226 >        assertEquals(sum, map.hashCode());
227 >    }
228 >
229 >    /**
230 >     * contains returns true for contained value
231       */
232      public void testContains() {
233          ConcurrentHashMap map = map5();
# Line 68 | Line 236 | public class ConcurrentHashMapTest exten
236      }
237  
238      /**
239 <     *  containsKey returns true for contained key
239 >     * containsKey returns true for contained key
240       */
241      public void testContainsKey() {
242          ConcurrentHashMap map = map5();
# Line 77 | Line 245 | public class ConcurrentHashMapTest exten
245      }
246  
247      /**
248 <     *  containsValue returns true for held values
248 >     * containsValue returns true for held values
249       */
250      public void testContainsValue() {
251          ConcurrentHashMap map = map5();
# Line 86 | Line 254 | public class ConcurrentHashMapTest exten
254      }
255  
256      /**
257 <     *   enumeration returns an enumeration containing the correct
258 <     *   elements
257 >     * enumeration returns an enumeration containing the correct
258 >     * elements
259       */
260      public void testEnumeration() {
261          ConcurrentHashMap map = map5();
# Line 101 | Line 269 | public class ConcurrentHashMapTest exten
269      }
270  
271      /**
272 <     *  get returns the correct element at the given key,
273 <     *  or null if not present
272 >     * get returns the correct element at the given key,
273 >     * or null if not present
274       */
275      public void testGet() {
276          ConcurrentHashMap map = map5();
# Line 112 | Line 280 | public class ConcurrentHashMapTest exten
280      }
281  
282      /**
283 <     *  isEmpty is true of empty map and false for non-empty
283 >     * isEmpty is true of empty map and false for non-empty
284       */
285      public void testIsEmpty() {
286          ConcurrentHashMap empty = new ConcurrentHashMap();
# Line 122 | Line 290 | public class ConcurrentHashMapTest exten
290      }
291  
292      /**
293 <     *   keys returns an enumeration containing all the keys from the map
293 >     * keys returns an enumeration containing all the keys from the map
294       */
295      public void testKeys() {
296          ConcurrentHashMap map = map5();
# Line 136 | Line 304 | public class ConcurrentHashMapTest exten
304      }
305  
306      /**
307 <     *   keySet returns a Set containing all the keys
307 >     * keySet returns a Set containing all the keys
308       */
309      public void testKeySet() {
310          ConcurrentHashMap map = map5();
# Line 150 | Line 318 | public class ConcurrentHashMapTest exten
318      }
319  
320      /**
321 <     *  keySet.toArray returns contains all keys
321 >     * keySet.toArray returns contains all keys
322       */
323      public void testKeySetToArray() {
324          ConcurrentHashMap map = map5();
# Line 163 | Line 331 | public class ConcurrentHashMapTest exten
331      }
332  
333      /**
334 <     *  Values.toArray contains all values
334 >     * Values.toArray contains all values
335       */
336      public void testValuesToArray() {
337          ConcurrentHashMap map = map5();
# Line 179 | Line 347 | public class ConcurrentHashMapTest exten
347      }
348  
349      /**
350 <     *  entrySet.toArray contains all entries
350 >     * entrySet.toArray contains all entries
351       */
352      public void testEntrySetToArray() {
353          ConcurrentHashMap map = map5();
# Line 226 | Line 394 | public class ConcurrentHashMapTest exten
394      }
395  
396      /**
397 <     *   putAll  adds all key-value pairs from the given map
397 >     * putAll adds all key-value pairs from the given map
398       */
399      public void testPutAll() {
400          ConcurrentHashMap empty = new ConcurrentHashMap();
# Line 241 | Line 409 | public class ConcurrentHashMapTest exten
409      }
410  
411      /**
412 <     *   putIfAbsent works when the given key is not present
412 >     * putIfAbsent works when the given key is not present
413       */
414      public void testPutIfAbsent() {
415          ConcurrentHashMap map = map5();
# Line 250 | Line 418 | public class ConcurrentHashMapTest exten
418      }
419  
420      /**
421 <     *   putIfAbsent does not add the pair if the key is already present
421 >     * putIfAbsent does not add the pair if the key is already present
422       */
423      public void testPutIfAbsent2() {
424          ConcurrentHashMap map = map5();
# Line 258 | Line 426 | public class ConcurrentHashMapTest exten
426      }
427  
428      /**
429 <     *   replace fails when the given key is not present
429 >     * replace fails when the given key is not present
430       */
431      public void testReplace() {
432          ConcurrentHashMap map = map5();
# Line 267 | Line 435 | public class ConcurrentHashMapTest exten
435      }
436  
437      /**
438 <     *   replace succeeds if the key is already present
438 >     * replace succeeds if the key is already present
439       */
440      public void testReplace2() {
441          ConcurrentHashMap map = map5();
# Line 275 | Line 443 | public class ConcurrentHashMapTest exten
443          assertEquals("Z", map.get(one));
444      }
445  
278
446      /**
447       * replace value fails when the given key not mapped to expected value
448       */
# Line 296 | Line 463 | public class ConcurrentHashMapTest exten
463          assertEquals("Z", map.get(one));
464      }
465  
299
466      /**
467 <     *   remove removes the correct key-value pair from the map
467 >     * remove removes the correct key-value pair from the map
468       */
469      public void testRemove() {
470          ConcurrentHashMap map = map5();
# Line 321 | Line 487 | public class ConcurrentHashMapTest exten
487      }
488  
489      /**
490 <     *   size returns the correct values
490 >     * size returns the correct values
491       */
492      public void testSize() {
493          ConcurrentHashMap map = map5();
# Line 337 | Line 503 | public class ConcurrentHashMapTest exten
503          ConcurrentHashMap map = map5();
504          String s = map.toString();
505          for (int i = 1; i <= 5; ++i) {
506 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
506 >            assertTrue(s.contains(String.valueOf(i)));
507          }
508      }
509  
510      // Exception tests
511  
512      /**
513 <     * Cannot create with negative capacity
513 >     * Cannot create with only negative capacity
514       */
515      public void testConstructor1() {
516          try {
517 <            new ConcurrentHashMap(-1,0,1);
517 >            new ConcurrentHashMap(-1);
518              shouldThrow();
519          } catch (IllegalArgumentException success) {}
520      }
521  
522      /**
523 <     * Cannot create with negative concurrency level
524 <     */
523 >     * Constructor (initialCapacity, loadFactor) throws
524 >     * IllegalArgumentException if either argument is negative
525 >      */
526      public void testConstructor2() {
527          try {
528 <            new ConcurrentHashMap(1,0,-1);
528 >            new ConcurrentHashMap(-1, .75f);
529              shouldThrow();
530 <        } catch (IllegalArgumentException success) {}
530 >        } catch (IllegalArgumentException e) {}
531 >
532 >        try {
533 >            new ConcurrentHashMap(16, -1);
534 >            shouldThrow();
535 >        } catch (IllegalArgumentException e) {}
536      }
537  
538      /**
539 <     * Cannot create with only negative capacity
539 >     * Constructor (initialCapacity, loadFactor, concurrencyLevel)
540 >     * throws IllegalArgumentException if any argument is negative
541       */
542      public void testConstructor3() {
543          try {
544 <            new ConcurrentHashMap(-1);
544 >            new ConcurrentHashMap(-1, .75f, 1);
545              shouldThrow();
546 <        } catch (IllegalArgumentException success) {}
546 >        } catch (IllegalArgumentException e) {}
547 >
548 >        try {
549 >            new ConcurrentHashMap(16, -1, 1);
550 >            shouldThrow();
551 >        } catch (IllegalArgumentException e) {}
552 >
553 >        try {
554 >            new ConcurrentHashMap(16, .75f, -1);
555 >            shouldThrow();
556 >        } catch (IllegalArgumentException e) {}
557      }
558  
559      /**
560 +     * ConcurrentHashMap(map) throws NullPointerException if the given
561 +     * map is null
562 +     */
563 +    public void testConstructor4() {
564 +        try {
565 +            new ConcurrentHashMap(null);
566 +            shouldThrow();
567 +        } catch (NullPointerException e) {}
568 +    }
569 +
570 +    /**
571 +     * ConcurrentHashMap(map) creates a new map with the same mappings
572 +     * as the given map
573 +     */
574 +    public void testConstructor5() {
575 +        ConcurrentHashMap map1 = map5();
576 +        ConcurrentHashMap map2 = new ConcurrentHashMap(map5());
577 +        assertTrue(map2.equals(map1));
578 +        map2.put(one, "F");
579 +        assertFalse(map2.equals(map1));
580 +    }
581 +
582 +
583 +    /**
584       * get(null) throws NPE
585       */
586      public void testGet_NullPointerException() {
# Line 483 | Line 690 | public class ConcurrentHashMapTest exten
690          } catch (NullPointerException success) {}
691      }
692  
486
693      /**
694       * replace(x, null) throws NPE
695       */
# Line 517 | Line 723 | public class ConcurrentHashMapTest exten
723          } catch (NullPointerException success) {}
724      }
725  
520
726      /**
727       * remove(null) throws NPE
728       */
# Line 555 | Line 760 | public class ConcurrentHashMapTest exten
760       * A deserialized map equals original
761       */
762      public void testSerialization() throws Exception {
763 <        ConcurrentHashMap q = map5();
763 >        Map x = map5();
764 >        Map y = serialClone(x);
765  
766 <        ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
767 <        ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
768 <        out.writeObject(q);
769 <        out.close();
564 <
565 <        ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
566 <        ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
567 <        ConcurrentHashMap r = (ConcurrentHashMap)in.readObject();
568 <        assertEquals(q.size(), r.size());
569 <        assertTrue(q.equals(r));
570 <        assertTrue(r.equals(q));
766 >        assertNotSame(x, y);
767 >        assertEquals(x.size(), y.size());
768 >        assertEquals(x, y);
769 >        assertEquals(y, x);
770      }
771  
573
772      /**
773       * SetValue of an EntrySet entry sets value in the map.
774       */
# Line 582 | Line 780 | public class ConcurrentHashMapTest exten
780              map.put(new Integer(i), new Integer(i));
781          assertFalse(map.isEmpty());
782          Map.Entry entry1 = (Map.Entry)map.entrySet().iterator().next();
783 <
784 <        // assert that entry1 is not 16
785 <        assertTrue("entry is 16, test not valid",
786 <                   !entry1.getKey().equals(new Integer(16)));
787 <
788 <        // remove 16 (a different key) from map
789 <        // which just happens to cause entry1 to be cloned in map
790 <        map.remove(new Integer(16));
791 <        entry1.setValue("XYZ");
594 <        assertTrue(map.containsValue("XYZ")); // fails
783 >        // Unless it happens to be first (in which case remainder of
784 >        // test is skipped), remove a possibly-colliding key from map
785 >        // which, under some implementations, may cause entry1 to be
786 >        // cloned in map
787 >        if (!entry1.getKey().equals(new Integer(16))) {
788 >            map.remove(new Integer(16));
789 >            entry1.setValue("XYZ");
790 >            assertTrue(map.containsValue("XYZ")); // fails if write-through broken
791 >        }
792      }
793  
794   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines