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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/*
* Copyright (c) 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.
*/
/*
* @test
* @bug 8262981
* @key headful
* @summary Test JSlider Accessibility doAccessibleAction(int)
* @run main JSliderAccessibleAction
*/
import java.awt.AWTException;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.event.InputEvent;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import javax.accessibility.AccessibleAction;
import javax.accessibility.AccessibleContext;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSlider;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import static java.util.stream.Collectors.toList;
public class JSliderAccessibleAction {
private static JFrame jFrame;
private static JSlider jSlider;
private static JButton decrementBtn;
private static JButton incrementBtn;
private static JButton invalidDecrementBtn;
private static JButton invalidIncrementBtn;
private static final int INVALID_DECREMENT = 2;
private static final int INVALID_INCREMENT = -1;
private static final int VALID_DECREMENT = 1;
private static final int VALID_INCREMENT = 0;
private static volatile int currentJSliderValue;
private static volatile int jSliderInitialValue;
private static volatile CountDownLatch invalidDecrementCountDownLatch;
private static volatile CountDownLatch invalidIncrementCountDownLatch;
private static volatile CountDownLatch validDecrementCountDownLatch;
private static volatile CountDownLatch validIncrementCountDownLatch;
private static void createTestUI() {
jFrame = new JFrame("Test JSlider Accessible Action");
jSlider = new JSlider();
AccessibleContext ac = jSlider.getAccessibleContext();
ac.setAccessibleName("JSlider Accessible Test");
AccessibleContext accessibleContext = jSlider.getAccessibleContext();
AccessibleAction accessibleAction =
accessibleContext.getAccessibleAction();
if (accessibleAction == null) {
throw new RuntimeException("JSlider getAccessibleAction() should " +
"not be null");
}
if (accessibleAction.getAccessibleActionCount() != 2) {
throw new RuntimeException("JSlider AccessibleAction supports " +
"only two actions ( AccessibleAction.DECREMENT & " +
"AccessibleAction.INCREMENT ) but got " + accessibleAction.getAccessibleActionCount());
}
JLabel jSliderValueLbl = new JLabel("JSlider value : " + jSlider.getValue() + "%",
JLabel.CENTER);
Container container = jFrame.getContentPane();
container.add(jSliderValueLbl, BorderLayout.NORTH);
container.add(jSlider, BorderLayout.CENTER);
jSlider.addChangeListener((changeEvent) -> {
currentJSliderValue = jSlider.getValue();
jSliderValueLbl.setText("JSlider value : " + currentJSliderValue + "%");
System.out.println("changed : " + changeEvent);
});
invalidDecrementBtn = new JButton("Invalid Decrement");
invalidDecrementBtn.addActionListener((actionEvent) -> {
invalidDecrementCountDownLatch.countDown();
accessibleAction.doAccessibleAction(INVALID_DECREMENT);
});
invalidIncrementBtn = new JButton("Invalid Increment");
invalidIncrementBtn.addActionListener((actionEvent) -> {
invalidIncrementCountDownLatch.countDown();
accessibleAction.doAccessibleAction(INVALID_INCREMENT);
});
decrementBtn = new JButton("Decrement");
decrementBtn.addActionListener((actionEvent) -> {
validDecrementCountDownLatch.countDown();
accessibleAction.doAccessibleAction(VALID_DECREMENT);
});
incrementBtn = new JButton("Increment");
incrementBtn.addActionListener((actionEvent) -> {
accessibleAction.doAccessibleAction(VALID_INCREMENT);
validIncrementCountDownLatch.countDown();
});
JPanel buttonPanel = new JPanel(new GridLayout(4, 1));
buttonPanel.add(invalidDecrementBtn);
buttonPanel.add(invalidIncrementBtn);
buttonPanel.add(decrementBtn);
buttonPanel.add(incrementBtn);
container.add(buttonPanel, BorderLayout.SOUTH);
jFrame.pack();
jFrame.setLocationRelativeTo(null);
jFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
jFrame.setVisible(true);
}
private static boolean setLookAndFeel(String lafName) {
try {
UIManager.setLookAndFeel(lafName);
} catch (UnsupportedLookAndFeelException unsupportedLookAndFeelException) {
System.out.println("Ignoring Unsupported laf : " + lafName);
return false;
} catch (ClassNotFoundException | InstantiationException
| IllegalAccessException e) {
throw new RuntimeException(e);
}
return true;
}
public static void testJSliderAccessibleAction() throws AWTException,
InterruptedException, InvocationTargetException {
Robot robot = new Robot();
robot.setAutoDelay(300);
robot.waitForIdle();
List<String> installedLookAndFeels =
Arrays.stream(UIManager.getInstalledLookAndFeels())
.map(UIManager.LookAndFeelInfo::getClassName).collect(toList());
for (String lookAndFeel : installedLookAndFeels) {
try {
invalidDecrementCountDownLatch = new CountDownLatch(1);
invalidIncrementCountDownLatch = new CountDownLatch(1);
validDecrementCountDownLatch = new CountDownLatch(1);
validIncrementCountDownLatch = new CountDownLatch(1);
currentJSliderValue = 0;
jSliderInitialValue = 0;
System.out.println("Testing JSliderAccessibleAction in " + lookAndFeel +
" look and feel");
AtomicBoolean lafSetSuccess = new AtomicBoolean(false);
SwingUtilities.invokeAndWait(() -> {
lafSetSuccess.set(setLookAndFeel(lookAndFeel));
if (lafSetSuccess.get()) {
createTestUI();
}
});
if (!lafSetSuccess.get()) continue;
robot.waitForIdle();
SwingUtilities.invokeAndWait(() -> {
jSliderInitialValue = jSlider.getValue();
currentJSliderValue = jSlider.getValue();
});
robot.waitForIdle();
mouseAction(robot, invalidDecrementBtn);
if (!invalidDecrementCountDownLatch.await(30,
TimeUnit.SECONDS)) {
throw new RuntimeException("Failed to perform action on Invalid " +
"Decrement button");
}
if (jSliderInitialValue != currentJSliderValue ) {
throw new RuntimeException("Expected that JSlider value is not " +
"changed when invalid decrement value 2 is passed to " +
"doAccessibleAction(2) jSliderInitialValue = "
+ jSliderInitialValue + " currentJSliderValue = " + currentJSliderValue);
}
mouseAction(robot, invalidIncrementBtn);
if (!invalidIncrementCountDownLatch.await(30,
TimeUnit.SECONDS)) {
throw new RuntimeException("Failed to perform action on Invalid " +
"Increment button");
}
if (jSliderInitialValue != currentJSliderValue) {
throw new RuntimeException("Expected that JSlider value is not " +
"changed when invalid decrement value -1 is passed to " +
"doAccessibleAction(-1) jSliderInitialValue = "
+ jSliderInitialValue + " currentJSliderValue = " + currentJSliderValue);
}
// JSlider value is decremented
mouseAction(robot, decrementBtn);
if (!validDecrementCountDownLatch.await(30, TimeUnit.SECONDS)) {
throw new RuntimeException("Failed to perform action on valid " +
"decrement button");
}
if (jSliderInitialValue == currentJSliderValue ) {
throw new RuntimeException("Expected that JSlider value is " +
"decremented when value 1 is passed to " +
"doAccessibleAction(1) jSliderInitialValue = "
+ jSliderInitialValue + " currentJSliderValue = " + currentJSliderValue);
}
// JSlider value is incremented
mouseAction(robot, incrementBtn);
if (!validIncrementCountDownLatch.await(30, TimeUnit.SECONDS)) {
throw new RuntimeException("Failed to perform action on valid " +
"Increment button");
}
if (jSliderInitialValue != currentJSliderValue ) {
throw new RuntimeException("Expected that JSlider value is " +
"incremented when value 0 is passed to " +
"doAccessibleAction(0) jSliderInitialValue = "
+ jSliderInitialValue + " currentJSliderValue = " + currentJSliderValue);
}
} finally {
SwingUtilities.invokeAndWait(() -> {
if (jFrame != null) {
jFrame.dispose();
}
});
}
}
}
public static void mouseAction(Robot robot, JButton button) throws InterruptedException,
InvocationTargetException {
robot.waitForIdle();
Point[] point = new Point[1];
Rectangle[] rect = new Rectangle[1];
SwingUtilities.invokeAndWait(() -> {
point[0] = button.getLocationOnScreen();
rect[0] = button.getBounds();
});
robot.mouseMove(point[0].x + rect[0].width / 2,
point[0].y + rect[0].height / 2);
robot.waitForIdle();
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
robot.waitForIdle();
}
public static void main(String[] args) throws InterruptedException, InvocationTargetException, AWTException {
testJSliderAccessibleAction();
}
}
|