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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*
* Copyright (c) 2005, 2023, 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 6239944
@summary PIT: Right clicking on the scrollbar of the choice's dropdown disposes the drop-down, on XToolkit
@key headful
@requires (os.family == "linux" | os.family == "windows")
*/
import java.awt.Choice;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Frame;
import java.awt.Panel;
import java.awt.Point;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
public class ChoiceHandleMouseEvent_2 {
static Robot robot;
static volatile Choice choice1;
static volatile Frame frame;
static boolean isWindows;
public static void main(String[] args) throws Exception {
String os = System.getProperty("os.name").toLowerCase();
if (!os.startsWith("windows") && !os.startsWith("linux")) {
System.out.println("This test is only for Windows and Linux");
return;
}
isWindows = os.startsWith("windows");
try {
EventQueue.invokeAndWait(() -> createUI());
runTest();
} finally {
if (frame != null) {
EventQueue.invokeAndWait(() -> frame.dispose());
}
}
}
static void createUI() {
choice1 = new Choice();
for (int i = 1; i<50; i++) {
choice1.add("item-0"+i);
}
choice1.setForeground(Color.red);
choice1.setBackground(Color.red);
frame = new Frame("ChoiceHandleMouseEvent_2");
frame.setBackground(Color.green);
Panel panel = new Panel();
panel.setBackground(Color.green);
panel.add(choice1);
frame.add(panel);
frame.setSize(300,300);
frame.setLocationRelativeTo(null);
frame.validate();
frame.setVisible(true);
}
static void runTest() throws Exception {
robot = new Robot();
robot.setAutoWaitForIdle(true);
robot.setAutoDelay(50);
robot.delay(100);
/*
* Stage 1. Choice should be closed if user dragged mouse
* outside of Choice after opening it.
* Should only pass on Windows or XAWT.
* Choice on motif might be opened only by click on small box
* in the right side.
*/
testDragMouseButtonOut(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("Passed Stage 1: Choice should be closed if mouse dragged out.");
/*
* Stage 2: Choice should be closed if LeftMouse drag finished
* on Scrollbar. This involeves only one
* MousePress and one MouseRelease event
*/
// first parameter is for opening choice. The second is for
// selecting item inside the menu
testDragMouseButtonOnSB(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("Passed Stage 2: Choice should be closed if " +
"LeftMouse drag finished on Scrollbar.");
/*
* Stage 3: Pressing RIGHT/MIDDLE MouseButton on Scrollbar
* shouldn't close Choice's pop-down menu.
* Pressing LEFT MouseButton shouldn't close it too. It should
* scroll it.
* This is an unstable test because we doesn't have an API to
* get Scrollbar from Choice. There is a possibility not to
* hit the scrollbar that couldn't been predicted.
*/
// first parameter is for opening choice. The second is for
// selecting item inside the menu
testPressOnScrollbar(InputEvent.BUTTON1_DOWN_MASK, InputEvent.BUTTON2_DOWN_MASK);
testPressOnScrollbar(InputEvent.BUTTON1_DOWN_MASK, InputEvent.BUTTON3_DOWN_MASK);
System.out.println("Passed Stage 3: Choice correctly reacts on mouse click on its Scrollbar.");
/*
* Stage 4: Choice should close its popdown menu if user opened a Choice then
* releases Mouse and then presses Mouse again and dragged it on Choice's Scrollbar
* This involves only one MousePress and one MouseRelease
* event, so it differs from Stage 2.
*/
// first parameter is for opening choice. The second is for
// selecting item inside the menu or scrollbar
testDragMouseOnScrollbar(InputEvent.BUTTON1_DOWN_MASK, InputEvent.BUTTON1_DOWN_MASK);
System.out.println("Passed Stage 4: Choice should close if user opened a " +
"Choice then releases Mouse and then presses Mouse again " +
"and drag it on Choice's Scrollbar .");
}
//Stage 4
static void testDragMouseOnScrollbar(int openButton, int button) {
Point pt = choice1.getLocationOnScreen();
robot.mouseMove(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2);
robot.delay(100);
robot.mousePress(openButton);
robot.mouseRelease(openButton);
robot.delay(200);
robot.mouseMove(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2);
robot.mousePress(button);
/*X-coordinate should be closer to right edge of Choice, so
divider 4 is used. */
dragMouse(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2,
pt.x + choice1.getWidth() - choice1.getHeight()/4, pt.y + 5*choice1.getHeight());
robot.mouseRelease(button);
robot.delay(200);
int px = pt.x + choice1.getWidth()/2;
int py = pt.y + 3 * choice1.getHeight();
Color color = robot.getPixelColor(px, py);
//should take a color on the point on the choice's menu
System.out.println("Got color " + color + " at (" + px + "," + py + ")");
if (color.equals(Color.red)) {
throw new RuntimeException(
"Test failed. Choice didn't close after drag without firstPress on ScrollBar " + button);
} else {
System.out.println("Stage 4 passed."+ button);
}
//close opened choice
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
robot.delay(200);
}
//stage 3
static void testPressOnScrollbar(int openButton, int button) {
if (!isWindows) {
return; // Windows-only tests.
}
Point pt = choice1.getLocationOnScreen();
robot.mouseMove(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2);
robot.delay(100);
robot.mousePress(openButton);
robot.mouseRelease(openButton);
robot.delay(200);
/*X-coordinate should be closer to right edge of Choice, so
divide by 4 is used. */
int px = pt.x + choice1.getWidth() - choice1.getHeight()/4;
int py = pt.y + 5*choice1.getHeight();
robot.mouseMove(px, py);
robot.delay(200);
robot.mousePress(button);
robot.mouseRelease(button);
robot.delay(200);
System.out.println("x= "+px);
System.out.println("y= "+py);
/*
This is for Windows only.
On XP theme choice become closed on RightMouseClick over a scrollbar.
A system menu is opened after that. On Classic theme Choice doesn't react on it at all.
*/
boolean isXPTheme = false;
Object themeObject = Toolkit.getDefaultToolkit().getDesktopProperty("win.xpstyle.themeActive");
// it returns null when Classic theme is active but we should
// check it's boolean value anyway if event it's not null.
if (themeObject != null) {
isXPTheme = ((Boolean)themeObject).booleanValue();
}
System.out.println("isXPTheme="+isXPTheme);
px = pt.x + choice1.getWidth()/2;
py = pt.y + 3 * choice1.getHeight();
Color color = robot.getPixelColor(px, py);
//we should take a color on the point on the choice's menu
System.out.println("Got color " + color + " at (" + px + "," + py + ")");
System.out.println("RED="+Color.red);
System.out.println("GREEN="+Color.green);
if (isXPTheme && button == InputEvent.BUTTON3_DOWN_MASK) {
if (!color.equals(Color.green)) {
throw new RuntimeException("Stage 3 failed(XP theme). " +
"Choice wasn't closed with pressing button on its Scrollbar" + openButton +":"+button);
} else {
System.out.println("Stage 3 passed(XP theme)." + openButton +":"+button);
}
} else {
if (!color.equals(Color.red)) {
throw new RuntimeException("Stage 3 failed(classic theme). " +
"Choice is being closed with pressing button on its Scrollbar" + openButton +":"+button);
} else {
System.out.println("Stage 3 passed(classic theme)." + openButton +":"+button);
}
}
//close opened choice
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
robot.delay(200);
}
// Stage 1
static void testDragMouseButtonOut(int button) {
Point pt = choice1.getLocationOnScreen();
robot.mouseMove(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2);
robot.mousePress(button);
dragMouse(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2,
pt.x + choice1.getWidth()*2, pt.y + choice1.getHeight()/2);
robot.mouseRelease(button);
robot.delay(200);
int px = pt.x + choice1.getWidth()/2;
int py = pt.y + 3 * choice1.getHeight();
Color color = robot.getPixelColor(px, py);
//should take a color on the point on the choice's menu
System.out.println("Got color " + color + " at (" + px + "," + py + ")");
System.out.println("RED="+Color.red);
// fix 6268989: On Windows Choice shouldn't been closed if
// Mouse dragged outside of Choice after one mouse press.
if (isWindows) {
if (color.equals(Color.red)) {
System.out.println("Stage 1 passed. On Windows Choice shouldn't be " +
"closed if Mouse dragged outside of Choice after one mouse press "+button);
} else {
throw new RuntimeException("Test failed. Choice on Windows shouldn't be " +
"closed after drag outside of Choice after one mouse press "+button);
}
} else {
if (color.equals(Color.red)) {
throw new RuntimeException("Test failed. Choice didn't close " +
"after drag outside of Choice "+button);
} else {
System.out.println("Stage 1 passed."+ button);
}
}
//close opened choice
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
robot.delay(200);
}
//stage 2
static void testDragMouseButtonOnSB(int button) {
Point pt = choice1.getLocationOnScreen();
robot.mouseMove(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2);
robot.mousePress(button);
/*X-coordinate should be closer to right edge of Choice, so
divider 4 is used. */
dragMouse(pt.x + choice1.getWidth()/2, pt.y + choice1.getHeight()/2,
pt.x + choice1.getWidth() - choice1.getHeight()/4, pt.y + 5*choice1.getHeight());
robot.mouseRelease(button);
robot.delay(200);
int px = pt.x + choice1.getWidth()/2;
int py = pt.y + 3 * choice1.getHeight();
Color color = robot.getPixelColor(px, py);
//should take a color on the point on the choice's menu
System.out.println("Got color " + color + " at (" + px + "," + py + ")");
if (isWindows) {
if (color.equals(Color.red)) {
System.out.println("Stage 2 passed. On Windows Choice shouldn't be " +
" closed if Mouse dragged on its scrollbar "+button);
} else {
throw new RuntimeException("Test failed. On Windows Choice shouldn't be " +
" closed if Mouse dragged on its scrollbar "+button);
}
} else {
if (color.equals(Color.red)) {
throw new RuntimeException("Test failed. Choice didn't close after drag on ScrollBar "+button);
} else {
System.out.println("Stage 2 passed."+ button);
}
}
//close opened choice
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
robot.delay(200);
}
static void dragMouse(int x0, int y0, int x1, int y1) {
int curX = x0;
int curY = y0;
int dx = x0 < x1 ? 1 : -1;
int dy = y0 < y1 ? 1 : -1;
while (curX != x1) {
curX += dx;
robot.mouseMove(curX, curY);
}
while (curY != y1) {
curY += dy;
robot.mouseMove(curX, curY);
}
}
}
|