1/*
2 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
3 * 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 * 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 */
23
24/* @test
25 * @bug 6432565
26 * @summary Tests if no ArrayStoreException is thrown
27 * @author Igor Kushnirskiy
28 */
29import java.awt.*;
30import javax.swing.SwingWorker;
31import java.util.concurrent.atomic.*;
32
33
34public class bug6432565 {
35    private final static AtomicReference<Throwable> throwable =
36        new AtomicReference<Throwable>(null);
37    private final static AtomicBoolean isDone = new AtomicBoolean(false);
38    public static void main(String[] args) throws Exception {
39        Toolkit.getDefaultToolkit().getSystemEventQueue().push(new EventProcessor());
40
41        SwingWorker<Void, CharSequence> swingWorker =
42            new SwingWorker<Void,CharSequence>() {
43                @Override
44                protected Void doInBackground() {
45                    publish(new String[] {"hello"});
46                    publish(new StringBuilder("world"));
47                    return null;
48                }
49                @Override
50                protected void done() {
51                    isDone.set(true);
52                }
53            };
54        swingWorker.execute();
55
56        while (! isDone.get()) {
57            Thread.sleep(100);
58        }
59        if (throwable.get() instanceof ArrayStoreException) {
60            throw new RuntimeException("Test failed");
61        }
62    }
63    private final static class EventProcessor extends EventQueue {
64        @Override
65        protected void dispatchEvent(AWTEvent event) {
66            try {
67                super.dispatchEvent(event);
68            } catch (Throwable e) {
69                e.printStackTrace();
70                throwable.set(e);
71            }
72        }
73    }
74}
75