jdk-24/test/jdk/java/awt/Window/ResizeTest/ResizeTest.java
Jayathirth D V c8e70df37e 8341162: Open source some of the AWT window test
Reviewed-by: aivanov
2024-10-04 18:08:37 +00:00

81 lines
2.7 KiB
Java

/*
* Copyright (c) 1999, 2024, 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 4225955
* @summary Tests that focus lost is delivered to a lightweight component
* in a disposed window
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual ResizeTest
*/
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Dialog;
import java.awt.Frame;
public class ResizeTest
{
public static void main(String[] args) throws Exception {
String INSTRUCTIONS = """
1) Push button A to create modal dialog 2.
2) Resize dialog 2, then click button B to hide it.
3) Push button A again. Dialog B should be packed to its original
size.
4) Push button B again to hide, and A to reshow.
Dialog B should still be the same size, then test is passed,
otherwise failed.
5) Push button B to hide the modal dialog and then select pass/fail.
""";
PassFailJFrame.builder()
.title("Test Instructions")
.instructions(INSTRUCTIONS)
.columns(40)
.testUI(ResizeTest::createUI)
.build()
.awaitAndCheck();
}
private static Frame createUI() {
Frame f = new Frame("1");
Dialog d = new Dialog(f, "2", true);
d.setLocationRelativeTo(null);
Button b2 = new Button("B");
b2.addActionListener(e -> d.setVisible(false));
d.setLayout(new BorderLayout());
d.add(b2, BorderLayout.CENTER);
Button b = new Button("A");
f.add(b, BorderLayout.CENTER);
b.addActionListener(e -> {
d.pack();
d.setVisible(true);
});
f.pack();
return f;
}
}