TextAreaMixing.java revision 14851:980da45565c8
1/*
2 * Copyright (c) 2013, 2016, 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/*
25 * @test
26 * @key headful
27 * @bug 8013189
28 * @run main TextAreaMixing
29 * @summary TextArea should support HW/LW mixing
30 * @author anthony.petrov@oracle.com
31 */
32
33import java.awt.*;
34import java.awt.event.*;
35import javax.swing.*;
36
37public class TextAreaMixing {
38
39    private static volatile boolean menuClicked = false;
40    private static JMenuItem menuItem;
41
42    public static void main(String[] args) throws Exception {
43        // The bug is only reproducible on X11, but there's no reason
44        // for this test to not pass on any platofrm
45
46        final JFrame frame = new JFrame("JFrame");
47        frame.setLayout(new GridLayout(0, 1));
48        frame.setSize(200, 200);
49
50        JMenuBar menuBar = new JMenuBar();
51        JMenu menu = new JMenu("Test Menu");
52
53        for (int i = 0; i < 6; i++) {
54            JMenuItem mi = new JMenuItem(Integer.toString(i));
55            mi.addActionListener(new ActionListener() {
56                @Override
57                public void actionPerformed(ActionEvent e) {
58                    menuClicked = true;
59                }
60            });
61            menu.add(mi);
62
63            // Choose a random (OK, the fourth) menu item to click on
64            if (i == 3) {
65                menuItem = mi;
66            }
67        }
68        menuBar.add(menu);
69        frame.setJMenuBar(menuBar);
70
71        frame.getContentPane().add(new TextArea());
72        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
73        frame.setVisible(true);
74
75        Thread.sleep(2000);
76
77        Robot robot = new Robot();
78
79        // Open the menu
80        Point loc = menu.getLocationOnScreen();
81        robot.mouseMove(loc.x + menu.getWidth() / 2, loc.y + menu.getHeight() / 2);
82        robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
83        robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
84
85        Thread.sleep(500);
86
87        // Click an item
88        loc = menuItem.getLocationOnScreen();
89        robot.mouseMove(loc.x + menuItem.getWidth() / 2, loc.y + menuItem.getHeight() / 2);
90        robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
91        robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
92
93        Thread.sleep(500);
94
95        frame.dispose();
96
97        if (!menuClicked) {
98            throw new RuntimeException("A menu item has never been clicked.");
99        }
100    }
101}
102