ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/Collections/T6433170.java
Revision: 1.3
Committed: Sun Oct 11 00:58:42 2015 UTC (8 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.2: +0 -1 lines
Log Message:
whitespace

File Contents

# User Rev Content
1 jsr166 1.1 /*
2 jsr166 1.2 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
3 jsr166 1.1 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4     *
5     * This code is free software; you can redistribute it and/or modify it
6     * under the terms of the GNU General Public License version 2 only, as
7     * published by the Free Software Foundation.
8     *
9     * This code is distributed in the hope that it will be useful, but WITHOUT
10     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12     * version 2 for more details (a copy is included in the LICENSE file that
13     * accompanied this code).
14     *
15     * You should have received a copy of the GNU General Public License version
16     * 2 along with this work; if not, write to the Free Software Foundation,
17     * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18     *
19 jsr166 1.2 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20     * or visit www.oracle.com if you need additional information or have any
21     * questions.
22 jsr166 1.1 */
23    
24     /*
25     * @test
26     * @bug 6433170
27     * @summary CheckedCollection.addAll should be all-or-nothing
28     */
29    
30     import java.util.*;
31     import static java.util.Collections.*;
32    
33     @SuppressWarnings("unchecked")
34     public class T6433170 {
35     private void checkEmpty(Collection x) {
36     check(x.isEmpty());
37     check(x.size() == 0);
38     check(x.toArray().length == 0);
39     }
40    
41     void test(String[] args) throws Throwable {
42     test(checkedList(
43     checkedList(new ArrayList(), String.class),
44     Object.class));
45     test(checkedSet(
46     checkedSet(new HashSet(), String.class),
47     Object.class));
48     test(checkedCollection(
49     checkedCollection(new Vector(), String.class),
50     Object.class));
51     }
52    
53     void test(final Collection checked) {
54     checkEmpty(checked);
55     final List mixedList = Arrays.asList("1", 2, "3");
56     THROWS(ClassCastException.class,
57     new F(){void f(){ checked.addAll(mixedList); }});
58     checkEmpty(checked);
59     }
60    
61     //--------------------- Infrastructure ---------------------------
62     volatile int passed = 0, failed = 0;
63     void pass() {passed++;}
64     void fail() {failed++; Thread.dumpStack();}
65     void fail(String msg) {System.err.println(msg); fail();}
66     void unexpected(Throwable t) {failed++; t.printStackTrace();}
67     void check(boolean cond) {if (cond) pass(); else fail();}
68     void equal(Object x, Object y) {
69     if (x == null ? y == null : x.equals(y)) pass();
70     else fail(x + " not equal to " + y);}
71     public static void main(String[] args) throws Throwable {
72     new T6433170().instanceMain(args);}
73     void instanceMain(String[] args) throws Throwable {
74     try {test(args);} catch (Throwable t) {unexpected(t);}
75     System.out.printf("%nPassed = %d, failed = %d%n%n", passed, failed);
76     if (failed > 0) throw new AssertionError("Some tests failed");}
77     abstract class F {abstract void f() throws Throwable;}
78     void THROWS(Class<? extends Throwable> k, F... fs) {
79     for (F f : fs)
80     try {f.f(); fail("Expected " + k.getName() + " not thrown");}
81     catch (Throwable t) {
82     if (k.isAssignableFrom(t.getClass())) pass();
83     else unexpected(t);}}
84     }