82ed2a5fc0
Reviewed-by: serb
187 lines
5.1 KiB
Java
187 lines
5.1 KiB
Java
/*
|
|
* 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 static jdk.test.lib.Asserts.*;
|
|
|
|
// DWF: Dialog -> Window -> Frame
|
|
public class FocusTransferDWFTest {
|
|
|
|
class CustomDialog extends TestDialog {
|
|
|
|
public CustomDialog(Frame f) {
|
|
super(f);
|
|
}
|
|
|
|
@Override
|
|
public void doOpenAction() {
|
|
if (window != null) {
|
|
window.setVisible(true);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void doCloseAction() {
|
|
this.dispose();
|
|
}
|
|
}
|
|
|
|
class CustomFrame extends TestFrame {
|
|
|
|
@Override
|
|
public void doCloseAction() {
|
|
this.dispose();
|
|
}
|
|
}
|
|
|
|
class CustomWindow extends TestWindow {
|
|
|
|
public CustomWindow(Dialog d) {
|
|
super(d);
|
|
}
|
|
|
|
@Override
|
|
public void doOpenAction() {
|
|
if (frame != null) {
|
|
frame.setVisible(true);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void doCloseAction() {
|
|
this.dispose();
|
|
}
|
|
}
|
|
|
|
private TestDialog dialog;
|
|
private TestFrame frame;
|
|
private TestWindow window;
|
|
|
|
private static final int delay = 1000;
|
|
|
|
private final ExtendedRobot robot;
|
|
|
|
private Dialog.ModalityType modalityType;
|
|
|
|
FocusTransferDWFTest(Dialog.ModalityType modType) throws Exception {
|
|
|
|
modalityType = modType;
|
|
|
|
robot = new ExtendedRobot();
|
|
EventQueue.invokeLater(this::createGUI);
|
|
}
|
|
|
|
private void createGUI() {
|
|
|
|
frame = new CustomFrame();
|
|
frame.setLocation(50, 50);
|
|
|
|
dialog = new CustomDialog((Frame) null);
|
|
if (modalityType == null) {
|
|
modalityType = Dialog.ModalityType.MODELESS;
|
|
} else {
|
|
dialog.setModalityType(modalityType);
|
|
}
|
|
dialog.setLocation(250, 50);
|
|
|
|
window = new CustomWindow(dialog);
|
|
window.setLocation(450, 50);
|
|
dialog.setVisible(true);
|
|
}
|
|
|
|
private void closeAll() {
|
|
if (dialog != null) { dialog.dispose(); }
|
|
if ( frame != null) { frame.dispose(); }
|
|
if (window != null) { window.dispose(); }
|
|
}
|
|
|
|
public void doTest() throws Exception {
|
|
|
|
robot.waitForIdle(delay);
|
|
|
|
try {
|
|
|
|
dialog.checkCloseButtonFocusGained(true);
|
|
|
|
dialog.clickOpenButton(robot);
|
|
robot.waitForIdle(delay);
|
|
|
|
window.checkCloseButtonFocusGained(true);
|
|
dialog.checkOpenButtonFocusLost(true);
|
|
|
|
window.clickOpenButton(robot);
|
|
robot.waitForIdle(delay);
|
|
|
|
switch (modalityType) {
|
|
case APPLICATION_MODAL:
|
|
frame.checkCloseButtonFocusGained(false, 10);
|
|
window.checkOpenButtonFocusLost(false, 10);
|
|
|
|
frame.closeGained.reset();
|
|
|
|
dialog.clickCloseButton(robot);
|
|
robot.waitForIdle(delay);
|
|
|
|
frame.checkCloseButtonFocusGained(true);
|
|
assertFalse(window.isVisible(), "window shouldn't be visible");
|
|
|
|
break;
|
|
|
|
case DOCUMENT_MODAL:
|
|
case MODELESS:
|
|
frame.checkCloseButtonFocusGained(true);
|
|
window.checkOpenButtonFocusLost(true);
|
|
|
|
window.openGained.reset();
|
|
|
|
frame.clickCloseButton(robot);
|
|
robot.waitForIdle(delay);
|
|
|
|
window.checkOpenButtonFocusGained(true);
|
|
|
|
dialog.openGained.reset();
|
|
window.clickCloseButton(robot);
|
|
robot.waitForIdle(delay);
|
|
|
|
dialog.checkOpenButtonFocusGained(true);
|
|
|
|
break;
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
// make screenshot before exit
|
|
Rectangle rect = new Rectangle(0, 0, 650, 250);
|
|
java.awt.image.BufferedImage img = robot.createScreenCapture(rect);
|
|
javax.imageio.ImageIO.write(img, "jpg", new java.io.File("NOK.jpg"));
|
|
|
|
throw e;
|
|
}
|
|
|
|
robot.waitForIdle(delay);
|
|
|
|
EventQueue.invokeAndWait(this::closeAll);
|
|
}
|
|
}
|