Skip to content

Commit 7612bba

Browse files
Manukumar V SAbdul Kolarkunnu
Manukumar V S
authored and
Abdul Kolarkunnu
committedMay 11, 2022
8285698: Create a test to check the focus stealing of JPopupMenu from JComboBox
Reviewed-by: prr
1 parent 73c5e99 commit 7612bba

File tree

1 file changed

+179
-0
lines changed

1 file changed

+179
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
/*
2+
* Copyright (c) 2002, 2022, 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+
import java.awt.BorderLayout;
24+
import java.awt.Point;
25+
import java.awt.Robot;
26+
import java.awt.event.InputEvent;
27+
import java.awt.event.KeyEvent;
28+
import java.awt.event.MouseAdapter;
29+
import java.awt.event.MouseEvent;
30+
import java.util.Arrays;
31+
import java.util.List;
32+
import java.util.concurrent.atomic.AtomicBoolean;
33+
import java.util.concurrent.atomic.AtomicReference;
34+
import java.util.stream.Collectors;
35+
import javax.swing.JComboBox;
36+
import javax.swing.JComponent;
37+
import javax.swing.JFrame;
38+
import javax.swing.JLabel;
39+
import javax.swing.JMenuItem;
40+
import javax.swing.JPanel;
41+
import javax.swing.JPopupMenu;
42+
import javax.swing.SwingUtilities;
43+
import javax.swing.UIManager;
44+
import javax.swing.UIManager.LookAndFeelInfo;
45+
import javax.swing.UnsupportedLookAndFeelException;
46+
47+
import static javax.swing.UIManager.getInstalledLookAndFeels;
48+
49+
/*
50+
* @test
51+
* @key headful
52+
* @bug 4632782
53+
* @summary This test checks CCC #4632782, which verifies that showing a
54+
* JPopupMenu shouldn't steal the focus out of current focused component.
55+
* @run main JPopupMenuFocusStealTest
56+
*/
57+
public class JPopupMenuFocusStealTest {
58+
private static JPopupMenu popupMenu;
59+
private static JComboBox comboBox;
60+
private static JFrame frame;
61+
private static Robot robot;
62+
private static JLabel label;
63+
64+
public static void main(String[] args) throws Exception {
65+
robot = new Robot();
66+
robot.setAutoDelay(200);
67+
robot.setAutoWaitForIdle(true);
68+
69+
List<String> lafs = Arrays.stream(getInstalledLookAndFeels())
70+
.map(LookAndFeelInfo::getClassName)
71+
.collect(Collectors.toList());
72+
for (final String laf : lafs) {
73+
AtomicBoolean lafSetSuccess = new AtomicBoolean(false);
74+
SwingUtilities.invokeAndWait(() -> {
75+
lafSetSuccess.set(setLookAndFeel(laf));
76+
if (lafSetSuccess.get()) {
77+
createUI();
78+
}
79+
});
80+
if (!lafSetSuccess.get()) {
81+
continue;
82+
}
83+
robot.waitForIdle();
84+
85+
// Bring the mouse pointer to label
86+
mouseClick(label);
87+
// Get the Popup menu by Mouse Button 3 click
88+
robot.mousePress(InputEvent.BUTTON3_DOWN_MASK);
89+
robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK);
90+
hitKeys(KeyEvent.VK_DOWN, KeyEvent.VK_DOWN, KeyEvent.VK_ENTER);
91+
final AtomicBoolean isFocusOwner = new AtomicBoolean(false);
92+
SwingUtilities.invokeAndWait(
93+
() -> isFocusOwner.set(comboBox.isFocusOwner()));
94+
SwingUtilities
95+
.invokeAndWait(JPopupMenuFocusStealTest::disposeFrame);
96+
if (isFocusOwner.get()) {
97+
System.out.println("Test Passed for " + laf);
98+
} else {
99+
throw new RuntimeException("Test Failed for " + laf);
100+
}
101+
}
102+
}
103+
104+
private static void createUI() {
105+
frame = new JFrame();
106+
frame.setTitle("Popup Menu Application");
107+
JPanel topPanel = new JPanel(new BorderLayout());
108+
Object[] array = {"Item1", "Item2", "Item3"};
109+
comboBox = new JComboBox(array);
110+
label = new JLabel("Check focus transfer from Combo to Popupmenu");
111+
topPanel.add(comboBox, BorderLayout.NORTH);
112+
topPanel.add(label, BorderLayout.CENTER);
113+
frame.getContentPane().add(topPanel);
114+
115+
// Create some menu items for the popup
116+
popupMenu = new JPopupMenu("Menu");
117+
popupMenu.add(new JMenuItem("New"));
118+
popupMenu.add(new JMenuItem("Open..."));
119+
popupMenu.add(new JMenuItem("Save"));
120+
popupMenu.add(new JMenuItem("Save As..."));
121+
popupMenu.add(new JMenuItem("Exit"));
122+
123+
topPanel.addMouseListener(new PopupMenuEventListener());
124+
popupMenu.setFocusable(false);
125+
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
126+
frame.setLocationRelativeTo(null);
127+
frame.pack();
128+
frame.setVisible(true);
129+
}
130+
131+
private static void mouseClick(JComponent jComponent) throws Exception {
132+
final AtomicReference<Point> loc = new AtomicReference<>();
133+
SwingUtilities
134+
.invokeAndWait(() -> loc.set(jComponent.getLocationOnScreen()));
135+
final Point location = loc.get();
136+
robot.mouseMove(location.x + 15, location.y + 5);
137+
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
138+
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
139+
}
140+
141+
private static void hitKeys(int... keys) {
142+
for (int key : keys) {
143+
robot.keyPress(key);
144+
}
145+
for (int i = keys.length - 1; i >= 0; i--) {
146+
robot.keyRelease(keys[i]);
147+
}
148+
}
149+
150+
private static boolean setLookAndFeel(String lafName) {
151+
try {
152+
UIManager.setLookAndFeel(lafName);
153+
} catch (UnsupportedLookAndFeelException ignored) {
154+
System.out.println("Ignoring Unsupported L&F: " + lafName);
155+
return false;
156+
} catch (ClassNotFoundException | InstantiationException
157+
| IllegalAccessException e) {
158+
throw new RuntimeException(e);
159+
}
160+
return true;
161+
}
162+
163+
private static void disposeFrame() {
164+
if (frame != null) {
165+
frame.dispose();
166+
frame = null;
167+
}
168+
}
169+
170+
private static class PopupMenuEventListener extends MouseAdapter {
171+
public void mousePressed(MouseEvent me) {
172+
if (me.isPopupTrigger()) {
173+
popupMenu.show(me.getComponent(), me.getX(), me.getY());
174+
}
175+
}
176+
177+
}
178+
179+
}

0 commit comments

Comments
 (0)
Please sign in to comment.