ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentSkipListMapTest.java
Revision: 1.13
Committed: Sat Nov 21 10:25:05 2009 UTC (14 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.12: +12 -17 lines
Log Message:
improve exception handling

File Contents

# User Rev Content
1 dl 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
5     */
6    
7     import junit.framework.*;
8     import java.util.*;
9     import java.util.concurrent.*;
10     import java.io.*;
11    
12     public class ConcurrentSkipListMapTest extends JSR166TestCase {
13     public static void main(String[] args) {
14 jsr166 1.12 junit.textui.TestRunner.run (suite());
15 dl 1.1 }
16     public static Test suite() {
17 jsr166 1.12 return new TestSuite(ConcurrentSkipListMapTest.class);
18 dl 1.1 }
19    
20     /**
21     * Create a map from Integers 1-5 to Strings "A"-"E".
22     */
23 jsr166 1.9 private static ConcurrentSkipListMap map5() {
24 jsr166 1.12 ConcurrentSkipListMap map = new ConcurrentSkipListMap();
25 dl 1.1 assertTrue(map.isEmpty());
26 jsr166 1.12 map.put(one, "A");
27     map.put(five, "E");
28     map.put(three, "C");
29     map.put(two, "B");
30     map.put(four, "D");
31 dl 1.1 assertFalse(map.isEmpty());
32     assertEquals(5, map.size());
33 jsr166 1.12 return map;
34 dl 1.1 }
35    
36     /**
37     * clear removes all pairs
38     */
39     public void testClear() {
40     ConcurrentSkipListMap map = map5();
41 jsr166 1.12 map.clear();
42     assertEquals(map.size(), 0);
43 dl 1.1 }
44    
45     /**
46 jsr166 1.9 *
47 dl 1.1 */
48     public void testConstructFromSorted() {
49     ConcurrentSkipListMap map = map5();
50     ConcurrentSkipListMap map2 = new ConcurrentSkipListMap(map);
51     assertEquals(map, map2);
52     }
53    
54     /**
55     * Maps with same contents are equal
56     */
57     public void testEquals() {
58     ConcurrentSkipListMap map1 = map5();
59     ConcurrentSkipListMap map2 = map5();
60     assertEquals(map1, map2);
61     assertEquals(map2, map1);
62 jsr166 1.12 map1.clear();
63 dl 1.1 assertFalse(map1.equals(map2));
64     assertFalse(map2.equals(map1));
65     }
66    
67     /**
68     * containsKey returns true for contained key
69     */
70     public void testContainsKey() {
71     ConcurrentSkipListMap map = map5();
72 jsr166 1.12 assertTrue(map.containsKey(one));
73 dl 1.1 assertFalse(map.containsKey(zero));
74     }
75    
76     /**
77     * containsValue returns true for held values
78     */
79     public void testContainsValue() {
80     ConcurrentSkipListMap map = map5();
81 jsr166 1.12 assertTrue(map.containsValue("A"));
82 dl 1.1 assertFalse(map.containsValue("Z"));
83     }
84    
85     /**
86     * get returns the correct element at the given key,
87     * or null if not present
88     */
89     public void testGet() {
90     ConcurrentSkipListMap map = map5();
91 jsr166 1.12 assertEquals("A", (String)map.get(one));
92 dl 1.1 ConcurrentSkipListMap empty = new ConcurrentSkipListMap();
93     assertNull(empty.get(one));
94     }
95    
96     /**
97     * isEmpty is true of empty map and false for non-empty
98     */
99     public void testIsEmpty() {
100     ConcurrentSkipListMap empty = new ConcurrentSkipListMap();
101     ConcurrentSkipListMap map = map5();
102 jsr166 1.12 assertTrue(empty.isEmpty());
103 dl 1.1 assertFalse(map.isEmpty());
104     }
105    
106     /**
107     * firstKey returns first key
108     */
109     public void testFirstKey() {
110     ConcurrentSkipListMap map = map5();
111 jsr166 1.12 assertEquals(one, map.firstKey());
112 dl 1.1 }
113    
114     /**
115     * lastKey returns last key
116     */
117     public void testLastKey() {
118     ConcurrentSkipListMap map = map5();
119 jsr166 1.12 assertEquals(five, map.lastKey());
120 dl 1.1 }
121    
122    
123     /**
124     * keySet.toArray returns contains all keys
125     */
126     public void testKeySetToArray() {
127     ConcurrentSkipListMap map = map5();
128 jsr166 1.12 Set s = map.keySet();
129 dl 1.1 Object[] ar = s.toArray();
130     assertTrue(s.containsAll(Arrays.asList(ar)));
131 jsr166 1.12 assertEquals(5, ar.length);
132 dl 1.1 ar[0] = m10;
133     assertFalse(s.containsAll(Arrays.asList(ar)));
134     }
135    
136     /**
137     * descendingkeySet.toArray returns contains all keys
138     */
139     public void testDescendingKeySetToArray() {
140     ConcurrentSkipListMap map = map5();
141 jsr166 1.12 Set s = map.descendingKeySet();
142 dl 1.1 Object[] ar = s.toArray();
143 jsr166 1.12 assertEquals(5, ar.length);
144 dl 1.1 assertTrue(s.containsAll(Arrays.asList(ar)));
145     ar[0] = m10;
146     assertFalse(s.containsAll(Arrays.asList(ar)));
147     }
148    
149     /**
150     * keySet returns a Set containing all the keys
151     */
152     public void testKeySet() {
153     ConcurrentSkipListMap map = map5();
154 jsr166 1.12 Set s = map.keySet();
155     assertEquals(5, s.size());
156     assertTrue(s.contains(one));
157     assertTrue(s.contains(two));
158     assertTrue(s.contains(three));
159     assertTrue(s.contains(four));
160     assertTrue(s.contains(five));
161 dl 1.1 }
162    
163     /**
164     * keySet is ordered
165     */
166     public void testKeySetOrder() {
167     ConcurrentSkipListMap map = map5();
168 jsr166 1.12 Set s = map.keySet();
169 dl 1.1 Iterator i = s.iterator();
170     Integer last = (Integer)i.next();
171     assertEquals(last, one);
172 dl 1.8 int count = 1;
173 dl 1.1 while (i.hasNext()) {
174     Integer k = (Integer)i.next();
175     assertTrue(last.compareTo(k) < 0);
176     last = k;
177 dl 1.8 ++count;
178 dl 1.1 }
179 dl 1.8 assertEquals(count ,5);
180     }
181    
182     /**
183     * descending iterator of key set is inverse ordered
184     */
185     public void testKeySetDescendingIteratorOrder() {
186     ConcurrentSkipListMap map = map5();
187 jsr166 1.12 NavigableSet s = map.navigableKeySet();
188 dl 1.8 Iterator i = s.descendingIterator();
189     Integer last = (Integer)i.next();
190     assertEquals(last, five);
191     int count = 1;
192     while (i.hasNext()) {
193     Integer k = (Integer)i.next();
194     assertTrue(last.compareTo(k) > 0);
195     last = k;
196     ++count;
197     }
198     assertEquals(count ,5);
199 dl 1.1 }
200    
201     /**
202     * descendingKeySet is ordered
203     */
204     public void testDescendingKeySetOrder() {
205     ConcurrentSkipListMap map = map5();
206 jsr166 1.12 Set s = map.descendingKeySet();
207 dl 1.1 Iterator i = s.iterator();
208     Integer last = (Integer)i.next();
209     assertEquals(last, five);
210 dl 1.8 int count = 1;
211 dl 1.1 while (i.hasNext()) {
212     Integer k = (Integer)i.next();
213     assertTrue(last.compareTo(k) > 0);
214     last = k;
215 dl 1.8 ++count;
216 dl 1.1 }
217 dl 1.8 assertEquals(count, 5);
218 dl 1.1 }
219    
220 dl 1.8 /**
221     * descending iterator of descendingKeySet is ordered
222     */
223     public void testDescendingKeySetDescendingIteratorOrder() {
224     ConcurrentSkipListMap map = map5();
225 jsr166 1.12 NavigableSet s = map.descendingKeySet();
226 dl 1.8 Iterator i = s.descendingIterator();
227     Integer last = (Integer)i.next();
228     assertEquals(last, one);
229     int count = 1;
230     while (i.hasNext()) {
231     Integer k = (Integer)i.next();
232     assertTrue(last.compareTo(k) < 0);
233     last = k;
234     ++count;
235     }
236     assertEquals(count, 5);
237     }
238 dl 1.4
239     /**
240     * Values.toArray contains all values
241     */
242     public void testValuesToArray() {
243     ConcurrentSkipListMap map = map5();
244 jsr166 1.12 Collection v = map.values();
245 dl 1.4 Object[] ar = v.toArray();
246     ArrayList s = new ArrayList(Arrays.asList(ar));
247 jsr166 1.12 assertEquals(5, ar.length);
248     assertTrue(s.contains("A"));
249     assertTrue(s.contains("B"));
250     assertTrue(s.contains("C"));
251     assertTrue(s.contains("D"));
252     assertTrue(s.contains("E"));
253 dl 1.4 }
254    
255 dl 1.1 /**
256     * values collection contains all values
257     */
258     public void testValues() {
259     ConcurrentSkipListMap map = map5();
260 jsr166 1.12 Collection s = map.values();
261     assertEquals(5, s.size());
262     assertTrue(s.contains("A"));
263     assertTrue(s.contains("B"));
264     assertTrue(s.contains("C"));
265     assertTrue(s.contains("D"));
266     assertTrue(s.contains("E"));
267 dl 1.1 }
268    
269     /**
270     * entrySet contains all pairs
271     */
272     public void testEntrySet() {
273     ConcurrentSkipListMap map = map5();
274 jsr166 1.12 Set s = map.entrySet();
275     assertEquals(5, s.size());
276 dl 1.1 Iterator it = s.iterator();
277     while (it.hasNext()) {
278     Map.Entry e = (Map.Entry) it.next();
279 jsr166 1.9 assertTrue(
280 dl 1.1 (e.getKey().equals(one) && e.getValue().equals("A")) ||
281     (e.getKey().equals(two) && e.getValue().equals("B")) ||
282     (e.getKey().equals(three) && e.getValue().equals("C")) ||
283     (e.getKey().equals(four) && e.getValue().equals("D")) ||
284     (e.getKey().equals(five) && e.getValue().equals("E")));
285     }
286     }
287    
288     /**
289     * descendingEntrySet contains all pairs
290     */
291     public void testDescendingEntrySet() {
292     ConcurrentSkipListMap map = map5();
293 jsr166 1.12 Set s = map.descendingMap().entrySet();
294     assertEquals(5, s.size());
295 dl 1.1 Iterator it = s.iterator();
296     while (it.hasNext()) {
297     Map.Entry e = (Map.Entry) it.next();
298 jsr166 1.9 assertTrue(
299 dl 1.1 (e.getKey().equals(one) && e.getValue().equals("A")) ||
300     (e.getKey().equals(two) && e.getValue().equals("B")) ||
301     (e.getKey().equals(three) && e.getValue().equals("C")) ||
302     (e.getKey().equals(four) && e.getValue().equals("D")) ||
303     (e.getKey().equals(five) && e.getValue().equals("E")));
304     }
305     }
306    
307     /**
308     * entrySet.toArray contains all entries
309     */
310     public void testEntrySetToArray() {
311     ConcurrentSkipListMap map = map5();
312 jsr166 1.12 Set s = map.entrySet();
313 dl 1.1 Object[] ar = s.toArray();
314     assertEquals(5, ar.length);
315     for (int i = 0; i < 5; ++i) {
316     assertTrue(map.containsKey(((Map.Entry)(ar[i])).getKey()));
317     assertTrue(map.containsValue(((Map.Entry)(ar[i])).getValue()));
318     }
319     }
320    
321     /**
322     * descendingEntrySet.toArray contains all entries
323     */
324     public void testDescendingEntrySetToArray() {
325     ConcurrentSkipListMap map = map5();
326 jsr166 1.12 Set s = map.descendingMap().entrySet();
327 dl 1.1 Object[] ar = s.toArray();
328     assertEquals(5, ar.length);
329     for (int i = 0; i < 5; ++i) {
330     assertTrue(map.containsKey(((Map.Entry)(ar[i])).getKey()));
331     assertTrue(map.containsValue(((Map.Entry)(ar[i])).getValue()));
332     }
333     }
334    
335     /**
336     * putAll adds all key-value pairs from the given map
337     */
338     public void testPutAll() {
339     ConcurrentSkipListMap empty = new ConcurrentSkipListMap();
340     ConcurrentSkipListMap map = map5();
341 jsr166 1.12 empty.putAll(map);
342     assertEquals(5, empty.size());
343     assertTrue(empty.containsKey(one));
344     assertTrue(empty.containsKey(two));
345     assertTrue(empty.containsKey(three));
346     assertTrue(empty.containsKey(four));
347     assertTrue(empty.containsKey(five));
348 dl 1.1 }
349    
350     /**
351     * putIfAbsent works when the given key is not present
352     */
353     public void testPutIfAbsent() {
354     ConcurrentSkipListMap map = map5();
355 jsr166 1.12 map.putIfAbsent(six, "Z");
356 dl 1.1 assertTrue(map.containsKey(six));
357     }
358    
359     /**
360     * putIfAbsent does not add the pair if the key is already present
361     */
362     public void testPutIfAbsent2() {
363     ConcurrentSkipListMap map = map5();
364     assertEquals("A", map.putIfAbsent(one, "Z"));
365     }
366    
367     /**
368     * replace fails when the given key is not present
369     */
370     public void testReplace() {
371     ConcurrentSkipListMap map = map5();
372 jsr166 1.12 assertNull(map.replace(six, "Z"));
373 dl 1.1 assertFalse(map.containsKey(six));
374     }
375    
376     /**
377     * replace succeeds if the key is already present
378     */
379     public void testReplace2() {
380     ConcurrentSkipListMap map = map5();
381     assertNotNull(map.replace(one, "Z"));
382     assertEquals("Z", map.get(one));
383     }
384    
385    
386     /**
387     * replace value fails when the given key not mapped to expected value
388     */
389     public void testReplaceValue() {
390     ConcurrentSkipListMap map = map5();
391     assertEquals("A", map.get(one));
392 jsr166 1.12 assertFalse(map.replace(one, "Z", "Z"));
393 dl 1.1 assertEquals("A", map.get(one));
394     }
395    
396     /**
397     * replace value succeeds when the given key mapped to expected value
398     */
399     public void testReplaceValue2() {
400     ConcurrentSkipListMap map = map5();
401     assertEquals("A", map.get(one));
402 jsr166 1.12 assertTrue(map.replace(one, "A", "Z"));
403 dl 1.1 assertEquals("Z", map.get(one));
404     }
405    
406    
407     /**
408     * remove removes the correct key-value pair from the map
409     */
410     public void testRemove() {
411     ConcurrentSkipListMap map = map5();
412 jsr166 1.12 map.remove(five);
413     assertEquals(4, map.size());
414     assertFalse(map.containsKey(five));
415 dl 1.1 }
416    
417     /**
418     * remove(key,value) removes only if pair present
419     */
420     public void testRemove2() {
421     ConcurrentSkipListMap map = map5();
422 jsr166 1.12 assertTrue(map.containsKey(five));
423 dl 1.1 assertEquals("E", map.get(five));
424 jsr166 1.12 map.remove(five, "E");
425     assertEquals(4, map.size());
426     assertFalse(map.containsKey(five));
427     map.remove(four, "A");
428     assertEquals(4, map.size());
429     assertTrue(map.containsKey(four));
430 dl 1.1
431     }
432    
433     /**
434     * lowerEntry returns preceding entry.
435     */
436     public void testLowerEntry() {
437     ConcurrentSkipListMap map = map5();
438     Map.Entry e1 = map.lowerEntry(three);
439     assertEquals(two, e1.getKey());
440    
441     Map.Entry e2 = map.lowerEntry(six);
442     assertEquals(five, e2.getKey());
443    
444     Map.Entry e3 = map.lowerEntry(one);
445     assertNull(e3);
446    
447     Map.Entry e4 = map.lowerEntry(zero);
448     assertNull(e4);
449    
450     }
451    
452     /**
453     * higherEntry returns next entry.
454     */
455     public void testHigherEntry() {
456     ConcurrentSkipListMap map = map5();
457     Map.Entry e1 = map.higherEntry(three);
458     assertEquals(four, e1.getKey());
459    
460     Map.Entry e2 = map.higherEntry(zero);
461     assertEquals(one, e2.getKey());
462    
463     Map.Entry e3 = map.higherEntry(five);
464     assertNull(e3);
465    
466     Map.Entry e4 = map.higherEntry(six);
467     assertNull(e4);
468    
469     }
470    
471     /**
472     * floorEntry returns preceding entry.
473     */
474     public void testFloorEntry() {
475     ConcurrentSkipListMap map = map5();
476     Map.Entry e1 = map.floorEntry(three);
477     assertEquals(three, e1.getKey());
478    
479     Map.Entry e2 = map.floorEntry(six);
480     assertEquals(five, e2.getKey());
481    
482     Map.Entry e3 = map.floorEntry(one);
483     assertEquals(one, e3.getKey());
484    
485     Map.Entry e4 = map.floorEntry(zero);
486     assertNull(e4);
487    
488     }
489    
490     /**
491     * ceilingEntry returns next entry.
492     */
493     public void testCeilingEntry() {
494     ConcurrentSkipListMap map = map5();
495     Map.Entry e1 = map.ceilingEntry(three);
496     assertEquals(three, e1.getKey());
497    
498     Map.Entry e2 = map.ceilingEntry(zero);
499     assertEquals(one, e2.getKey());
500    
501     Map.Entry e3 = map.ceilingEntry(five);
502     assertEquals(five, e3.getKey());
503    
504     Map.Entry e4 = map.ceilingEntry(six);
505     assertNull(e4);
506    
507     }
508    
509 dl 1.5 /**
510     * lowerEntry, higherEntry, ceilingEntry, and floorEntry return
511     * imutable entries
512     */
513     public void testEntryImmutablity() {
514     ConcurrentSkipListMap map = map5();
515     Map.Entry e = map.lowerEntry(three);
516     assertEquals(two, e.getKey());
517     try {
518     e.setValue("X");
519     fail();
520 jsr166 1.10 } catch (UnsupportedOperationException success) {}
521 dl 1.5 e = map.higherEntry(zero);
522     assertEquals(one, e.getKey());
523     try {
524     e.setValue("X");
525     fail();
526 jsr166 1.10 } catch (UnsupportedOperationException success) {}
527 dl 1.5 e = map.floorEntry(one);
528     assertEquals(one, e.getKey());
529     try {
530     e.setValue("X");
531     fail();
532 jsr166 1.10 } catch (UnsupportedOperationException success) {}
533 dl 1.5 e = map.ceilingEntry(five);
534     assertEquals(five, e.getKey());
535     try {
536     e.setValue("X");
537     fail();
538 jsr166 1.10 } catch (UnsupportedOperationException success) {}
539 dl 1.5 }
540    
541    
542 dl 1.1
543     /**
544     * lowerKey returns preceding element
545     */
546     public void testLowerKey() {
547     ConcurrentSkipListMap q = map5();
548     Object e1 = q.lowerKey(three);
549     assertEquals(two, e1);
550    
551     Object e2 = q.lowerKey(six);
552     assertEquals(five, e2);
553    
554     Object e3 = q.lowerKey(one);
555     assertNull(e3);
556    
557     Object e4 = q.lowerKey(zero);
558     assertNull(e4);
559    
560     }
561    
562     /**
563     * higherKey returns next element
564     */
565     public void testHigherKey() {
566     ConcurrentSkipListMap q = map5();
567     Object e1 = q.higherKey(three);
568     assertEquals(four, e1);
569    
570     Object e2 = q.higherKey(zero);
571     assertEquals(one, e2);
572    
573     Object e3 = q.higherKey(five);
574     assertNull(e3);
575    
576     Object e4 = q.higherKey(six);
577     assertNull(e4);
578    
579     }
580    
581     /**
582     * floorKey returns preceding element
583     */
584     public void testFloorKey() {
585     ConcurrentSkipListMap q = map5();
586     Object e1 = q.floorKey(three);
587     assertEquals(three, e1);
588    
589     Object e2 = q.floorKey(six);
590     assertEquals(five, e2);
591    
592     Object e3 = q.floorKey(one);
593     assertEquals(one, e3);
594    
595     Object e4 = q.floorKey(zero);
596     assertNull(e4);
597    
598     }
599    
600     /**
601     * ceilingKey returns next element
602     */
603     public void testCeilingKey() {
604     ConcurrentSkipListMap q = map5();
605     Object e1 = q.ceilingKey(three);
606     assertEquals(three, e1);
607    
608     Object e2 = q.ceilingKey(zero);
609     assertEquals(one, e2);
610    
611     Object e3 = q.ceilingKey(five);
612     assertEquals(five, e3);
613    
614     Object e4 = q.ceilingKey(six);
615     assertNull(e4);
616    
617     }
618    
619     /**
620     * pollFirstEntry returns entries in order
621     */
622     public void testPollFirstEntry() {
623     ConcurrentSkipListMap map = map5();
624     Map.Entry e = map.pollFirstEntry();
625     assertEquals(one, e.getKey());
626     assertEquals("A", e.getValue());
627     e = map.pollFirstEntry();
628     assertEquals(two, e.getKey());
629     map.put(one, "A");
630     e = map.pollFirstEntry();
631     assertEquals(one, e.getKey());
632     assertEquals("A", e.getValue());
633     e = map.pollFirstEntry();
634     assertEquals(three, e.getKey());
635     map.remove(four);
636     e = map.pollFirstEntry();
637     assertEquals(five, e.getKey());
638     try {
639     e.setValue("A");
640     shouldThrow();
641     } catch (Exception ok) {
642     }
643     e = map.pollFirstEntry();
644     assertNull(e);
645     }
646    
647     /**
648     * pollLastEntry returns entries in order
649     */
650     public void testPollLastEntry() {
651     ConcurrentSkipListMap map = map5();
652     Map.Entry e = map.pollLastEntry();
653     assertEquals(five, e.getKey());
654     assertEquals("E", e.getValue());
655     e = map.pollLastEntry();
656     assertEquals(four, e.getKey());
657     map.put(five, "E");
658     e = map.pollLastEntry();
659     assertEquals(five, e.getKey());
660     assertEquals("E", e.getValue());
661     e = map.pollLastEntry();
662     assertEquals(three, e.getKey());
663     map.remove(two);
664     e = map.pollLastEntry();
665     assertEquals(one, e.getKey());
666     try {
667     e.setValue("E");
668     shouldThrow();
669     } catch (Exception ok) {
670     }
671     e = map.pollLastEntry();
672     assertNull(e);
673     }
674    
675     /**
676     * size returns the correct values
677     */
678     public void testSize() {
679     ConcurrentSkipListMap map = map5();
680     ConcurrentSkipListMap empty = new ConcurrentSkipListMap();
681 jsr166 1.12 assertEquals(0, empty.size());
682     assertEquals(5, map.size());
683 dl 1.1 }
684    
685     /**
686     * toString contains toString of elements
687     */
688     public void testToString() {
689     ConcurrentSkipListMap map = map5();
690     String s = map.toString();
691     for (int i = 1; i <= 5; ++i) {
692     assertTrue(s.indexOf(String.valueOf(i)) >= 0);
693     }
694 jsr166 1.9 }
695 dl 1.1
696     // Exception tests
697    
698     /**
699     * get(null) of nonempty map throws NPE
700     */
701     public void testGet_NullPointerException() {
702     try {
703     ConcurrentSkipListMap c = map5();
704     c.get(null);
705     shouldThrow();
706 jsr166 1.11 } catch (NullPointerException e) {}
707 dl 1.1 }
708    
709     /**
710     * containsKey(null) of nonempty map throws NPE
711     */
712     public void testContainsKey_NullPointerException() {
713     try {
714     ConcurrentSkipListMap c = map5();
715     c.containsKey(null);
716     shouldThrow();
717 jsr166 1.11 } catch (NullPointerException e) {}
718 dl 1.1 }
719    
720     /**
721     * containsValue(null) throws NPE
722     */
723     public void testContainsValue_NullPointerException() {
724     try {
725     ConcurrentSkipListMap c = new ConcurrentSkipListMap();
726     c.containsValue(null);
727     shouldThrow();
728 jsr166 1.11 } catch (NullPointerException e) {}
729 dl 1.1 }
730    
731    
732     /**
733     * put(null,x) throws NPE
734     */
735     public void testPut1_NullPointerException() {
736     try {
737     ConcurrentSkipListMap c = map5();
738     c.put(null, "whatever");
739     shouldThrow();
740 jsr166 1.11 } catch (NullPointerException e) {}
741 dl 1.1 }
742    
743     /**
744     * putIfAbsent(null, x) throws NPE
745     */
746     public void testPutIfAbsent1_NullPointerException() {
747     try {
748     ConcurrentSkipListMap c = map5();
749     c.putIfAbsent(null, "whatever");
750     shouldThrow();
751 jsr166 1.11 } catch (NullPointerException e) {}
752 dl 1.1 }
753    
754     /**
755     * replace(null, x) throws NPE
756     */
757     public void testReplace_NullPointerException() {
758     try {
759     ConcurrentSkipListMap c = map5();
760     c.replace(null, "whatever");
761     shouldThrow();
762 jsr166 1.11 } catch (NullPointerException e) {}
763 dl 1.1 }
764    
765     /**
766     * replace(null, x, y) throws NPE
767     */
768     public void testReplaceValue_NullPointerException() {
769     try {
770     ConcurrentSkipListMap c = map5();
771     c.replace(null, one, "whatever");
772     shouldThrow();
773 jsr166 1.11 } catch (NullPointerException e) {}
774 dl 1.1 }
775    
776     /**
777     * remove(null) throws NPE
778     */
779     public void testRemove1_NullPointerException() {
780     try {
781     ConcurrentSkipListMap c = new ConcurrentSkipListMap();
782     c.put("sadsdf", "asdads");
783     c.remove(null);
784     shouldThrow();
785 jsr166 1.11 } catch (NullPointerException e) {}
786 dl 1.1 }
787    
788     /**
789     * remove(null, x) throws NPE
790     */
791     public void testRemove2_NullPointerException() {
792     try {
793     ConcurrentSkipListMap c = new ConcurrentSkipListMap();
794     c.put("sadsdf", "asdads");
795     c.remove(null, "whatever");
796     shouldThrow();
797 jsr166 1.11 } catch (NullPointerException e) {}
798 dl 1.1 }
799    
800     /**
801 dl 1.3 * remove(x, null) returns false
802     */
803     public void testRemove3() {
804     try {
805     ConcurrentSkipListMap c = new ConcurrentSkipListMap();
806     c.put("sadsdf", "asdads");
807     assertFalse(c.remove("sadsdf", null));
808 jsr166 1.11 } catch (NullPointerException e) {
809 dl 1.3 fail();
810     }
811     }
812    
813     /**
814 dl 1.1 * A deserialized map equals original
815     */
816 jsr166 1.13 public void testSerialization() throws Exception {
817 dl 1.1 ConcurrentSkipListMap q = map5();
818    
819 jsr166 1.13 ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
820     ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
821     out.writeObject(q);
822     out.close();
823    
824     ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
825     ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
826     ConcurrentSkipListMap r = (ConcurrentSkipListMap)in.readObject();
827     assertEquals(q.size(), r.size());
828     assertTrue(q.equals(r));
829     assertTrue(r.equals(q));
830 dl 1.1 }
831    
832    
833    
834     /**
835     * subMap returns map with keys in requested range
836     */
837     public void testSubMapContents() {
838     ConcurrentSkipListMap map = map5();
839 dl 1.7 NavigableMap sm = map.subMap(two, true, four, false);
840 dl 1.1 assertEquals(two, sm.firstKey());
841     assertEquals(three, sm.lastKey());
842     assertEquals(2, sm.size());
843     assertFalse(sm.containsKey(one));
844     assertTrue(sm.containsKey(two));
845     assertTrue(sm.containsKey(three));
846     assertFalse(sm.containsKey(four));
847     assertFalse(sm.containsKey(five));
848     Iterator i = sm.keySet().iterator();
849     Object k;
850     k = (Integer)(i.next());
851     assertEquals(two, k);
852     k = (Integer)(i.next());
853     assertEquals(three, k);
854     assertFalse(i.hasNext());
855     Iterator r = sm.descendingKeySet().iterator();
856     k = (Integer)(r.next());
857     assertEquals(three, k);
858     k = (Integer)(r.next());
859     assertEquals(two, k);
860     assertFalse(r.hasNext());
861 jsr166 1.9
862 dl 1.1 Iterator j = sm.keySet().iterator();
863     j.next();
864     j.remove();
865     assertFalse(map.containsKey(two));
866     assertEquals(4, map.size());
867     assertEquals(1, sm.size());
868     assertEquals(three, sm.firstKey());
869     assertEquals(three, sm.lastKey());
870     assertTrue(sm.remove(three) != null);
871     assertTrue(sm.isEmpty());
872     assertEquals(3, map.size());
873     }
874    
875     public void testSubMapContents2() {
876     ConcurrentSkipListMap map = map5();
877 dl 1.7 NavigableMap sm = map.subMap(two, true, three, false);
878 dl 1.1 assertEquals(1, sm.size());
879     assertEquals(two, sm.firstKey());
880     assertEquals(two, sm.lastKey());
881     assertFalse(sm.containsKey(one));
882     assertTrue(sm.containsKey(two));
883     assertFalse(sm.containsKey(three));
884     assertFalse(sm.containsKey(four));
885     assertFalse(sm.containsKey(five));
886     Iterator i = sm.keySet().iterator();
887     Object k;
888     k = (Integer)(i.next());
889     assertEquals(two, k);
890     assertFalse(i.hasNext());
891     Iterator r = sm.descendingKeySet().iterator();
892     k = (Integer)(r.next());
893     assertEquals(two, k);
894     assertFalse(r.hasNext());
895 jsr166 1.9
896 dl 1.1 Iterator j = sm.keySet().iterator();
897     j.next();
898     j.remove();
899     assertFalse(map.containsKey(two));
900     assertEquals(4, map.size());
901     assertEquals(0, sm.size());
902     assertTrue(sm.isEmpty());
903     assertTrue(sm.remove(three) == null);
904     assertEquals(4, map.size());
905     }
906    
907     /**
908     * headMap returns map with keys in requested range
909     */
910     public void testHeadMapContents() {
911     ConcurrentSkipListMap map = map5();
912 dl 1.7 NavigableMap sm = map.headMap(four, false);
913 dl 1.1 assertTrue(sm.containsKey(one));
914     assertTrue(sm.containsKey(two));
915     assertTrue(sm.containsKey(three));
916     assertFalse(sm.containsKey(four));
917     assertFalse(sm.containsKey(five));
918     Iterator i = sm.keySet().iterator();
919     Object k;
920     k = (Integer)(i.next());
921     assertEquals(one, k);
922     k = (Integer)(i.next());
923     assertEquals(two, k);
924     k = (Integer)(i.next());
925     assertEquals(three, k);
926     assertFalse(i.hasNext());
927     sm.clear();
928     assertTrue(sm.isEmpty());
929     assertEquals(2, map.size());
930     assertEquals(four, map.firstKey());
931     }
932    
933     /**
934 dl 1.6 * tailMap returns map with keys in requested range
935 dl 1.1 */
936     public void testTailMapContents() {
937     ConcurrentSkipListMap map = map5();
938 dl 1.7 NavigableMap sm = map.tailMap(two, true);
939 dl 1.1 assertFalse(sm.containsKey(one));
940     assertTrue(sm.containsKey(two));
941     assertTrue(sm.containsKey(three));
942     assertTrue(sm.containsKey(four));
943     assertTrue(sm.containsKey(five));
944     Iterator i = sm.keySet().iterator();
945     Object k;
946     k = (Integer)(i.next());
947     assertEquals(two, k);
948     k = (Integer)(i.next());
949     assertEquals(three, k);
950     k = (Integer)(i.next());
951     assertEquals(four, k);
952     k = (Integer)(i.next());
953     assertEquals(five, k);
954     assertFalse(i.hasNext());
955     Iterator r = sm.descendingKeySet().iterator();
956     k = (Integer)(r.next());
957     assertEquals(five, k);
958     k = (Integer)(r.next());
959     assertEquals(four, k);
960     k = (Integer)(r.next());
961     assertEquals(three, k);
962     k = (Integer)(r.next());
963     assertEquals(two, k);
964     assertFalse(r.hasNext());
965    
966     Iterator ei = sm.entrySet().iterator();
967     Map.Entry e;
968     e = (Map.Entry)(ei.next());
969     assertEquals(two, e.getKey());
970     assertEquals("B", e.getValue());
971     e = (Map.Entry)(ei.next());
972     assertEquals(three, e.getKey());
973     assertEquals("C", e.getValue());
974     e = (Map.Entry)(ei.next());
975     assertEquals(four, e.getKey());
976     assertEquals("D", e.getValue());
977     e = (Map.Entry)(ei.next());
978     assertEquals(five, e.getKey());
979     assertEquals("E", e.getValue());
980     assertFalse(i.hasNext());
981    
982 dl 1.7 NavigableMap ssm = sm.tailMap(four, true);
983 dl 1.1 assertEquals(four, ssm.firstKey());
984     assertEquals(five, ssm.lastKey());
985     assertTrue(ssm.remove(four) != null);
986     assertEquals(1, ssm.size());
987     assertEquals(3, sm.size());
988     assertEquals(4, map.size());
989     }
990 dl 1.6
991     Random rnd = new Random(666);
992     BitSet bs;
993    
994     /**
995     * Submaps of submaps subdivide correctly
996     */
997     public void testRecursiveSubMaps() {
998 jsr166 1.12 int mapSize = 1000;
999     Class cl = ConcurrentSkipListMap.class;
1000 dl 1.6 NavigableMap<Integer, Integer> map = newMap(cl);
1001     bs = new BitSet(mapSize);
1002    
1003     populate(map, mapSize);
1004     check(map, 0, mapSize - 1, true);
1005     check(map.descendingMap(), 0, mapSize - 1, false);
1006    
1007     mutateMap(map, 0, mapSize - 1);
1008     check(map, 0, mapSize - 1, true);
1009     check(map.descendingMap(), 0, mapSize - 1, false);
1010    
1011 dl 1.7 bashSubMap(map.subMap(0, true, mapSize, false),
1012 dl 1.6 0, mapSize - 1, true);
1013     }
1014    
1015     static NavigableMap<Integer, Integer> newMap(Class cl) {
1016     NavigableMap<Integer, Integer> result = null;
1017 jsr166 1.12 try {
1018 dl 1.6 result = (NavigableMap<Integer, Integer>) cl.newInstance();
1019 jsr166 1.12 } catch (Exception e) {
1020 dl 1.6 fail();
1021 jsr166 1.12 }
1022 dl 1.6 assertEquals(result.size(), 0);
1023     assertFalse(result.keySet().iterator().hasNext());
1024     return result;
1025     }
1026    
1027     void populate(NavigableMap<Integer, Integer> map, int limit) {
1028     for (int i = 0, n = 2 * limit / 3; i < n; i++) {
1029     int key = rnd.nextInt(limit);
1030     put(map, key);
1031     }
1032     }
1033    
1034     void mutateMap(NavigableMap<Integer, Integer> map, int min, int max) {
1035     int size = map.size();
1036     int rangeSize = max - min + 1;
1037    
1038     // Remove a bunch of entries directly
1039     for (int i = 0, n = rangeSize / 2; i < n; i++) {
1040     remove(map, min - 5 + rnd.nextInt(rangeSize + 10));
1041     }
1042    
1043     // Remove a bunch of entries with iterator
1044 jsr166 1.10 for (Iterator<Integer> it = map.keySet().iterator(); it.hasNext(); ) {
1045 dl 1.6 if (rnd.nextBoolean()) {
1046     bs.clear(it.next());
1047     it.remove();
1048     }
1049     }
1050    
1051     // Add entries till we're back to original size
1052     while (map.size() < size) {
1053     int key = min + rnd.nextInt(rangeSize);
1054     assertTrue(key >= min && key<= max);
1055     put(map, key);
1056     }
1057     }
1058    
1059     void mutateSubMap(NavigableMap<Integer, Integer> map, int min, int max) {
1060     int size = map.size();
1061     int rangeSize = max - min + 1;
1062    
1063     // Remove a bunch of entries directly
1064     for (int i = 0, n = rangeSize / 2; i < n; i++) {
1065     remove(map, min - 5 + rnd.nextInt(rangeSize + 10));
1066     }
1067    
1068     // Remove a bunch of entries with iterator
1069 jsr166 1.10 for (Iterator<Integer> it = map.keySet().iterator(); it.hasNext(); ) {
1070 dl 1.6 if (rnd.nextBoolean()) {
1071     bs.clear(it.next());
1072     it.remove();
1073     }
1074     }
1075    
1076     // Add entries till we're back to original size
1077     while (map.size() < size) {
1078     int key = min - 5 + rnd.nextInt(rangeSize + 10);
1079     if (key >= min && key<= max) {
1080     put(map, key);
1081     } else {
1082     try {
1083     map.put(key, 2 * key);
1084     fail();
1085 jsr166 1.10 } catch (IllegalArgumentException e) {
1086 dl 1.6 // expected
1087     }
1088     }
1089     }
1090     }
1091    
1092     void put(NavigableMap<Integer, Integer> map, int key) {
1093     if (map.put(key, 2 * key) == null)
1094     bs.set(key);
1095     }
1096    
1097     void remove(NavigableMap<Integer, Integer> map, int key) {
1098     if (map.remove(key) != null)
1099     bs.clear(key);
1100     }
1101    
1102     void bashSubMap(NavigableMap<Integer, Integer> map,
1103     int min, int max, boolean ascending) {
1104     check(map, min, max, ascending);
1105     check(map.descendingMap(), min, max, !ascending);
1106    
1107     mutateSubMap(map, min, max);
1108     check(map, min, max, ascending);
1109     check(map.descendingMap(), min, max, !ascending);
1110    
1111     // Recurse
1112     if (max - min < 2)
1113     return;
1114     int midPoint = (min + max) / 2;
1115    
1116     // headMap - pick direction and endpoint inclusion randomly
1117     boolean incl = rnd.nextBoolean();
1118 dl 1.7 NavigableMap<Integer,Integer> hm = map.headMap(midPoint, incl);
1119 dl 1.6 if (ascending) {
1120     if (rnd.nextBoolean())
1121     bashSubMap(hm, min, midPoint - (incl ? 0 : 1), true);
1122     else
1123     bashSubMap(hm.descendingMap(), min, midPoint - (incl ? 0 : 1),
1124     false);
1125     } else {
1126     if (rnd.nextBoolean())
1127     bashSubMap(hm, midPoint + (incl ? 0 : 1), max, false);
1128     else
1129     bashSubMap(hm.descendingMap(), midPoint + (incl ? 0 : 1), max,
1130     true);
1131     }
1132    
1133     // tailMap - pick direction and endpoint inclusion randomly
1134     incl = rnd.nextBoolean();
1135 dl 1.7 NavigableMap<Integer,Integer> tm = map.tailMap(midPoint,incl);
1136 dl 1.6 if (ascending) {
1137     if (rnd.nextBoolean())
1138     bashSubMap(tm, midPoint + (incl ? 0 : 1), max, true);
1139     else
1140     bashSubMap(tm.descendingMap(), midPoint + (incl ? 0 : 1), max,
1141     false);
1142     } else {
1143     if (rnd.nextBoolean()) {
1144     bashSubMap(tm, min, midPoint - (incl ? 0 : 1), false);
1145     } else {
1146     bashSubMap(tm.descendingMap(), min, midPoint - (incl ? 0 : 1),
1147     true);
1148     }
1149     }
1150    
1151     // subMap - pick direction and endpoint inclusion randomly
1152     int rangeSize = max - min + 1;
1153     int[] endpoints = new int[2];
1154     endpoints[0] = min + rnd.nextInt(rangeSize);
1155     endpoints[1] = min + rnd.nextInt(rangeSize);
1156     Arrays.sort(endpoints);
1157     boolean lowIncl = rnd.nextBoolean();
1158     boolean highIncl = rnd.nextBoolean();
1159     if (ascending) {
1160 dl 1.7 NavigableMap<Integer,Integer> sm = map.subMap(
1161 dl 1.6 endpoints[0], lowIncl, endpoints[1], highIncl);
1162     if (rnd.nextBoolean())
1163     bashSubMap(sm, endpoints[0] + (lowIncl ? 0 : 1),
1164     endpoints[1] - (highIncl ? 0 : 1), true);
1165     else
1166     bashSubMap(sm.descendingMap(), endpoints[0] + (lowIncl ? 0 : 1),
1167     endpoints[1] - (highIncl ? 0 : 1), false);
1168     } else {
1169 dl 1.7 NavigableMap<Integer,Integer> sm = map.subMap(
1170 dl 1.6 endpoints[1], highIncl, endpoints[0], lowIncl);
1171     if (rnd.nextBoolean())
1172     bashSubMap(sm, endpoints[0] + (lowIncl ? 0 : 1),
1173     endpoints[1] - (highIncl ? 0 : 1), false);
1174     else
1175     bashSubMap(sm.descendingMap(), endpoints[0] + (lowIncl ? 0 : 1),
1176     endpoints[1] - (highIncl ? 0 : 1), true);
1177     }
1178     }
1179    
1180     /**
1181     * min and max are both inclusive. If max < min, interval is empty.
1182     */
1183     void check(NavigableMap<Integer, Integer> map,
1184     final int min, final int max, final boolean ascending) {
1185     class ReferenceSet {
1186     int lower(int key) {
1187     return ascending ? lowerAscending(key) : higherAscending(key);
1188     }
1189     int floor(int key) {
1190     return ascending ? floorAscending(key) : ceilingAscending(key);
1191     }
1192     int ceiling(int key) {
1193     return ascending ? ceilingAscending(key) : floorAscending(key);
1194     }
1195     int higher(int key) {
1196     return ascending ? higherAscending(key) : lowerAscending(key);
1197     }
1198     int first() {
1199     return ascending ? firstAscending() : lastAscending();
1200     }
1201     int last() {
1202     return ascending ? lastAscending() : firstAscending();
1203     }
1204     int lowerAscending(int key) {
1205     return floorAscending(key - 1);
1206     }
1207     int floorAscending(int key) {
1208     if (key < min)
1209     return -1;
1210     else if (key > max)
1211     key = max;
1212    
1213     // BitSet should support this! Test would run much faster
1214     while (key >= min) {
1215     if (bs.get(key))
1216     return(key);
1217     key--;
1218     }
1219     return -1;
1220     }
1221     int ceilingAscending(int key) {
1222     if (key < min)
1223     key = min;
1224     else if (key > max)
1225     return -1;
1226     int result = bs.nextSetBit(key);
1227     return result > max ? -1 : result;
1228     }
1229     int higherAscending(int key) {
1230     return ceilingAscending(key + 1);
1231     }
1232     private int firstAscending() {
1233     int result = ceilingAscending(min);
1234     return result > max ? -1 : result;
1235     }
1236     private int lastAscending() {
1237     int result = floorAscending(max);
1238     return result < min ? -1 : result;
1239     }
1240     }
1241     ReferenceSet rs = new ReferenceSet();
1242    
1243     // Test contents using containsKey
1244     int size = 0;
1245     for (int i = min; i <= max; i++) {
1246     boolean bsContainsI = bs.get(i);
1247     assertEquals(bsContainsI, map.containsKey(i));
1248     if (bsContainsI)
1249     size++;
1250     }
1251     assertEquals(map.size(), size);
1252    
1253     // Test contents using contains keySet iterator
1254     int size2 = 0;
1255     int previousKey = -1;
1256     for (int key : map.keySet()) {
1257     assertTrue(bs.get(key));
1258     size2++;
1259     assertTrue(previousKey < 0 ||
1260     (ascending ? key - previousKey > 0 : key - previousKey < 0));
1261     previousKey = key;
1262     }
1263     assertEquals(size2, size);
1264    
1265     // Test navigation ops
1266     for (int key = min - 1; key <= max + 1; key++) {
1267     assertEq(map.lowerKey(key), rs.lower(key));
1268     assertEq(map.floorKey(key), rs.floor(key));
1269     assertEq(map.higherKey(key), rs.higher(key));
1270     assertEq(map.ceilingKey(key), rs.ceiling(key));
1271     }
1272    
1273     // Test extrema
1274     if (map.size() != 0) {
1275     assertEq(map.firstKey(), rs.first());
1276     assertEq(map.lastKey(), rs.last());
1277     } else {
1278     assertEq(rs.first(), -1);
1279     assertEq(rs.last(), -1);
1280     try {
1281     map.firstKey();
1282     fail();
1283 jsr166 1.10 } catch (NoSuchElementException e) {
1284 dl 1.6 // expected
1285     }
1286     try {
1287     map.lastKey();
1288     fail();
1289 jsr166 1.10 } catch (NoSuchElementException e) {
1290 dl 1.6 // expected
1291     }
1292     }
1293     }
1294    
1295     static void assertEq(Integer i, int j) {
1296     if (i == null)
1297     assertEquals(j, -1);
1298     else
1299     assertEquals((int) i, j);
1300     }
1301    
1302     static boolean eq(Integer i, int j) {
1303     return i == null ? j == -1 : i == j;
1304     }
1305 jsr166 1.9
1306 dl 1.1 }