jdk/test/javax/swing/JColorChooser/Test4177735.java
author malenkov
Thu, 26 Jun 2008 15:39:12 +0400
changeset 1275 748883f48403
child 5506 202f599c92aa
permissions -rw-r--r--
6718965: Swing color chooser tests should be open source Reviewed-by: peterz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1275
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     1
/*
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     2
 * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     4
 *
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     8
 *
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    13
 * accompanied this code).
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    14
 *
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    18
 *
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    21
 * have any questions.
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    22
 */
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    23
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    24
/*
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    25
 * @test
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    26
 * @bug 4177735
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    27
 * @summary Tests that JColorChooser leaves no threads when disposed
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    28
 * @author Shannon Hickey
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    29
 */
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    30
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    31
import java.awt.Point;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    32
import javax.swing.JColorChooser;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    33
import javax.swing.JDialog;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    34
import javax.swing.SwingUtilities;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    35
import javax.swing.colorchooser.AbstractColorChooserPanel;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    36
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    37
public class Test4177735 implements Runnable {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    38
    private static final long DELAY = 1000L;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    39
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    40
    public static void main(String[] args) throws Exception {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    41
        JColorChooser chooser = new JColorChooser();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    42
        AbstractColorChooserPanel[] panels = chooser.getChooserPanels();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    43
        chooser.setChooserPanels(new AbstractColorChooserPanel[] { panels[1] });
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    44
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    45
        JDialog dialog = show(chooser);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    46
        pause(DELAY);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    47
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    48
        dialog.dispose();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    49
        pause(DELAY);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    50
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    51
        Test4177735 test = new Test4177735();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    52
        SwingUtilities.invokeAndWait(test);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    53
        if (test.count != 0) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    54
            throw new Error("JColorChooser leaves " + test.count + " threads running");
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    55
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    56
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    57
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    58
    static JDialog show(JColorChooser chooser) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    59
        JDialog dialog = JColorChooser.createDialog(null, null, false, chooser, null, null);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    60
        dialog.setVisible(true);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    61
        // block till displayed
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    62
        Point point = null;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    63
        while (point == null) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    64
            try {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    65
                point = dialog.getLocationOnScreen();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    66
            }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    67
            catch (IllegalStateException exception) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    68
                pause(DELAY);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    69
            }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    70
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    71
        return dialog;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    72
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    73
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    74
    private static void pause(long delay) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    75
        try {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    76
            Thread.sleep(delay);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    77
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    78
        catch (InterruptedException exception) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    79
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    80
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    81
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    82
    private int count;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    83
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    84
    public void run() {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    85
        ThreadGroup group = Thread.currentThread().getThreadGroup();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    86
        Thread[] threads = new Thread[group.activeCount()];
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    87
        int count = group.enumerate(threads, false);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    88
        for (int i = 0; i < count; i++) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    89
            String name = threads[i].getName();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    90
            if ("SyntheticImageGenerator".equals(name)) { // NON-NLS: thread name
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    91
                this.count++;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    92
            }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    93
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    94
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    95
}