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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/*
* Copyright (c) 2007, 2014, 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.*;
import java.awt.event.*;
import static jdk.testlibrary.Asserts.*;
public class TestFrame extends Frame implements ActionListener,
FocusListener, WindowFocusListener, WindowListener {
public Button closeButton, openButton, dummyButton;
public Flag closeClicked, openClicked, dummyClicked;
public Flag closeGained, openGained, dummyGained;
public Flag closeLost, openLost, dummyLost;
public Flag focusGained, focusLost;
public Flag activated;
public Panel topPanel;
public static int delay = 500;
public static int keyDelay = 100;
public TestFrame() {
super();
initializeGUI();
}
private void initFlags() {
closeClicked = new Flag();
openClicked = new Flag();
dummyClicked = new Flag();
closeGained = new Flag();
openGained = new Flag();
dummyGained = new Flag();
closeLost = new Flag();
openLost = new Flag();
dummyLost = new Flag();
focusGained = new Flag();
focusLost = new Flag();
activated = new Flag();
}
public void resetStatus() {
activated.reset();
focusGained.reset();
closeGained.reset();
openGained.reset();
closeClicked.reset();
openClicked.reset();
}
private void initializeGUI() {
initFlags();
this.setTitle("Frame");
this.addWindowFocusListener(this);
this.addWindowListener(this);
this.setLayout(new GridLayout(3, 1));
topPanel = new Panel();
topPanel.setFocusable(false);
this.add(topPanel);
Panel p = new Panel();
p.setLayout(new GridLayout(1, 3));
closeButton = new Button("Close");
closeButton.addActionListener(this);
closeButton.addFocusListener(this);
openButton = new Button("Open");
openButton.addActionListener(this);
openButton.addFocusListener(this);
dummyButton = new Button("Dummy");
dummyButton.addActionListener(this);
dummyButton.addFocusListener(this);
p.add(closeButton);
p.add(openButton);
p.add(dummyButton);
this.add(p);
Panel bottomPanel = new Panel();
bottomPanel.setFocusable(false);
this.add(bottomPanel);
setSize(150, 150);
}
public void doOpenAction() {}
public void doCloseAction() {}
public void doDummyAction() {}
@Override
public void actionPerformed(ActionEvent event) {
if (closeButton.equals(event.getSource())) {
closeClicked.flagTriggered();
doCloseAction();
} else if (openButton.equals(event.getSource())) {
openClicked.flagTriggered();
doOpenAction();
} else if (dummyButton.equals(event.getSource())) {
dummyClicked.flagTriggered();
doDummyAction();
}
}
@Override
public void focusGained(FocusEvent event) {
if (closeButton.equals(event.getSource())) {
closeGained.flagTriggered();
} else if (openButton.equals(event.getSource())) {
openGained.flagTriggered();
} else if (dummyButton.equals(event.getSource())) {
dummyGained.flagTriggered();
}
}
@Override
public void focusLost(FocusEvent event) {
if (closeButton.equals(event.getSource())) {
closeLost.flagTriggered();
} else if (openButton.equals(event.getSource())) {
openLost.flagTriggered();
} else if (dummyButton.equals(event.getSource())) {
dummyLost.flagTriggered();
}
}
@Override
public void windowGainedFocus(WindowEvent event) {
focusGained.flagTriggered();
}
@Override
public void windowLostFocus(WindowEvent event) {
focusLost.flagTriggered();
}
@Override
public void windowActivated(WindowEvent e) {
activated.flagTriggered();
}
@Override
public void windowClosed(WindowEvent e) {}
@Override
public void windowClosing(WindowEvent e) {
assertTrue(false, "user closed window");
}
@Override
public void windowDeactivated(WindowEvent e) {}
@Override
public void windowDeiconified(WindowEvent e) {}
@Override
public void windowIconified(WindowEvent e) {}
@Override
public void windowOpened(WindowEvent e) {}
public void clickButton(Button b, ExtendedRobot robot) {
try {
Flag.waitTillShown(b);
} catch (InterruptedException e) {}
if ((closeButton.equals(b) || openButton.equals(b) ||
dummyButton.equals(b)) && robot != null) {
robot.mouseMove((int) b.getLocationOnScreen().x + b.getSize().width / 2,
(int) b.getLocationOnScreen().y + b.getSize().height / 2);
robot.delay(delay);
robot.click();
robot.delay(delay);
}
}
public void clickOpenButton(ExtendedRobot robot) throws Exception {
clickOpenButton(robot, true, "");
}
public void clickOpenButton(ExtendedRobot robot,
boolean refState,
String message) throws Exception {
openClicked.reset();
clickButton(openButton, robot);
openClicked.waitForFlagTriggered();
String msg = "Clicking the frame Open button " + (refState ?
"did not trigger an action." :
"triggered an action when it should not.");
assertEQ(openClicked.flag(), refState, msg + " " + message);
}
public void clickCloseButton(ExtendedRobot robot) throws Exception {
clickCloseButton(robot, true, "");
}
public void clickCloseButton(ExtendedRobot robot,
boolean refState,
String message) throws Exception {
closeClicked.reset();
clickButton(closeButton, robot);
closeClicked.waitForFlagTriggered();
String msg = "Clicking the frame Close button " + (refState ?
"did not trigger an action." :
"triggered an action when it should not.");
assertEQ(closeClicked.flag(), refState, msg + " " + message);
}
public void clickDummyButton(ExtendedRobot robot) throws Exception {
clickDummyButton(robot, Flag.ATTEMPTS);
}
public void clickDummyButton(ExtendedRobot robot,
int attempts) throws Exception {
clickDummyButton(robot, attempts, true, "");
}
public void clickDummyButton(ExtendedRobot robot,
int attempts,
boolean refState,
String message) throws Exception {
dummyClicked.reset();
clickButton(dummyButton, robot);
dummyClicked.waitForFlagTriggered();
String msg = "Clicking the frame Dummy button " + (refState ?
"did not trigger an action." :
"triggered an action when it should not.");
assertEQ(dummyClicked.flag(), refState, msg + " " + message);
}
public void clickInside(ExtendedRobot robot) throws Exception {
try {
Flag.waitTillShown(topPanel);
} catch (InterruptedException e) {}
if (robot != null) {
robot.mouseMove((int) topPanel.getLocationOnScreen().x + topPanel.getSize().width / 2,
(int) topPanel.getLocationOnScreen().y + topPanel.getSize().height / 2);
robot.delay(delay);
robot.click();
robot.delay(delay);
}
}
public void transferFocusToFrame(ExtendedRobot robot,
String message,
Button b) throws Exception {
focusGained.reset();
clickInside(robot);
focusGained.waitForFlagTriggered();
assertTrue(focusGained.flag(),
"Clicking inside the Frame did not make it focused. " + message);
if (b != null) {
assertTrue(b.hasFocus(), "Button " + b.getLabel() +
" did not gain focus when Frame brought to top");
}
}
public void transferFocusToBlockedFrame(ExtendedRobot robot,
String message,
Button b) throws Exception {
focusGained.reset();
clickInside(robot);
robot.waitForIdle(delay);
assertFalse(focusGained.flag(),
"Clicking inside a blocked Frame made it focused. " + message);
robot.waitForIdle(delay);
if (b != null) {
assertFalse(b.hasFocus(), "Button " + b.getLabel() +
" present in a blocked frame gained focus");
}
}
public void checkBlockedFrame(
ExtendedRobot robot, String message) throws Exception {
dummyGained.reset();
dummyClicked.reset();
focusGained.reset();
clickButton(dummyButton, robot);
robot.waitForIdle(delay);
assertFalse(dummyClicked.flag(),
"DummyButton on blocked Frame triggered action when clicked. " + message);
assertFalse(dummyGained.flag(),
"DummyButton on blocked Frame gained focus when clicked. " + message);
assertFalse(focusGained.flag(),
"A blocked Frame gained focus when component clicked. " + message);
}
public void checkUnblockedFrame(ExtendedRobot robot,
String message) throws Exception {
dummyGained.reset();
dummyClicked.reset();
clickButton(dummyButton, robot);
dummyGained.waitForFlagTriggered();
assertTrue(dummyGained.flag(),
"DummyButton on Frame did not gain focus on clicking. " + message);
dummyClicked.waitForFlagTriggered();
assertTrue(dummyClicked.flag(),
"DummyButton on Frame did not trigger action on clicking. " + message);
closeGained.reset();
robot.type(KeyEvent.VK_TAB);
closeGained.waitForFlagTriggered();
assertTrue(closeGained.flag(),
"FAIL: Tab navigation did not happen properly on Frame. First " +
"button did not gain focus on tab press. " + message);
}
public void checkCloseButtonFocusGained(boolean refState) {
checkCloseButtonFocusGained(refState, Flag.ATTEMPTS);
}
public void checkCloseButtonFocusGained(boolean refState, int attempts) {
try {
closeGained.waitForFlagTriggered(attempts);
} catch (InterruptedException e) {}
String msg = "frame Close button ";
msg += (refState ? "did not gain focus" :
"gained focus when it should not");
assertTrue(closeGained.flag() == refState, msg);
}
public void checkOpenButtonFocusGained(boolean refState) {
checkOpenButtonFocusGained(refState, Flag.ATTEMPTS);
}
public void checkOpenButtonFocusGained(boolean refState, int attempts) {
try {
openGained.waitForFlagTriggered(attempts);
} catch (InterruptedException e) {}
String msg = "frame Open button ";
msg += (refState ? "did not gain focus" :
"gained focus when it should not");
assertTrue(openGained.flag() == refState, msg);
}
public void checkOpenButtonFocusLost(boolean refState) {
checkOpenButtonFocusLost(refState, Flag.ATTEMPTS);
}
public void checkOpenButtonFocusLost(boolean refState, int attempts) {
try {
openLost.waitForFlagTriggered(attempts);
} catch (InterruptedException e) {}
String msg = "frame Open button ";
msg += (refState ? "did not lose focus" :
"lost focus when it should not");
assertTrue(openLost.flag()== refState, msg);
}
}
|