jdk/test/javax/swing/JColorChooser/Test4177735.java
author goetz
Tue, 14 Jun 2016 10:44:59 +0200
changeset 39056 d99e63b6d962
parent 29003 7505cfb1cadf
permissions -rw-r--r--
8159690: [TESTBUG] Mark headful tests with @key headful. Reviewed-by: simonis, alexsch
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
/*
39056
d99e63b6d962 8159690: [TESTBUG] Mark headful tests with @key headful.
goetz
parents: 29003
diff changeset
     2
 * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
1275
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1275
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1275
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1275
diff changeset
    21
 * questions.
1275
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
39056
d99e63b6d962 8159690: [TESTBUG] Mark headful tests with @key headful.
goetz
parents: 29003
diff changeset
    26
 * @key headful
1275
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    27
 * @bug 4177735
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    28
 * @summary Tests that JColorChooser leaves no threads when disposed
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    29
 * @author Shannon Hickey
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
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    32
import java.awt.Point;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    33
import javax.swing.JColorChooser;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    34
import javax.swing.JDialog;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    35
import javax.swing.SwingUtilities;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    36
import javax.swing.colorchooser.AbstractColorChooserPanel;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    37
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    38
public class Test4177735 implements Runnable {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    39
    private static final long DELAY = 1000L;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    40
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    41
    public static void main(String[] args) throws Exception {
29003
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    42
        int hsvIndex = 0;
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    43
        int panelsLength;
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    44
        int finalIndex;
1275
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    45
        JColorChooser chooser = new JColorChooser();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    46
        AbstractColorChooserPanel[] panels = chooser.getChooserPanels();
29003
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    47
        panelsLength = panels.length;
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    48
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    49
        for(int i = 0; i < panelsLength; i++) {
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    50
            if(panels[i].getDisplayName().equals("HSV")) {
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    51
                hsvIndex = i;
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    52
            }
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    53
        }
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    54
        finalIndex = Math.min(hsvIndex, panelsLength - 1);
7505cfb1cadf 8068301: [TEST_BUG] Test javax/swing/JColorChooser/Test4177735.java fails with ArrayIndexOutOfBoundsException with GTKL&F
kshefov
parents: 5506
diff changeset
    55
        chooser.setChooserPanels(new AbstractColorChooserPanel[] { panels[finalIndex] });
1275
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
        JDialog dialog = show(chooser);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    58
        pause(DELAY);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    59
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    60
        dialog.dispose();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    61
        pause(DELAY);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    62
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    63
        Test4177735 test = new Test4177735();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    64
        SwingUtilities.invokeAndWait(test);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    65
        if (test.count != 0) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    66
            throw new Error("JColorChooser leaves " + test.count + " threads running");
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    67
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    68
    }
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
    static JDialog show(JColorChooser chooser) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    71
        JDialog dialog = JColorChooser.createDialog(null, null, false, chooser, null, null);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    72
        dialog.setVisible(true);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    73
        // block till displayed
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    74
        Point point = null;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    75
        while (point == null) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    76
            try {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    77
                point = dialog.getLocationOnScreen();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    78
            }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    79
            catch (IllegalStateException exception) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    80
                pause(DELAY);
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
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    83
        return dialog;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    84
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    85
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    86
    private static void pause(long delay) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    87
        try {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    88
            Thread.sleep(delay);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    89
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    90
        catch (InterruptedException exception) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    91
        }
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
    private int count;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    95
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    96
    public void run() {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    97
        ThreadGroup group = Thread.currentThread().getThreadGroup();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    98
        Thread[] threads = new Thread[group.activeCount()];
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
    99
        int count = group.enumerate(threads, false);
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   100
        for (int i = 0; i < count; i++) {
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   101
            String name = threads[i].getName();
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   102
            if ("SyntheticImageGenerator".equals(name)) { // NON-NLS: thread name
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   103
                this.count++;
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   104
            }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   105
        }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   106
    }
748883f48403 6718965: Swing color chooser tests should be open source
malenkov
parents:
diff changeset
   107
}