1
1
/*
2
- * Copyright (c) 2014, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
21
21
* questions.
22
22
*/
23
23
24
- /*
24
+ /*
25
25
* @test
26
26
* @key headful
27
- * @library ../../regtesthelpers
28
- * @build Util
29
27
* @bug 8033699 8154043 8167160 8208640 8226892
30
28
* @summary Incorrect radio button behavior when pressing tab key
31
29
* @run main bug8033699
34
32
import java .awt .Robot ;
35
33
import java .awt .event .ActionListener ;
36
34
import java .awt .event .KeyEvent ;
37
- import java .util .logging .Level ;
38
- import java .util .logging .Logger ;
35
+
39
36
import javax .swing .BorderFactory ;
40
37
import javax .swing .BoxLayout ;
41
38
import javax .swing .ButtonGroup ;
45
42
import javax .swing .JRadioButton ;
46
43
import javax .swing .SwingUtilities ;
47
44
import javax .swing .UIManager ;
48
- import javax .swing .UnsupportedLookAndFeelException ;
49
45
50
46
public class bug8033699 {
51
47
@@ -59,14 +55,15 @@ public class bug8033699 {
59
55
private static JRadioButton radioBtn3 ;
60
56
private static JRadioButton radioBtnSingle ;
61
57
62
- public static void main (String args [] ) throws Throwable {
58
+ public static void main (String [] args ) throws Throwable {
63
59
SwingUtilities .invokeAndWait (() -> {
64
60
changeLAF ();
65
61
createAndShowGUI ();
66
62
});
67
63
68
64
robot = new Robot ();
69
65
Thread .sleep (100 );
66
+ robot .waitForIdle ();
70
67
71
68
robot .setAutoDelay (100 );
72
69
@@ -76,7 +73,7 @@ public static void main(String args[]) throws Throwable {
76
73
// tab key test non-grouped radio button
77
74
runTest2 ();
78
75
79
- // shift tab key test grouped and non grouped radio button
76
+ // shift tab key test grouped and non- grouped radio button
80
77
runTest3 ();
81
78
82
79
// left/up key test in grouped radio button
@@ -152,16 +149,16 @@ private static void createAndShowGUI() {
152
149
mainFrame .setLayout (new BoxLayout (mainFrame .getContentPane (), BoxLayout .Y_AXIS ));
153
150
154
151
mainFrame .setSize (300 , 300 );
155
- mainFrame .setLocation ( 200 , 200 );
152
+ mainFrame .setLocationRelativeTo ( null );
156
153
mainFrame .setVisible (true );
157
154
mainFrame .toFront ();
158
155
}
159
156
160
157
// Radio button Group as a single component when traversing through tab key
161
158
private static void runTest1 () throws Exception {
162
- hitKey (robot , KeyEvent .VK_TAB );
163
- hitKey (robot , KeyEvent .VK_TAB );
164
- hitKey (robot , KeyEvent .VK_TAB );
159
+ hitKey (KeyEvent .VK_TAB );
160
+ hitKey (KeyEvent .VK_TAB );
161
+ hitKey (KeyEvent .VK_TAB );
165
162
166
163
SwingUtilities .invokeAndWait (() -> {
167
164
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtnSingle ) {
@@ -173,7 +170,7 @@ private static void runTest1() throws Exception {
173
170
174
171
// Non-Grouped Radio button as a single component when traversing through tab key
175
172
private static void runTest2 () throws Exception {
176
- hitKey (robot , KeyEvent .VK_TAB );
173
+ hitKey (KeyEvent .VK_TAB );
177
174
SwingUtilities .invokeAndWait (() -> {
178
175
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != btnEnd ) {
179
176
System .out .println ("Non Grouped Radio Button Go To Next Component through Tab Key failed" );
@@ -184,9 +181,9 @@ private static void runTest2() throws Exception {
184
181
185
182
// Non-Grouped Radio button and Group Radio button as a single component when traversing through shift-tab key
186
183
private static void runTest3 () throws Exception {
187
- hitKey (robot , KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
188
- hitKey (robot , KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
189
- hitKey (robot , KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
184
+ hitKey (KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
185
+ hitKey (KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
186
+ hitKey (KeyEvent .VK_SHIFT , KeyEvent .VK_TAB );
190
187
SwingUtilities .invokeAndWait (() -> {
191
188
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtn1 ) {
192
189
System .out .println ("Radio button Group/Non Grouped Radio Button SHIFT-Tab Key Test failed" );
@@ -197,8 +194,8 @@ private static void runTest3() throws Exception {
197
194
198
195
// Using arrow key to move focus in radio button group
199
196
private static void runTest4 () throws Exception {
200
- hitKey (robot , KeyEvent .VK_DOWN );
201
- hitKey (robot , KeyEvent .VK_RIGHT );
197
+ hitKey (KeyEvent .VK_DOWN );
198
+ hitKey (KeyEvent .VK_RIGHT );
202
199
SwingUtilities .invokeAndWait (() -> {
203
200
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtn3 ) {
204
201
System .out .println ("Radio button Group UP/LEFT Arrow Key Move Focus Failed" );
@@ -208,8 +205,8 @@ private static void runTest4() throws Exception {
208
205
}
209
206
210
207
private static void runTest5 () throws Exception {
211
- hitKey (robot , KeyEvent .VK_UP );
212
- hitKey (robot , KeyEvent .VK_LEFT );
208
+ hitKey (KeyEvent .VK_UP );
209
+ hitKey (KeyEvent .VK_LEFT );
213
210
SwingUtilities .invokeAndWait (() -> {
214
211
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtn1 ) {
215
212
System .out .println ("Radio button Group Left/Up Arrow Key Move Focus Failed" );
@@ -219,8 +216,8 @@ private static void runTest5() throws Exception {
219
216
}
220
217
221
218
private static void runTest6 () throws Exception {
222
- hitKey (robot , KeyEvent .VK_UP );
223
- hitKey (robot , KeyEvent .VK_UP );
219
+ hitKey (KeyEvent .VK_UP );
220
+ hitKey (KeyEvent .VK_UP );
224
221
SwingUtilities .invokeAndWait (() -> {
225
222
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtn2 ) {
226
223
System .out .println ("Radio button Group Circle Back To First Button Test" );
@@ -230,7 +227,7 @@ private static void runTest6() throws Exception {
230
227
}
231
228
232
229
private static void runTest7 () throws Exception {
233
- hitKey (robot , KeyEvent .VK_TAB );
230
+ hitKey (KeyEvent .VK_TAB );
234
231
SwingUtilities .invokeAndWait (() -> {
235
232
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != btnMiddle ) {
236
233
System .out .println ("Separate Component added in button group layout" );
@@ -240,7 +237,7 @@ private static void runTest7() throws Exception {
240
237
}
241
238
242
239
private static void runTest8 () throws Exception {
243
- hitKey (robot , KeyEvent .VK_TAB );
240
+ hitKey (KeyEvent .VK_TAB );
244
241
SwingUtilities .invokeAndWait (() -> {
245
242
if (KeyboardFocusManager .getCurrentKeyboardFocusManager ().getFocusOwner () != radioBtnSingle ) {
246
243
System .out .println ("Separate Component added in button group layout" );
@@ -249,9 +246,9 @@ private static void runTest8() throws Exception {
249
246
});
250
247
}
251
248
252
- private static Boolean actRB1 = false ;
253
- private static Boolean actRB2 = false ;
254
- private static Boolean actRB3 = false ;
249
+ private static boolean actRB1 = false ;
250
+ private static boolean actRB2 = false ;
251
+ private static boolean actRB3 = false ;
255
252
256
253
// JDK-8226892: Verify that ActionListener is called when a RadioButton is selected using arrow key.
257
254
private static void runTest9 () throws Exception {
@@ -268,9 +265,9 @@ private static void runTest9() throws Exception {
268
265
radioBtn2 .addActionListener (actLrRB2 );
269
266
radioBtn3 .addActionListener (actLrRB3 );
270
267
271
- hitKey (robot , KeyEvent .VK_DOWN );
272
- hitKey (robot , KeyEvent .VK_DOWN );
273
- hitKey (robot , KeyEvent .VK_DOWN );
268
+ hitKey (KeyEvent .VK_DOWN );
269
+ hitKey (KeyEvent .VK_DOWN );
270
+ hitKey (KeyEvent .VK_DOWN );
274
271
275
272
String failMessage = "ActionListener not invoked when selected using arrow key." ;
276
273
if (!actRB2 ) {
@@ -288,13 +285,13 @@ private static void runTest9() throws Exception {
288
285
radioBtn3 .removeActionListener (actLrRB3 );
289
286
}
290
287
291
- private static void hitKey (Robot robot , int keycode ) {
288
+ private static void hitKey (int keycode ) {
292
289
robot .keyPress (keycode );
293
290
robot .keyRelease (keycode );
294
291
robot .waitForIdle ();
295
292
}
296
293
297
- private static void hitKey (Robot robot , int mode , int keycode ) {
294
+ private static void hitKey (int mode , int keycode ) {
298
295
robot .keyPress (mode );
299
296
robot .keyPress (keycode );
300
297
robot .keyRelease (keycode );
0 commit comments