1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*
* Copyright (c) 2002, 2022, 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.BorderLayout;
import java.awt.Point;
import java.awt.Robot;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JSplitPane;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UIManager.LookAndFeelInfo;
import javax.swing.UnsupportedLookAndFeelException;
import static javax.swing.UIManager.getInstalledLookAndFeels;
/*
* @test
* @key headful
* @bug 4164779
* @summary This test confirms that JSplitPane keyboard navigation supports F6 and Ctrl+Tab.
* @run main JSplitPaneKeyboardNavigationTest
*/
public class JSplitPaneKeyboardNavigationTest {
private static final StringBuffer failedVerifiers = new StringBuffer();
private static JPanel panel;
private static JButton leftButton;
private static JButton rightButton1;
private static JButton rightButton2;
private static JButton topButton;
private static JButton bottomButton;
private static Robot robot;
private static JFrame frame;
public static void main(String[] s) throws Exception {
robot = new Robot();
robot.setAutoWaitForIdle(true);
robot.setAutoDelay(200);
List<String> lafs = Arrays.stream(getInstalledLookAndFeels())
.map(LookAndFeelInfo::getClassName)
.collect(Collectors.toList());
for (final String laf : lafs) {
try {
AtomicBoolean lafSetSuccess = new AtomicBoolean(false);
SwingUtilities.invokeAndWait(() -> {
lafSetSuccess.set(setLookAndFeel(laf));
if (lafSetSuccess.get()) {
createUI();
}
});
if (!lafSetSuccess.get()) {
continue;
}
robot.waitForIdle();
// Press Right button 1 and move focus to it.
pressButton(rightButton1);
hitKeys(KeyEvent.VK_F6);
// Verifier1 - Verifies that, F6 transfers focus to the right/bottom side of the splitpane
if (isFocusOwner(rightButton2)) {
System.out.println("Verifier 1 passed");
} else {
failedVerifiers.append("1,");
System.out.println("Verifier 1 failed, rightButton2 is not focus owner," +
"F6 doesn't transfer focus to the right/bottom side of the splitpane");
}
// Press Right button 2 and move focus to it.
pressButton(rightButton2);
hitKeys(KeyEvent.VK_F6);
// Verifier2 - Verifies that, F6 transfers focus to the left side of the parent splitpane,
// if the right/bottom side of splitpane already has focus, and it is contained within another splitpane
if (isFocusOwner(leftButton)) {
System.out.println("Verifier 2 passed");
} else {
failedVerifiers.append("2,");
System.out.println("Verifier 2 failed, leftButton is not focus owner, " +
"F6 doesn't transfer focus to the left side of the splitpane");
}
// Press Left button and move focus to it.
pressButton(leftButton);
hitKeys(KeyEvent.VK_CONTROL, KeyEvent.VK_TAB);
// Verifier3 - Verifies that, CTRL-TAB navigates forward outside the JSplitPane
if (isFocusOwner(bottomButton)) {
System.out.println("Verifier 3 passed");
} else {
failedVerifiers.append("3,");
System.out.println("Verifier 3 failed, bottomButton is not focus owner, " +
"CTRL-TAB doesn't navigate forward outside the JSplitPane");
}
// Press Left button and move focus to it.
pressButton(leftButton);
hitKeys(KeyEvent.VK_CONTROL, KeyEvent.VK_SHIFT, KeyEvent.VK_TAB);
// Verifier4 - Verifies that, CTRL-SHIFT-TAB navigates backward outside the JSplitPane
if (isFocusOwner(topButton)) {
System.out.println("Verifier 4 passed");
} else {
failedVerifiers.append("4");
System.out.println("Verifier 4 failed, topButton is not focus owner, " +
"CTRL-SHIFT-TAB doesn't navigate backward outside the JSplitPane");
}
if (failedVerifiers.toString().isEmpty()) {
System.out.println("Test passed, All verifiers succeeded for " + laf);
} else {
throw new RuntimeException("Test failed, verifiers " + failedVerifiers.toString() + " failed for " + laf);
}
} finally {
SwingUtilities.invokeAndWait(JSplitPaneKeyboardNavigationTest::disposeFrame);
}
}
}
private static boolean isFocusOwner(JButton button) throws Exception {
final AtomicBoolean isFocusOwner = new AtomicBoolean(false);
SwingUtilities.invokeAndWait(() -> {
isFocusOwner.set(button.isFocusOwner());
});
return isFocusOwner.get();
}
private static void pressButton(JButton button) throws Exception {
final AtomicReference<Point> loc = new AtomicReference<>();
SwingUtilities.invokeAndWait(() -> {
loc.set(button.getLocationOnScreen());
});
final Point buttonLoc = loc.get();
robot.mouseMove(buttonLoc.x + 8, buttonLoc.y + 8);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
}
public static void createUI() {
frame = new JFrame();
panel = new JPanel();
panel.setLayout(new BorderLayout());
leftButton = new JButton("Left Button");
rightButton1 = new JButton("Right Button 1");
rightButton2 = new JButton("Right Button 2");
topButton = new JButton("Top Button");
bottomButton = new JButton("Bottom Button");
panel.add(topButton, BorderLayout.NORTH);
panel.add(bottomButton, BorderLayout.SOUTH);
final JSplitPane splitPane2 = new JSplitPane(JSplitPane.VERTICAL_SPLIT, true, rightButton1, rightButton2);
final JSplitPane splitPane1 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true, leftButton, splitPane2);
panel.add(splitPane1, BorderLayout.CENTER);
frame.setContentPane(panel);
frame.setSize(200, 200);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.pack();
frame.setAlwaysOnTop(true);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static void hitKeys(int... keys) {
for (int key : keys) {
robot.keyPress(key);
}
for (int i = keys.length - 1; i >= 0; i--) {
robot.keyRelease(keys[i]);
}
}
private static boolean setLookAndFeel(String lafName) {
try {
UIManager.setLookAndFeel(lafName);
} catch (UnsupportedLookAndFeelException ignored) {
System.out.println("Ignoring Unsupported L&F: " + lafName);
return false;
} catch (ClassNotFoundException | InstantiationException
| IllegalAccessException e) {
throw new RuntimeException(e);
}
return true;
}
private static void disposeFrame() {
if (frame != null) {
frame.dispose();
frame = null;
}
}
}
|