/*
* Copyright ( c ) 2007 , 2018 , 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.test.lib.Asserts.*;
public class TestWindow extends Window 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 static int delay = 500 ;
public static int keyDelay = 100 ;
public TestWindow(Frame owner) {
super (owner);
initializeGUI();
}
public TestWindow(Window window) {
super (window);
initializeGUI();
}
public void resetStatus() {
activated.reset();
focusGained.reset();
closeGained.reset();
openGained.reset();
closeClicked.reset();
openClicked.reset();
}
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();
}
private void initializeGUI() {
initFlags();
this .addWindowFocusListener(this );
this .addWindowListener(this );
this .setLayout(new GridLayout(3 , 1 ));
Panel topPanel;
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) {
System.err.println("User closed window!" );
System.exit(1 );
}
@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 window 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 window 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, true , "" );
}
public void clickDummyButton(ExtendedRobot robot,
boolean refState,
String message) throws Exception {
dummyClicked.reset();
clickButton(dummyButton, robot);
dummyClicked.waitForFlagTriggered();
String msg = "Clicking the window Dummy button " + (refState ?
"did not trigger an action." :
"triggered an action when it should not." );
assertEQ(dummyClicked.flag(), refState, msg + " " + message);
}
public void checkBlockedWindow(ExtendedRobot robot,
String message) throws Exception {
dummyGained.reset();
dummyClicked.reset();
focusGained.reset();
clickButton(dummyButton, robot);
robot.waitForIdle(delay);
assertFalse(dummyClicked.flag(),
"DummyButton on blocked Window triggered action when clicked. " + message);
assertFalse(dummyGained.flag(),
"DummyButton on blocked Window gained focus when clicked. " + message);
assertFalse(focusGained.flag(),
"A blocked window gained focus when component clicked. " + message);
}
public void checkUnblockedWindowWithBlockedParent(
ExtendedRobot robot, String message) throws Exception {
dummyGained.reset();
dummyClicked.reset();
clickButton(dummyButton, robot);
dummyClicked.waitForFlagTriggered();
assertTrue(dummyClicked.flag(),
"DummyButton on Window did not trigger action when clicked. " + message);
assertFalse(dummyGained.flag(),
"DummyButton on Window gained focus " +
"when its parent is non-focusable. " + message);
}
public void checkUnblockedWindow(ExtendedRobot robot,
String message) throws Exception {
dummyGained.reset();
dummyClicked.reset();
clickButton(dummyButton, robot);
dummyGained.waitForFlagTriggered();
assertTrue(dummyGained.flag(),
"DummyButton on Window did not gain focus on clicking. " + message);
assertTrue(dummyClicked.flag(),
"DummyButton on Window did not trigger action on clicking. " + message);
closeGained.reset();
robot.type(KeyEvent.VK_TAB);
closeGained.waitForFlagTriggered();
assertTrue(closeGained.flag(),
"Tab navigation did not happen properly on Window. 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 = "window 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 = "window 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 = "window Open button " ;
msg += (refState ? "did not lose focus" :
"lost focus when it should not" );
assertTrue(openLost.flag()== refState, msg);
}
}
Messung V0.5 in Prozent C=95 H=89 G=91
¤ Dauer der Verarbeitung: 0.6 Sekunden
¤
*© Formatika GbR, Deutschland