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