jdk/test/javax/swing/JTabbedPane/7161568/bug7161568.java
author alexsch
Thu, 01 Aug 2013 17:09:59 +0400
changeset 19173 5c179adfb12b
child 28071 3acb75b8df45
permissions -rw-r--r--
7161568: [macosx] api/javax_swing/JTabbedPane/index2.html#varios fails Reviewed-by: malenkov, serb

/*
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import sun.awt.SunToolkit;

/**
 * @test
 * @bug 7161568
 * @author Alexander Scherbatiy
 * @summary Tests that navigating tabs in the JTAbbedPane does not throw NPE
 * @run main bug7161568
 */
public class bug7161568 {

    private static final int N = 50;
    private static JTabbedPane tabbedPane;

    public static void main(String[] args) throws Exception {
        UIManager.put("TabbedPane.selectionFollowsFocus", Boolean.FALSE);

        SunToolkit toolkit = (SunToolkit) Toolkit.getDefaultToolkit();
        Robot robot = new Robot();
        robot.setAutoDelay(50);

        SwingUtilities.invokeAndWait(new Runnable() {

            @Override
            public void run() {
                createAndShowUI();
            }
        });

        toolkit.realSync();

        SwingUtilities.invokeAndWait(new Runnable() {

            @Override
            public void run() {
                tabbedPane.requestFocus();
            }
        });

        toolkit.realSync();

        for (int i = 0; i < N; i++) {
            robot.keyPress(KeyEvent.VK_LEFT);
            robot.keyRelease(KeyEvent.VK_LEFT);
            toolkit.realSync();
        }
    }

    static void createAndShowUI() {
        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(100, 100);

        tabbedPane = new JTabbedPane();

        for (int i = 0; i < N; i++) {
            tabbedPane.addTab("Tab: " + i, new JLabel("Test"));
        }

        tabbedPane.setSelectedIndex(0);

        frame.getContentPane().add(tabbedPane);
        frame.setVisible(true);
    }
}