jdk/test/java/util/Collection/IteratorAtEnd.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 6672 f01ef94a63e7
child 24692 268fbc344d53
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 6672
diff changeset
     2
 * Copyright (c) 2007, 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: 4110
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 6529795
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary next() does not change iterator state if throws NoSuchElementException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Martin Buchholz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.concurrent.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
@SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public class IteratorAtEnd {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    private static final int SIZE = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    static void realMain(String[] args) throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
        testCollection(new ArrayList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        testCollection(new Vector());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        testCollection(new LinkedList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        testCollection(new ArrayDeque());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        testCollection(new TreeSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        testCollection(new CopyOnWriteArrayList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        testCollection(new CopyOnWriteArraySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        testCollection(new ConcurrentSkipListSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        testCollection(new PriorityQueue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        testCollection(new LinkedBlockingQueue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        testCollection(new ArrayBlockingQueue(100));
6672
f01ef94a63e7 6981113: Add ConcurrentLinkedDeque
dl
parents: 5506
diff changeset
    51
        testCollection(new ConcurrentLinkedDeque());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        testCollection(new ConcurrentLinkedQueue());
4110
ac033ba6ede4 6865582: jsr166y - jsr166 maintenance update
dl
parents: 3708
diff changeset
    53
        testCollection(new LinkedTransferQueue());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        testMap(new HashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        testMap(new Hashtable());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        testMap(new LinkedHashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        testMap(new WeakHashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        testMap(new IdentityHashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        testMap(new ConcurrentHashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        testMap(new ConcurrentSkipListMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        testMap(new TreeMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    static void testCollection(Collection c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            for (int i = 0; i < SIZE; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                c.add(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            test(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    static void testMap(Map m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            for (int i = 0; i < 3*SIZE; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                m.put(i, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            test(m.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            test(m.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            test(m.entrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    static void test(Collection c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            final Iterator it = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                   new Fun() {void f() { while (true) it.next(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            try { it.remove(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            catch (UnsupportedOperationException _) { return; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        if (c instanceof List) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            final List list = (List) c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                final ListIterator it = list.listIterator(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                final Object x = it.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                       new Fun() {void f() { it.previous(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                try { it.remove(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                catch (UnsupportedOperationException _) { return; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                check(! list.get(0).equals(x));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                final ListIterator it = list.listIterator(list.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                it.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                final Object x = it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                THROWS(NoSuchElementException.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                       new Fun() {void f() { it.next(); }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                try { it.remove(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                catch (UnsupportedOperationException _) { return; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                check(! list.get(list.size()-1).equals(x));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            } catch (Throwable t) { unexpected(t); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    //--------------------- Infrastructure ---------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    static volatile int passed = 0, failed = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    static void pass() {passed++;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    static void fail() {failed++; Thread.dumpStack();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    static void fail(String msg) {System.out.println(msg); fail();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    static void unexpected(Throwable t) {failed++; t.printStackTrace();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    static void check(boolean cond) {if (cond) pass(); else fail();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    static void equal(Object x, Object y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        if (x == null ? y == null : x.equals(y)) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        else fail(x + " not equal to " + y);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public static void main(String[] args) throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        try {realMain(args);} catch (Throwable t) {unexpected(t);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        if (failed > 0) throw new AssertionError("Some tests failed");}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    private static abstract class Fun {abstract void f() throws Throwable;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    static void THROWS(Class<? extends Throwable> k, Fun... fs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        for (Fun f : fs)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            try { f.f(); fail("Expected " + k.getName() + " not thrown"); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            catch (Throwable t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                if (k.isAssignableFrom(t.getClass())) pass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                else unexpected(t);}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
}