jdk/test/java/util/NavigableMap/LockStep.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 493 b8102e80be10
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug     6420753 6242436
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Compare NavigableMap implementations for identical behavior
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author  Martin Buchholz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.concurrent.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import static java.util.Collections.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
@SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class LockStep {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    static final int DEFAULT_SIZE = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    static int size;            // Running time is O(size**2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    static int intArg(String[] args, int i, int defaultValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        return args.length > i ? Integer.parseInt(args[i]) : defaultValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    // Pass -Dthorough=true for more exhaustive testing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    static final boolean thorough = Boolean.getBoolean("thorough");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    static boolean maybe(int n) { return rnd.nextInt(n) == 0; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    static void realMain(String[] args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        size = intArg(args, 0, DEFAULT_SIZE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        lockSteps(new TreeMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                  new ConcurrentSkipListMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        lockSteps(new TreeMap(reverseOrder()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                  new ConcurrentSkipListMap(reverseOrder()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        lockSteps(new TreeSet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                  new ConcurrentSkipListSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        lockSteps(new TreeSet(reverseOrder()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                  new ConcurrentSkipListSet(reverseOrder()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static void lockSteps(NavigableMap m1, NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        if (maybe(4)) m1 = serialClone(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        if (maybe(4)) m2 = serialClone(m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        lockStep(m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                 m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        lockStep(m1.descendingMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                 m2.descendingMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        lockStep(fullSubMap(m1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                 fullSubMap(m2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        lockStep(fullSubMap(m1.descendingMap()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                 fullSubMap(m2.descendingMap()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        lockStep(fullHeadMap(m1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                 fullHeadMap(m2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        lockStep(fullHeadMap(m1.descendingMap()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                 fullHeadMap(m2.descendingMap()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        lockStep(fullTailMap(m1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                 fullTailMap(m2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        lockStep(fullTailMap(m1.descendingMap()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                 fullTailMap(m2.descendingMap()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    static void lockSteps(NavigableSet s1, NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        if (maybe(4)) s1 = serialClone(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (maybe(4)) s2 = serialClone(s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        lockStep(s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                 s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        lockStep(s1.descendingSet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                 s2.descendingSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        lockStep(fullSubSet(s1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                 fullSubSet(s2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        lockStep(fullSubSet(s1.descendingSet()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                 fullSubSet(s2.descendingSet()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        lockStep(fullHeadSet(s1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                 fullHeadSet(s2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        lockStep(fullHeadSet(s1.descendingSet()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                 fullHeadSet(s2.descendingSet()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        lockStep(fullTailSet(s1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                 fullTailSet(s2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        lockStep(fullTailSet(s1.descendingSet()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                 fullTailSet(s2.descendingSet()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    static boolean isAscending(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        Comparator cmp = m.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        return (cmp == null || cmp.compare(1, 2) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    static NavigableMap fullSubMap(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        return isAscending(m)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            ? m.subMap(Integer.MIN_VALUE, true, Integer.MAX_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            : m.subMap(Integer.MAX_VALUE, true, Integer.MIN_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    static NavigableMap fullHeadMap(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        return isAscending(m)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            ? m.headMap(Integer.MAX_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            : m.headMap(Integer.MIN_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    static NavigableMap fullTailMap(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        return isAscending(m)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            ? m.tailMap(Integer.MIN_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            : m.tailMap(Integer.MAX_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    static boolean isAscending(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        Comparator cmp = s.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        return (cmp == null || cmp.compare(1, 2) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    static NavigableSet fullSubSet(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        return isAscending(s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            ? s.subSet(Integer.MIN_VALUE, true, Integer.MAX_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            : s.subSet(Integer.MAX_VALUE, true, Integer.MIN_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    static NavigableSet fullHeadSet(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        return isAscending(s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            ? s.headSet(Integer.MAX_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            : s.headSet(Integer.MIN_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    static NavigableSet fullTailSet(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return isAscending(s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            ? s.tailSet(Integer.MIN_VALUE, true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            : s.tailSet(Integer.MAX_VALUE, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    static void testEmptyCollection(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        check(c.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        equal(c.size(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        equal(c.toString(),"[]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        equal(c.toArray().length, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        equal(c.toArray(new Object[0]).length, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        Object[] a = new Object[1]; a[0] = Boolean.TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        equal(c.toArray(a), a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        equal(a[0], null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    static void testEmptySet(Set<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        testEmptyCollection(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        equal(c.hashCode(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        equal2(c, Collections.<Integer>emptySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    static void testEmptyMap(final Map<?,?> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        check(m.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        equal(m.size(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        equal(m.toString(),"{}");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        equal(m.hashCode(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        testEmptySet(m.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        testEmptySet(m.entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        testEmptyCollection(m.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    static final Random rnd = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    static void equalNext(final Iterator<?> it, Object expected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            check(it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        equal(it.next(), expected);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    static Comparator comparator(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        Comparator cmp = s.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        return cmp != null ? cmp : new Comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            public int compare(Object o1, Object o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                return ((Comparable) o1).compareTo(o2); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    static Comparator comparator(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        Comparator cmp = m.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        return cmp != null ? cmp : new Comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            public int compare(Object o1, Object o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                return ((Comparable) o1).compareTo(o2); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    static void checkNavigableSet(final NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        if (s.comparator() == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            check(s.descendingSet().descendingSet().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        equal(s.isEmpty(), s.size() == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        equal2(s, s.descendingSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        if (maybe(4) && s instanceof Serializable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            equal2(s, serialClone(s));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        Comparator cmp = comparator(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        if (s.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                   new Fun(){void f(){ s.first(); }},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                   new Fun(){void f(){ s.last();  }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            equal(null, s.lower(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            equal(null, s.floor(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            equal(null, s.ceiling(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            equal(null, s.higher(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            Object a = s.first();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            Object z = s.last();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            equal(s.lower(a), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            equal(s.higher(z), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            equal2(s, s.tailSet(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            equal2(s, s.headSet(z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            equal2(s, s.subSet(a, true, z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            testEmptySet(s.subSet(a, true, a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            testEmptySet(s.subSet(z, true, z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            testEmptySet(s.headSet(a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            testEmptySet(s.tailSet(z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            equal2(s.headSet(a, true), singleton(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            equal2(s.tailSet(z, true), singleton(z));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        Iterator[] its = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            s.iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            s.descendingSet().descendingSet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        for (final Iterator it : its)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                       new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        Object prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        for (Object e : s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            check(s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            for (Iterator it : its) equalNext(it, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            equal(e, s.ceiling(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            equal(e, s.floor(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            check(s.higher(e) == null || cmp.compare(e, s.higher(e)) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            equal(s.lower(e), prev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            if (prev == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                check(cmp.compare(prev, e) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        for (final Iterator it : its) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                check(! it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            Fun fun = new Fun(){void f(){ it.next(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            THROWS(NoSuchElementException.class, fun, fun, fun);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    static void equalNavigableSetsLeaf(final NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                                       final NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        equal2(s1,            s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        equal( s1.size(),     s2.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        equal( s1.isEmpty(),  s2.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        equal( s1.hashCode(), s2.hashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        equal( s1.toString(), s2.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (! s1.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            equal(s1.first(), s2.first());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            equal(s1.last(),  s2.last());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        checkNavigableSet(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        checkNavigableSet(s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    static void equalNavigableSets(final NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                                   final NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        equalNavigableSetsLeaf(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        equalNavigableSetsLeaf(s1.descendingSet(), s2.descendingSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        equalNavigableSetsLeaf(s1.descendingSet().descendingSet(), s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        Object min = s1.isEmpty() ? Integer.MIN_VALUE : s1.first();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        Object max = s2.isEmpty() ? Integer.MAX_VALUE : s2.last();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        if (s1.comparator() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            s1.comparator().compare(min, max) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            Object tmp = min; min = max; max = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        equalNavigableSetsLeaf(s1.subSet(min, true, max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                               s2.subSet(min, true, max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        equalNavigableSetsLeaf(s1.tailSet(min, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                               s2.tailSet(min, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        equalNavigableSetsLeaf(s1.headSet(max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                               s2.headSet(max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        equalNavigableSetsLeaf((NavigableSet) s1.subSet(min, max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                               (NavigableSet) s2.subSet(min, max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        equalNavigableSetsLeaf((NavigableSet) s1.tailSet(min),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                               (NavigableSet) s2.tailSet(min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        equalNavigableSetsLeaf((NavigableSet) s1.headSet(max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                               (NavigableSet) s2.headSet(max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    // Destined for a Collections.java near you?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    static <T> T[] concat(T[]... arrays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        int len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        for (int i = 0; i < arrays.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            len += arrays[i].length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        T[] a = (T[])java.lang.reflect.Array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            .newInstance(arrays[0].getClass().getComponentType(), len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        for (int i = 0; i < arrays.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            T[] array = arrays[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            System.arraycopy(array, 0, a, k, array.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            k += array.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    static void checkNavigableMap(final NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        if (m.comparator() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            check(m.descendingMap().descendingMap().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            check(m.descendingKeySet().descendingSet().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        equal(m.isEmpty(), m.size() == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        equal2(m, m.descendingMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            equal2(m, serialClone(m));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        equal2(m.keySet(), m.descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        Comparator cmp = comparator(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        if (m.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                   new Fun(){void f(){ m.firstKey(); }},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                   new Fun(){void f(){ m.lastKey();  }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            equal(null, m.firstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            equal(null, m.lastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            equal(null, m.pollFirstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            equal(null, m.pollLastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            equal(null, m.lowerKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            equal(null, m.floorKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            equal(null, m.ceilingKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
            equal(null, m.higherKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            equal(null, m.lowerEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            equal(null, m.floorEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            equal(null, m.ceilingEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            equal(null, m.higherEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            Object a = m.firstKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            Object z = m.lastKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            equal(m.lowerKey(a), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            equal(m.higherKey(z), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            equal(a, m.firstEntry().getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            equal(z, m.lastEntry().getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            equal2(m, m.tailMap(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            equal2(m, m.headMap(z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            equal2(m, m.subMap(a, true, z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            testEmptyMap(m.subMap(a, true, a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            testEmptyMap(m.subMap(z, true, z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            testEmptyMap(m.headMap(a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            testEmptyMap(m.tailMap(z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            equal2(m.headMap(a, true), singletonMap(a, m.get(a)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            equal2(m.tailMap(z, true), singletonMap(z, m.get(z)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        Iterator[] kits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            m.keySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            m.descendingMap().descendingKeySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            m.descendingKeySet().descendingSet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        Iterator[] vits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            m.values().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            m.descendingMap().descendingMap().values().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        Iterator[] eits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            m.entrySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            m.descendingMap().descendingMap().entrySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        Iterator[] its = concat(kits, vits, eits);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        for (final Iterator it : its)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                       new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        Map.Entry prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        for (Map.Entry e : (Set<Map.Entry>) m.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            Object k = e.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            Object v = e.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            check(m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            check(m.containsValue(v));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            for (Iterator kit : kits) equalNext(kit, k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            for (Iterator vit : vits) equalNext(vit, v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            for (Iterator eit : eits) equalNext(eit, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            equal(k, m.ceilingKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            equal(k, m.ceilingEntry(k).getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            equal(k, m.floorKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            equal(k, m.floorEntry(k).getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            check(m.higherKey(k) == null || cmp.compare(k, m.higherKey(k)) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            check(m.lowerKey(k)  == null || cmp.compare(k, m.lowerKey(k))  > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            equal(m.lowerEntry(k), prev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            if (prev == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                equal(m.lowerKey(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                equal(m.lowerKey(k), prev.getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                check(cmp.compare(prev.getKey(), e.getKey()) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        for (final Iterator it : its) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                check(! it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            Fun fun = new Fun(){void f(){ it.next(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            THROWS(NoSuchElementException.class, fun, fun, fun);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    static void equalNavigableMapsLeaf(final NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                                       final NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        equal2(m1,              m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        equal( m1.size(),       m2.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        equal( m1.isEmpty(),    m2.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        equal( m1.hashCode(),   m2.hashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        equal( m1.toString(),   m2.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        equal2(m1.firstEntry(), m2.firstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        equal2(m1.lastEntry(),  m2.lastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        checkNavigableMap(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        checkNavigableMap(m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    static void equalNavigableMaps(NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                                   NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        equalNavigableMapsLeaf(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        equalNavigableSetsLeaf((NavigableSet) m1.keySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                               (NavigableSet) m2.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        equalNavigableSets(m1.navigableKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                           m2.navigableKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        equalNavigableSets(m1.descendingKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                           m2.descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        equal2(m1.entrySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
               m2.entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        equalNavigableMapsLeaf(m1.descendingMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                               m2.descendingMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        equalNavigableMapsLeaf(m1.descendingMap().descendingMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                               m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        equalNavigableSetsLeaf((NavigableSet) m1.descendingMap().keySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                               (NavigableSet) m2.descendingMap().keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        equalNavigableSetsLeaf(m1.descendingMap().descendingKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
                               m2.descendingMap().descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        equal2(m1.descendingMap().entrySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
               m2.descendingMap().entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        //----------------------------------------------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        // submaps
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        //----------------------------------------------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        Object min = Integer.MIN_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        Object max = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        if (m1.comparator() != null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            && m1.comparator().compare(min, max) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            Object tmp = min; min = max; max = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        switch (rnd.nextInt(6)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        case 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            equalNavigableMapsLeaf(m1.subMap(min, true, max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                                   m2.subMap(min, true, max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            equalNavigableMapsLeaf(m1.tailMap(min, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                                   m2.tailMap(min, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            equalNavigableMapsLeaf(m1.headMap(max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                                   m2.headMap(max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            equalNavigableMapsLeaf((NavigableMap) m1.subMap(min, max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                                   (NavigableMap) m2.subMap(min, max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        case 4:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            equalNavigableMapsLeaf((NavigableMap) m1.tailMap(min),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                                   (NavigableMap) m2.tailMap(min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        case 5:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            equalNavigableMapsLeaf((NavigableMap) m1.headMap(max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                                   (NavigableMap) m2.headMap(max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    static abstract class MapFrobber { abstract void frob(NavigableMap m); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    static abstract class SetFrobber { abstract void frob(NavigableSet m); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    static MapFrobber randomAdder(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        final Integer k = unusedKey(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        MapFrobber f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        switch (rnd.nextInt(4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        case 0: f = new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            equal(m.put(k, k+1), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            equal(m.get(k), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            if (maybe(4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                equal(m.put(k, k+1), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                equal(m.get(k), k+1);}}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        case 1: f = new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            m.descendingMap().put(k, k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            equal(m.get(k), k+1);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        case 2: f = new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            m.tailMap(k,true).headMap(k,true).put(k,k+1);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        case 3: f = new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            m.tailMap(k,true).headMap(k,true).descendingMap().put(k,k+1);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        default: throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        final MapFrobber ff = f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            ff.frob(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            if (maybe(2)) equal(m.get(k), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            if (maybe(4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                equal(m.put(k, k+1), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                equal(m.get(k), k+1);}}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    static SetFrobber randomAdder(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        final Integer e = unusedElt(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        SetFrobber f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        switch (rnd.nextInt(4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        case 0: f = new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            check(s.add(e));}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        case 1: f = new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            s.descendingSet().add(e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        case 2: f = new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            s.tailSet(e,true).headSet(e,true).add(e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        case 3: f = new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            s.descendingSet().tailSet(e,true).headSet(e,true).add(e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        default: throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        final SetFrobber ff = f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            if (maybe(2)) check(! s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            ff.frob(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            if (maybe(2)) check(! s.add(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            if (maybe(2)) check(s.contains(e));}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    static Integer unusedElt(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        Integer e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        do { e = rnd.nextInt(1024); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        while (s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    static Integer unusedKey(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        Integer k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        do { k = rnd.nextInt(1024); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        while (m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        return k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    static Integer usedKey(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        Integer x = rnd.nextInt(1024);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        Integer floor   = (Integer) m.floorKey(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        Integer ceiling = (Integer) m.ceilingKey(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        if (floor != null) return floor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        check(ceiling != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        return ceiling;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    static Integer usedElt(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        Integer x = rnd.nextInt(1024);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        Integer floor   = (Integer) s.floor(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        Integer ceiling = (Integer) s.ceiling(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        if (floor != null) return floor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        check(ceiling != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        return ceiling;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    static void checkUnusedKey(NavigableMap m, Object k) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        check(! m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        equal(m.get(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            equal(m.remove(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    static void checkUnusedElt(NavigableSet s, Object e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            check(! s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        if (maybe(2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            check(s.ceiling(e) != e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            check(s.floor(e)   != e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            check(! s.remove(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    static Fun remover(final Iterator it) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        return new Fun(){void f(){ it.remove(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    static MapFrobber randomRemover(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        final Integer k = usedKey(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        switch (rnd.nextInt(7)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        default: throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        case 0: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
            Map.Entry e = m.firstEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            equal(m.pollFirstEntry(), e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            checkUnusedKey(m, e.getKey());}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        case 1: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            Map.Entry e = m.lastEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            equal(m.pollLastEntry(), e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            checkUnusedKey(m, e.getKey());}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        case 2: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            check(m.remove(k) != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            checkUnusedKey(m, k);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        case 3: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            m.subMap(k, true, k, true).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            checkUnusedKey(m, k);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        case 4: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            m.descendingMap().subMap(k, true, k, true).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            checkUnusedKey(m, k);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        case 5: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            final Iterator it = m.keySet().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            while (it.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                if (it.next().equals(k)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                    it.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                        THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                               new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            checkUnusedKey(m, k);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        case 6: return new MapFrobber() {void frob(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            final Iterator<Map.Entry> it = m.entrySet().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            while (it.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                if (it.next().getKey().equals(k)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                    it.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                    if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                        THROWS(IllegalStateException.class, remover(it));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
            checkUnusedKey(m, k);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    static SetFrobber randomRemover(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        final Integer e = usedElt(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        switch (rnd.nextInt(7)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        default: throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        case 0: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            Object e = s.first();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            equal(s.pollFirst(), e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
        case 1: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            Object e = s.last();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            equal(s.pollLast(), e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        case 2: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
            check(s.remove(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        case 3: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
            s.subSet(e, true, e, true).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        case 4: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
            s.descendingSet().subSet(e, true, e, true).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        case 5: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            final Iterator it = s.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            while (it.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                if (it.next().equals(e)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                    it.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                    if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
                        THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
                               new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        case 6: return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
            final Iterator it = s.descendingSet().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
            while (it.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
                if (it.next().equals(e)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                    it.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                    if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                        THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
                               new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
            checkUnusedElt(s, e);}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    static void lockStep(NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                         NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        if (! (thorough || maybe(3))) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        if (maybe(4)) m1 = serialClone(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        if (maybe(4)) m2 = serialClone(m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        List<NavigableMap> maps = Arrays.asList(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        for (NavigableMap m : maps) testEmptyMap(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        final Set<Integer> ints = new HashSet<Integer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        while (ints.size() < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
            ints.add(rnd.nextInt(1024));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        final Integer[] elts = ints.toArray(new Integer[size]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
            MapFrobber adder = randomAdder(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
            for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                adder.frob(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                equal(m.size(), i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
            equalNavigableMaps(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            final Object e = usedKey(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            THROWS(IllegalArgumentException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                   new Fun(){void f(){m.subMap(e,true,e,false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                                       .subMap(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                   new Fun(){void f(){m.subMap(e,false,e,true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                                       .subMap(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                   new Fun(){void f(){m.tailMap(e,false).tailMap(e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                   new Fun(){void f(){m.headMap(e,false).headMap(e,true);}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        //System.out.printf("%s%n", m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        for (int i = size; i > 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            MapFrobber remover = randomRemover(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                remover.frob(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                equal(m.size(), i-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
            equalNavigableMaps(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        for (NavigableMap m : maps) testEmptyMap(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    static void lockStep(NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
                         NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        if (! (thorough || maybe(3))) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        if (maybe(4)) s1 = serialClone(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        if (maybe(4)) s2 = serialClone(s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        List<NavigableSet> sets = Arrays.asList(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        for (NavigableSet s : sets) testEmptySet(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        final Set<Integer> ints = new HashSet<Integer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        while (ints.size() < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            ints.add(rnd.nextInt(1024));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        final Integer[] elts = ints.toArray(new Integer[size]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            SetFrobber adder = randomAdder(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                adder.frob(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                equal(s.size(), i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            equalNavigableSets(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            final Object e = usedElt(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            THROWS(IllegalArgumentException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                   new Fun(){void f(){s.subSet(e,true,e,false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                                       .subSet(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                   new Fun(){void f(){s.subSet(e,false,e,true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                                       .subSet(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                   new Fun(){void f(){s.tailSet(e,false).tailSet(e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                   new Fun(){void f(){s.headSet(e,false).headSet(e,true);}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        //System.out.printf("%s%n", s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        for (int i = size; i > 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            SetFrobber remover = randomRemover(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
            for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                remover.frob(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                equal(s.size(), i-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
            equalNavigableSets(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        for (NavigableSet s : sets) testEmptySet(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    //--------------------- Infrastructure ---------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    static volatile int passed = 0, failed = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    static void pass() { passed++; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    static void fail() { failed++; Thread.dumpStack(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    static void fail(String msg) { System.out.println(msg); fail(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    static void unexpected(Throwable t) { failed++; t.printStackTrace(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    static void check(boolean cond) { if (cond) pass(); else fail(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    static void equal(Object x, Object y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        if (x == null ? y == null : x.equals(y)) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        else {System.out.println(x + " not equal to " + y); fail();}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    static void equal2(Object x, Object y) {equal(x, y); equal(y, x);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public static void main(String[] args) throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        try { realMain(args); } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
        if (failed > 0) throw new Exception("Some tests failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    static abstract class Fun {abstract void f() throws Throwable;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    static void THROWS(Class<? extends Throwable> k, Fun... fs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
          for (Fun f : fs)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
              try { f.f(); fail("Expected " + k.getName() + " not thrown"); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
              catch (Throwable t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                  if (k.isAssignableFrom(t.getClass())) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                  else unexpected(t);}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    static byte[] serializedForm(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            new ObjectOutputStream(baos).writeObject(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            return baos.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        } catch (IOException e) { throw new RuntimeException(e); }}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    static Object readObject(byte[] bytes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        throws IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        InputStream is = new ByteArrayInputStream(bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        return new ObjectInputStream(is).readObject();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
    static <T> T serialClone(T obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        try { return (T) readObject(serializedForm(obj)); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        catch (Exception e) { throw new RuntimeException(e); }}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
}