Skip to content

Commit 4e703b2

Browse files
author
Alisen Chung
committedOct 16, 2024
8340140: Open some dialog awt tests 3
Reviewed-by: prr, honkar
1 parent b4ab290 commit 4e703b2

File tree

4 files changed

+346
-0
lines changed

4 files changed

+346
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
/*
2+
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
import java.awt.Button;
25+
import java.awt.Dialog;
26+
import java.awt.Frame;
27+
import java.awt.event.ActionEvent;
28+
import java.awt.event.ActionListener;
29+
import java.awt.event.WindowEvent;
30+
import java.awt.event.WindowAdapter;
31+
32+
/*
33+
* @test
34+
* @bug 4336913
35+
* @summary On Windows, disable parent window controls while modal dialog is being created.
36+
* @library /java/awt/regtesthelpers
37+
* @build PassFailJFrame
38+
* @run main/manual ClosingParentTest
39+
*/
40+
41+
public class ClosingParentTest {
42+
43+
static String instructions = """
44+
When the test starts, you will see a Frame with a Button
45+
titled 'Show modal dialog with delay'. Press this button
46+
and before the modal Dialog is shown, try to close the
47+
Frame using X button or system menu for windowing systems
48+
which don't provide X button in Window decorations. The
49+
delay before Dialog showing is 5 seconds.
50+
If in test output you see message about WINDOW_CLOSING
51+
being dispatched, then test fails. If no such message
52+
is printed, the test passes.
53+
""";
54+
55+
public static void main(String[] args) throws Exception {
56+
PassFailJFrame.builder()
57+
.title("ClosingParentTest")
58+
.instructions(instructions)
59+
.testTimeOut(5)
60+
.rows(10)
61+
.columns(35)
62+
.testUI(ClosingParentTest::createGUI)
63+
.build()
64+
.awaitAndCheck();
65+
}
66+
67+
public static Frame createGUI() {
68+
Frame frame = new Frame("Main Frame");
69+
Dialog dialog = new Dialog(frame, true);
70+
71+
Button button = new Button("Show modal dialog with delay");
72+
button.addActionListener(new ActionListener() {
73+
public void actionPerformed(ActionEvent e) {
74+
try {
75+
Thread.currentThread().sleep(5000);
76+
} catch (InterruptedException x) {
77+
x.printStackTrace();
78+
}
79+
80+
dialog.setVisible(true);
81+
}
82+
});
83+
frame.add(button);
84+
frame.pack();
85+
frame.addWindowListener(new WindowAdapter() {
86+
public void windowClosing(WindowEvent e) {
87+
System.out.println("WINDOW_CLOSING dispatched on the frame");
88+
}
89+
});
90+
91+
dialog.setSize(100, 100);
92+
dialog.addWindowListener(new WindowAdapter() {
93+
public void windowClosing(WindowEvent e) {
94+
dialog.dispose();
95+
}
96+
});
97+
98+
return frame;
99+
}
100+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
/*
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
import java.awt.FileDialog;
25+
import java.awt.Frame;
26+
27+
/*
28+
* @test
29+
* @bug 4177831
30+
* @summary solaris: default FileDialog title is not empty
31+
* @library /java/awt/regtesthelpers
32+
* @build PassFailJFrame
33+
* @run main/manual FileDialogEmptyTitleTest
34+
*/
35+
36+
public class FileDialogEmptyTitleTest {
37+
static String instructions = """
38+
Test passes if title of file dialog is empty,
39+
otherwise test failed.
40+
""";
41+
42+
public static void main(String[] args) throws Exception {
43+
PassFailJFrame.builder()
44+
.title("FileDialogEmptyTitleTest")
45+
.instructions(instructions)
46+
.testTimeOut(5)
47+
.rows(10)
48+
.columns(35)
49+
.testUI(FileDialogEmptyTitleTest::createGUI)
50+
.build()
51+
.awaitAndCheck();
52+
}
53+
54+
public static FileDialog createGUI() {
55+
Frame frame = new Frame("invisible dialog owner");
56+
FileDialog fileDialog = new FileDialog(frame);
57+
return fileDialog;
58+
}
59+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/*
2+
* Copyright (c) 2003, 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
import java.awt.BorderLayout;
25+
import java.awt.Button;
26+
import java.awt.FileDialog;
27+
import java.awt.Frame;
28+
import java.awt.event.ActionEvent;
29+
import java.awt.event.ActionListener;
30+
31+
/*
32+
* @test
33+
* @bug 4859390
34+
* @requires (os.family == "windows")
35+
* @summary Verify that FileDialog matches the look
36+
of the native windows FileDialog
37+
* @library /java/awt/regtesthelpers
38+
* @build PassFailJFrame
39+
* @run main/manual FileDialogUIUpdate
40+
*/
41+
42+
public class FileDialogUIUpdate extends Frame {
43+
static String instructions = """
44+
Click the button to show the FileDialog. Then open the Paint
45+
application (usually found in Program Files->Accessories).
46+
Select File->Open from Paint to display a native Open dialog.
47+
Compare the native dialog to the AWT FileDialog.
48+
Specifically, confirm that the Places Bar icons are along the left side (or
49+
not, if the native dialog doesn't have them), and that the
50+
dialogs are both resizable (or not).
51+
If the file dialogs both look the same press Pass. If not,
52+
press Fail.
53+
""";
54+
55+
public static void main(String[] args) throws Exception {
56+
PassFailJFrame.builder()
57+
.title("FileDialogUIUpdate")
58+
.instructions(instructions)
59+
.testTimeOut(5)
60+
.rows(12)
61+
.columns(35)
62+
.testUI(FileDialogUIUpdate::new)
63+
.build()
64+
.awaitAndCheck();
65+
}
66+
67+
public FileDialogUIUpdate() {
68+
final FileDialog fd = new FileDialog(new Frame("FileDialogUIUpdate frame"),
69+
"Open FileDialog");
70+
Button showButton = new Button("Show FileDialog");
71+
setLayout(new BorderLayout());
72+
73+
fd.setDirectory("c:/");
74+
showButton.addActionListener(new ActionListener() {
75+
public void actionPerformed(ActionEvent e) {
76+
fd.setVisible(true);
77+
}
78+
});
79+
80+
add(showButton);
81+
setSize(200, 200);
82+
}
83+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
import java.awt.Button;
25+
import java.awt.Dialog;
26+
import java.awt.Frame;
27+
import java.awt.Menu;
28+
import java.awt.MenuBar;
29+
import java.awt.MenuItem;
30+
import java.awt.event.ActionEvent;
31+
import java.awt.event.ActionListener;
32+
33+
/*
34+
* @test
35+
* @bug 4070085
36+
* @summary Java program locks up X server
37+
* @library /java/awt/regtesthelpers
38+
* @build PassFailJFrame
39+
* @run main/manual MenuAndModalDialogTest
40+
*/
41+
42+
public class MenuAndModalDialogTest {
43+
static Frame frame;
44+
static String instructions = """
45+
1. Bring up the File Menu and leave it up.
46+
2. In a few seconds, the modal dialog will appear.
47+
3. Verify that your system does not lock up when you push the "OK" button.
48+
""";
49+
50+
public static void main(String[] args) throws Exception {
51+
PassFailJFrame pf = PassFailJFrame.builder()
52+
.title("MenuAndModalDialogTest")
53+
.instructions(instructions)
54+
.testTimeOut(5)
55+
.rows(10)
56+
.columns(35)
57+
.testUI(MenuAndModalDialogTest::createFrame)
58+
.build();
59+
60+
// Allow time to pop up the menu
61+
try {
62+
Thread.currentThread().sleep(5000);
63+
} catch (InterruptedException exception) {
64+
}
65+
66+
createDialog();
67+
pf.awaitAndCheck();
68+
}
69+
70+
public static Frame createFrame() {
71+
frame = new Frame("MenuAndModalDialogTest frame");
72+
73+
MenuBar menuBar = new MenuBar();
74+
frame.setMenuBar(menuBar);
75+
76+
Menu file = new Menu("File");
77+
menuBar.add(file);
78+
79+
MenuItem menuItem = new MenuItem("A Menu Entry");
80+
file.add(menuItem);
81+
82+
frame.setSize(200, 200);
83+
frame.setLocationRelativeTo(null);
84+
return frame;
85+
}
86+
87+
public static void createDialog() {
88+
Dialog dialog = new Dialog(frame);
89+
90+
Button button = new Button("OK");
91+
dialog.add(button);
92+
button.addActionListener(
93+
new ActionListener() {
94+
public void actionPerformed(ActionEvent e) {
95+
dialog.dispose();
96+
}
97+
}
98+
);
99+
100+
dialog.setSize(200, 200);
101+
dialog.setModal(true);
102+
dialog.setVisible(true);
103+
}
104+
}

0 commit comments

Comments
 (0)
Please sign in to comment.