Skip to content

Commit 17973ad

Browse files
committedMar 20, 2025
8342524: Use latch in AbstractButton/bug6298940.java instead of delay
Backport-of: 2bd8f026dbd449e810dc6ce96cd9235e5cb51a9b
1 parent e985f85 commit 17973ad

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Copyright (c) 2005, 2025, 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+
* @bug 6298940
27+
* @key headful
28+
* @summary Tests that mnemonic keystroke fires an action
29+
* @library /javax/swing/regtesthelpers
30+
* @build Util
31+
* @run main bug6298940
32+
*/
33+
34+
import java.awt.Robot;
35+
import java.awt.event.KeyEvent;
36+
import java.util.concurrent.CountDownLatch;
37+
38+
import javax.swing.ButtonModel;
39+
import javax.swing.DefaultButtonModel;
40+
import javax.swing.JButton;
41+
import javax.swing.JFrame;
42+
import javax.swing.SwingUtilities;
43+
44+
import static java.util.concurrent.TimeUnit.SECONDS;
45+
46+
public final class bug6298940 {
47+
private static JFrame frame;
48+
49+
private static final CountDownLatch actionEvent = new CountDownLatch(1);
50+
51+
private static void createAndShowGUI() {
52+
ButtonModel model = new DefaultButtonModel();
53+
model.addActionListener(event -> {
54+
System.out.println("ActionEvent");
55+
actionEvent.countDown();
56+
});
57+
model.setMnemonic('T');
58+
59+
JButton button = new JButton("Test");
60+
button.setModel(model);
61+
62+
frame = new JFrame("bug6298940");
63+
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
64+
frame.add(button);
65+
frame.pack();
66+
frame.setLocationRelativeTo(null);
67+
frame.setVisible(true);
68+
frame.toFront();
69+
}
70+
71+
public static void main(String[] args) throws Exception {
72+
Robot robot = new Robot();
73+
74+
SwingUtilities.invokeAndWait(bug6298940::createAndShowGUI);
75+
76+
robot.waitForIdle();
77+
robot.delay(500);
78+
79+
Util.hitMnemonics(robot, KeyEvent.VK_T);
80+
81+
try {
82+
if (!actionEvent.await(1, SECONDS)) {
83+
throw new RuntimeException("Mnemonic didn't fire an action");
84+
}
85+
} finally {
86+
SwingUtilities.invokeAndWait(() -> {
87+
if (frame != null) {
88+
frame.dispose();
89+
}
90+
});
91+
}
92+
}
93+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 20, 2025

@openjdk-notifier[bot]
Please sign in to comment.