jdk/test/java/util/NavigableMap/LockStep.java
author martin
Sat, 10 May 2008 11:49:25 -0700
changeset 493 b8102e80be10
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry Reviewed-by: dl, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
     2
 * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
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
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
    26
 * @bug     6420753 6242436 6691185
2
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);
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   162
        check(! c.iterator().hasNext());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    static void testEmptySet(Set<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        testEmptyCollection(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        equal(c.hashCode(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        equal2(c, Collections.<Integer>emptySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    static void testEmptyMap(final Map<?,?> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        check(m.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        equal(m.size(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        equal(m.toString(),"{}");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        equal(m.hashCode(), 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        testEmptySet(m.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        testEmptySet(m.entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        testEmptyCollection(m.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    static final Random rnd = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    static void equalNext(final Iterator<?> it, Object expected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            check(it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        equal(it.next(), expected);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    static Comparator comparator(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        Comparator cmp = s.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        return cmp != null ? cmp : new Comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            public int compare(Object o1, Object o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                return ((Comparable) o1).compareTo(o2); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    static Comparator comparator(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        Comparator cmp = m.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        return cmp != null ? cmp : new Comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            public int compare(Object o1, Object o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                return ((Comparable) o1).compareTo(o2); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    static void checkNavigableSet(final NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        if (s.comparator() == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            check(s.descendingSet().descendingSet().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        equal(s.isEmpty(), s.size() == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        equal2(s, s.descendingSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        if (maybe(4) && s instanceof Serializable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            equal2(s, serialClone(s));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        Comparator cmp = comparator(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (s.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                   new Fun(){void f(){ s.first(); }},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                   new Fun(){void f(){ s.last();  }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            equal(null, s.lower(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            equal(null, s.floor(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            equal(null, s.ceiling(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            equal(null, s.higher(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            Object a = s.first();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            Object z = s.last();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            equal(s.lower(a), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            equal(s.higher(z), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            equal2(s, s.tailSet(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            equal2(s, s.headSet(z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            equal2(s, s.subSet(a, true, z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            testEmptySet(s.subSet(a, true, a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            testEmptySet(s.subSet(z, true, z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            testEmptySet(s.headSet(a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            testEmptySet(s.tailSet(z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            equal2(s.headSet(a, true), singleton(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            equal2(s.tailSet(z, true), singleton(z));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        Iterator[] its = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            s.iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            s.descendingSet().descendingSet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        for (final Iterator it : its)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                       new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        Object prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        for (Object e : s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            check(s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            for (Iterator it : its) equalNext(it, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            equal(e, s.ceiling(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            equal(e, s.floor(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            check(s.higher(e) == null || cmp.compare(e, s.higher(e)) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            equal(s.lower(e), prev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            if (prev == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                check(cmp.compare(prev, e) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        for (final Iterator it : its) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                check(! it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            Fun fun = new Fun(){void f(){ it.next(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            THROWS(NoSuchElementException.class, fun, fun, fun);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   266
    static void equalIterators(final Iterator<?> it1,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   267
                               final Iterator<?> it2) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   268
        while (it1.hasNext()) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   269
            if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   270
                check(it2.hasNext());
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   271
            equal(it1.next(), it2.next());
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   272
        }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   273
        check(! it2.hasNext());
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   274
    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   275
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    static void equalNavigableSetsLeaf(final NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                                       final NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        equal2(s1,            s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        equal( s1.size(),     s2.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        equal( s1.isEmpty(),  s2.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        equal( s1.hashCode(), s2.hashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        equal( s1.toString(), s2.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        if (! s1.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            equal(s1.first(), s2.first());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            equal(s1.last(),  s2.last());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        }
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   287
        equalIterators(s1.iterator(), s2.iterator());
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   288
        equalIterators(s1.descendingIterator(), s2.descendingIterator());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        checkNavigableSet(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        checkNavigableSet(s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    static void equalNavigableSets(final NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                                   final NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        equalNavigableSetsLeaf(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        equalNavigableSetsLeaf(s1.descendingSet(), s2.descendingSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        equalNavigableSetsLeaf(s1.descendingSet().descendingSet(), s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        Object min = s1.isEmpty() ? Integer.MIN_VALUE : s1.first();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        Object max = s2.isEmpty() ? Integer.MAX_VALUE : s2.last();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        if (s1.comparator() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            s1.comparator().compare(min, max) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            Object tmp = min; min = max; max = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        equalNavigableSetsLeaf(s1.subSet(min, true, max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                               s2.subSet(min, true, max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        equalNavigableSetsLeaf(s1.tailSet(min, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                               s2.tailSet(min, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        equalNavigableSetsLeaf(s1.headSet(max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                               s2.headSet(max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        equalNavigableSetsLeaf((NavigableSet) s1.subSet(min, max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                               (NavigableSet) s2.subSet(min, max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        equalNavigableSetsLeaf((NavigableSet) s1.tailSet(min),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                               (NavigableSet) s2.tailSet(min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        equalNavigableSetsLeaf((NavigableSet) s1.headSet(max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                               (NavigableSet) s2.headSet(max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    // Destined for a Collections.java near you?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    static <T> T[] concat(T[]... arrays) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        int len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        for (int i = 0; i < arrays.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            len += arrays[i].length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        T[] a = (T[])java.lang.reflect.Array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            .newInstance(arrays[0].getClass().getComponentType(), len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        for (int i = 0; i < arrays.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
            T[] array = arrays[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            System.arraycopy(array, 0, a, k, array.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            k += array.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    static void checkNavigableMap(final NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        if (m.comparator() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            check(m.descendingMap().descendingMap().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            check(m.descendingKeySet().descendingSet().comparator() == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        equal(m.isEmpty(), m.size() == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        equal2(m, m.descendingMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            equal2(m, serialClone(m));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        equal2(m.keySet(), m.descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        Comparator cmp = comparator(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        if (m.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                   new Fun(){void f(){ m.firstKey(); }},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                   new Fun(){void f(){ m.lastKey();  }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            equal(null, m.firstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            equal(null, m.lastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            equal(null, m.pollFirstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            equal(null, m.pollLastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            equal(null, m.lowerKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            equal(null, m.floorKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            equal(null, m.ceilingKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            equal(null, m.higherKey(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            equal(null, m.lowerEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            equal(null, m.floorEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            equal(null, m.ceilingEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            equal(null, m.higherEntry(1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            Object a = m.firstKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            Object z = m.lastKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            equal(m.lowerKey(a), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            equal(m.higherKey(z), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            equal(a, m.firstEntry().getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            equal(z, m.lastEntry().getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            equal2(m, m.tailMap(a));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            equal2(m, m.headMap(z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            equal2(m, m.subMap(a, true, z, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            testEmptyMap(m.subMap(a, true, a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            testEmptyMap(m.subMap(z, true, z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            testEmptyMap(m.headMap(a, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            testEmptyMap(m.tailMap(z, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            equal2(m.headMap(a, true), singletonMap(a, m.get(a)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            equal2(m.tailMap(z, true), singletonMap(z, m.get(z)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        Iterator[] kits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            m.keySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            m.descendingMap().descendingKeySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            m.descendingKeySet().descendingSet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        Iterator[] vits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            m.values().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            m.descendingMap().descendingMap().values().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        Iterator[] eits = new Iterator[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            m.entrySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            m.descendingMap().descendingMap().entrySet().iterator(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        Iterator[] its = concat(kits, vits, eits);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        for (final Iterator it : its)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            if (maybe(4))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                THROWS(IllegalStateException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                       new Fun(){void f(){ it.remove(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        Map.Entry prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        for (Map.Entry e : (Set<Map.Entry>) m.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            Object k = e.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            Object v = e.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            check(m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            check(m.containsValue(v));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            for (Iterator kit : kits) equalNext(kit, k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            for (Iterator vit : vits) equalNext(vit, v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            for (Iterator eit : eits) equalNext(eit, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            equal(k, m.ceilingKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            equal(k, m.ceilingEntry(k).getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            equal(k, m.floorKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            equal(k, m.floorEntry(k).getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            check(m.higherKey(k) == null || cmp.compare(k, m.higherKey(k)) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            check(m.lowerKey(k)  == null || cmp.compare(k, m.lowerKey(k))  > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            equal(m.lowerEntry(k), prev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            if (prev == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                equal(m.lowerKey(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                equal(m.lowerKey(k), prev.getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                check(cmp.compare(prev.getKey(), e.getKey()) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        for (final Iterator it : its) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                check(! it.hasNext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            Fun fun = new Fun(){void f(){ it.next(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            THROWS(NoSuchElementException.class, fun, fun, fun);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        }
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 equalNavigableMapsLeaf(final NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                                       final NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        equal2(m1,              m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        equal( m1.size(),       m2.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        equal( m1.isEmpty(),    m2.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        equal( m1.hashCode(),   m2.hashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        equal( m1.toString(),   m2.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        equal2(m1.firstEntry(), m2.firstEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        equal2(m1.lastEntry(),  m2.lastEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        checkNavigableMap(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        checkNavigableMap(m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    static void equalNavigableMaps(NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                                   NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        equalNavigableMapsLeaf(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        equalNavigableSetsLeaf((NavigableSet) m1.keySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
                               (NavigableSet) m2.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        equalNavigableSets(m1.navigableKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
                           m2.navigableKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        equalNavigableSets(m1.descendingKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                           m2.descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        equal2(m1.entrySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
               m2.entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        equalNavigableMapsLeaf(m1.descendingMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                               m2.descendingMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        equalNavigableMapsLeaf(m1.descendingMap().descendingMap(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                               m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        equalNavigableSetsLeaf((NavigableSet) m1.descendingMap().keySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                               (NavigableSet) m2.descendingMap().keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        equalNavigableSetsLeaf(m1.descendingMap().descendingKeySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                               m2.descendingMap().descendingKeySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        equal2(m1.descendingMap().entrySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
               m2.descendingMap().entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        //----------------------------------------------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        // submaps
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        //----------------------------------------------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        Object min = Integer.MIN_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        Object max = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        if (m1.comparator() != null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            && m1.comparator().compare(min, max) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            Object tmp = min; min = max; max = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        switch (rnd.nextInt(6)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        case 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            equalNavigableMapsLeaf(m1.subMap(min, true, max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                                   m2.subMap(min, true, max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            equalNavigableMapsLeaf(m1.tailMap(min, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                                   m2.tailMap(min, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            equalNavigableMapsLeaf(m1.headMap(max, true),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                                   m2.headMap(max, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            equalNavigableMapsLeaf((NavigableMap) m1.subMap(min, max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                                   (NavigableMap) m2.subMap(min, max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        case 4:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
            equalNavigableMapsLeaf((NavigableMap) m1.tailMap(min),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                                   (NavigableMap) m2.tailMap(min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        case 5:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            equalNavigableMapsLeaf((NavigableMap) m1.headMap(max),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                                   (NavigableMap) m2.headMap(max));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    static abstract class MapFrobber { abstract void frob(NavigableMap m); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    static abstract class SetFrobber { abstract void frob(NavigableSet m); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    static MapFrobber randomAdder(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        final Integer k = unusedKey(m);
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   509
        final MapFrobber[] randomAdders = {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   510
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   511
                equal(m.put(k, k+1), null);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   512
                equal(m.get(k), k+1);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   513
                if (maybe(4)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   514
                    equal(m.put(k, k+1), k+1);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   515
                    equal(m.get(k), k+1);}}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   516
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   517
                m.descendingMap().put(k, k+1);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   518
                equal(m.get(k), k+1);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   519
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   520
                m.tailMap(k,true).headMap(k,true).put(k,k+1);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   521
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   522
                m.tailMap(k,true).headMap(k,true).descendingMap().put(k,k+1);}}
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   523
        };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        return new MapFrobber() {void frob(NavigableMap m) {
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   525
            randomAdders[rnd.nextInt(randomAdders.length)].frob(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            if (maybe(2)) equal(m.get(k), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            if (maybe(4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                equal(m.put(k, k+1), k+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                equal(m.get(k), k+1);}}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    static SetFrobber randomAdder(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        final Integer e = unusedElt(s);
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   534
        final SetFrobber[] randomAdders = {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   535
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   536
                check(s.add(e));}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   537
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   538
                s.descendingSet().add(e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   539
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   540
                s.tailSet(e,true).headSet(e,true).add(e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   541
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   542
                s.descendingSet().tailSet(e,true).headSet(e,true).add(e);}}
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   543
        };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        return new SetFrobber() {void frob(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
            if (maybe(2)) check(! s.contains(e));
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   546
            randomAdders[rnd.nextInt(randomAdders.length)].frob(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            if (maybe(2)) check(! s.add(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            if (maybe(2)) check(s.contains(e));}};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    static Integer unusedElt(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        Integer e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        do { e = rnd.nextInt(1024); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        while (s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    static Integer unusedKey(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        Integer k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        do { k = rnd.nextInt(1024); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        while (m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        return k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    static Integer usedKey(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        Integer x = rnd.nextInt(1024);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        Integer floor   = (Integer) m.floorKey(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        Integer ceiling = (Integer) m.ceilingKey(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        if (floor != null) return floor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        check(ceiling != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        return ceiling;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    static Integer usedElt(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        Integer x = rnd.nextInt(1024);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        Integer floor   = (Integer) s.floor(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        Integer ceiling = (Integer) s.ceiling(x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        if (floor != null) return floor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        check(ceiling != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        return ceiling;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    static void checkUnusedKey(NavigableMap m, Object k) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        check(! m.containsKey(k));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        equal(m.get(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            equal(m.remove(k), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    static void checkUnusedElt(NavigableSet s, Object e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            check(! s.contains(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        if (maybe(2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            check(s.ceiling(e) != e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            check(s.floor(e)   != e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        if (maybe(2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            check(! s.remove(e));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    static Fun remover(final Iterator it) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        return new Fun(){void f(){ it.remove(); }};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    static MapFrobber randomRemover(NavigableMap m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        final Integer k = usedKey(m);
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   607
        final MapFrobber[] randomRemovers = {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   608
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   609
                Map.Entry e = m.firstEntry();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   610
                equal(m.pollFirstEntry(), e);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   611
                checkUnusedKey(m, e.getKey());}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   612
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   613
                Map.Entry e = m.lastEntry();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   614
                equal(m.pollLastEntry(), e);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   615
                checkUnusedKey(m, e.getKey());}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   616
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   617
                check(m.remove(k) != null);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   618
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   619
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   620
                m.subMap(k, true, k, true).clear();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   621
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   622
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   623
                m.descendingMap().subMap(k, true, k, true).clear();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   624
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   625
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   626
                final Iterator it = m.keySet().iterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   627
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   628
                    if (it.next().equals(k)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   629
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   630
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   631
                            THROWS(IllegalStateException.class,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   632
                                   new Fun(){void f(){ it.remove(); }});
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   633
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   634
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   635
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   636
                final Iterator it = m.navigableKeySet().descendingIterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   637
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   638
                    if (it.next().equals(k)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   639
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   640
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   641
                            THROWS(IllegalStateException.class,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   642
                                   new Fun(){void f(){ it.remove(); }});
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   643
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   644
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   645
            new MapFrobber() {void frob(NavigableMap m) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   646
                final Iterator<Map.Entry> it = m.entrySet().iterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   647
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   648
                    if (it.next().getKey().equals(k)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   649
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   650
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   651
                            THROWS(IllegalStateException.class, remover(it));
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   652
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   653
                checkUnusedKey(m, k);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   654
        };
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   655
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   656
        return randomRemovers[rnd.nextInt(randomRemovers.length)];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    static SetFrobber randomRemover(NavigableSet s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        final Integer e = usedElt(s);
493
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   661
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   662
        final SetFrobber[] randomRemovers = {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   663
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   664
                Object e = s.first();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   665
                equal(s.pollFirst(), e);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   666
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   667
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   668
                Object e = s.last();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   669
                equal(s.pollLast(), e);
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   670
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   671
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   672
                check(s.remove(e));
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   673
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   674
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   675
                s.subSet(e, true, e, true).clear();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   676
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   677
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   678
                s.descendingSet().subSet(e, true, e, true).clear();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   679
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   680
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   681
                final Iterator it = s.iterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   682
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   683
                    if (it.next().equals(e)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   684
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   685
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   686
                            THROWS(IllegalStateException.class,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   687
                                   new Fun(){void f(){ it.remove(); }});
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   688
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   689
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   690
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   691
                final Iterator it = s.descendingSet().iterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   692
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   693
                    if (it.next().equals(e)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   694
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   695
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   696
                            THROWS(IllegalStateException.class,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   697
                                   new Fun(){void f(){ it.remove(); }});
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   698
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   699
                checkUnusedElt(s, e);}},
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   700
            new SetFrobber() {void frob(NavigableSet s) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   701
                final Iterator it = s.descendingIterator();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   702
                while (it.hasNext())
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   703
                    if (it.next().equals(e)) {
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   704
                        it.remove();
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   705
                        if (maybe(2))
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   706
                            THROWS(IllegalStateException.class,
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   707
                                   new Fun(){void f(){ it.remove(); }});
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   708
                    }
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   709
                checkUnusedElt(s, e);}}
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   710
        };
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   711
b8102e80be10 6691185: (coll) TreeMap.navigableKeySet's descendingIterator method starts at first instead of last entry
martin
parents: 2
diff changeset
   712
        return randomRemovers[rnd.nextInt(randomRemovers.length)];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    static void lockStep(NavigableMap m1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                         NavigableMap m2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        if (! (thorough || maybe(3))) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        if (maybe(4)) m1 = serialClone(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        if (maybe(4)) m2 = serialClone(m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        List<NavigableMap> maps = Arrays.asList(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        for (NavigableMap m : maps) testEmptyMap(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        final Set<Integer> ints = new HashSet<Integer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        while (ints.size() < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            ints.add(rnd.nextInt(1024));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        final Integer[] elts = ints.toArray(new Integer[size]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
        for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            MapFrobber adder = randomAdder(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
                adder.frob(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                equal(m.size(), i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            equalNavigableMaps(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            final Object e = usedKey(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
            THROWS(IllegalArgumentException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
                   new Fun(){void f(){m.subMap(e,true,e,false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
                                       .subMap(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                   new Fun(){void f(){m.subMap(e,false,e,true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                                       .subMap(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                   new Fun(){void f(){m.tailMap(e,false).tailMap(e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                   new Fun(){void f(){m.headMap(e,false).headMap(e,true);}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        //System.out.printf("%s%n", m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        for (int i = size; i > 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            MapFrobber remover = randomRemover(m1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            for (final NavigableMap m : maps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                remover.frob(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                equal(m.size(), i-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            equalNavigableMaps(m1, m2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        for (NavigableMap m : maps) testEmptyMap(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    static void lockStep(NavigableSet s1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                         NavigableSet s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        if (! (thorough || maybe(3))) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        if (maybe(4)) s1 = serialClone(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        if (maybe(4)) s2 = serialClone(s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        List<NavigableSet> sets = Arrays.asList(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        for (NavigableSet s : sets) testEmptySet(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        final Set<Integer> ints = new HashSet<Integer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        while (ints.size() < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            ints.add(rnd.nextInt(1024));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        final Integer[] elts = ints.toArray(new Integer[size]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
            SetFrobber adder = randomAdder(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
            for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                adder.frob(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                equal(s.size(), i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
            equalNavigableSets(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
            final Object e = usedElt(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
            THROWS(IllegalArgumentException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                   new Fun(){void f(){s.subSet(e,true,e,false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                                       .subSet(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                   new Fun(){void f(){s.subSet(e,false,e,true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                                       .subSet(e,true,e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
                   new Fun(){void f(){s.tailSet(e,false).tailSet(e,true);}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                   new Fun(){void f(){s.headSet(e,false).headSet(e,true);}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        //System.out.printf("%s%n", s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        for (int i = size; i > 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
            SetFrobber remover = randomRemover(s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            for (final NavigableSet s : sets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                remover.frob(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                equal(s.size(), i-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            equalNavigableSets(s1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        for (NavigableSet s : sets) testEmptySet(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    //--------------------- Infrastructure ---------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    static volatile int passed = 0, failed = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    static void pass() { passed++; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    static void fail() { failed++; Thread.dumpStack(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    static void fail(String msg) { System.out.println(msg); fail(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    static void unexpected(Throwable t) { failed++; t.printStackTrace(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
    static void check(boolean cond) { if (cond) pass(); else fail(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    static void equal(Object x, Object y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        if (x == null ? y == null : x.equals(y)) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        else {System.out.println(x + " not equal to " + y); fail();}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    static void equal2(Object x, Object y) {equal(x, y); equal(y, x);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    public static void main(String[] args) throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        try { realMain(args); } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        if (failed > 0) throw new Exception("Some tests failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    static abstract class Fun {abstract void f() throws Throwable;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    static void THROWS(Class<? extends Throwable> k, Fun... fs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
          for (Fun f : fs)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
              try { f.f(); fail("Expected " + k.getName() + " not thrown"); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
              catch (Throwable t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                  if (k.isAssignableFrom(t.getClass())) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                  else unexpected(t);}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    static byte[] serializedForm(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            new ObjectOutputStream(baos).writeObject(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            return baos.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        } catch (IOException e) { throw new RuntimeException(e); }}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    static Object readObject(byte[] bytes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        throws IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        InputStream is = new ByteArrayInputStream(bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        return new ObjectInputStream(is).readObject();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    static <T> T serialClone(T obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        try { return (T) readObject(serializedForm(obj)); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        catch (Exception e) { throw new RuntimeException(e); }}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
}