Skip to content

Commit eb5ef84

Browse files
Amos Shishipilev
Amos Shi
authored andcommittedMar 11, 2024
8315677: Open source few swing JFileChooser and other tests
Backport-of: fe5ef5f20dcf647b4ca30963b42fa01449f0d9c0
1 parent cf9aa9b commit eb5ef84

File tree

5 files changed

+360
-0
lines changed

5 files changed

+360
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
/*
2+
* Copyright (c) 2003, 2023, 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+
/*
25+
* @test
26+
* @bug 4624353
27+
* @summary Tests that Motif FileChooser is not able to show control buttons
28+
* @key headful
29+
* @run main bug4624353
30+
*/
31+
32+
import java.awt.Component;
33+
import java.awt.Container;
34+
import javax.swing.JButton;
35+
import javax.swing.JFileChooser;
36+
import javax.swing.JFrame;
37+
import javax.swing.SwingUtilities;
38+
import javax.swing.UIManager;
39+
40+
public class bug4624353 {
41+
static volatile boolean passed = true;
42+
static JFrame fr;
43+
static JFileChooser fc;
44+
45+
public static void main(String args[]) throws Exception {
46+
UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
47+
48+
try {
49+
SwingUtilities.invokeAndWait(() -> {
50+
fr = new JFrame("bug4624353");
51+
fc = new JFileChooser();
52+
fc.setControlButtonsAreShown(false);
53+
fr.getContentPane().add(fc);
54+
fr.pack();
55+
fr.setVisible(true);
56+
57+
passAround(fc);
58+
});
59+
if (!passed) {
60+
throw new RuntimeException("Test failed");
61+
}
62+
} finally {
63+
SwingUtilities.invokeAndWait(() -> {
64+
if (fr != null) {
65+
fr.dispose();
66+
}
67+
});
68+
}
69+
}
70+
71+
public static void passAround(Container c) {
72+
Component[] list = c.getComponents();
73+
if (list.length == 0) {
74+
return;
75+
}
76+
for (int i = 0; i < list.length; i++) {
77+
if (list[i] != null) {
78+
if ((list[i] instanceof JButton) &&
79+
"OK".equals(((JButton)list[i]).getText())) {
80+
passed = false;
81+
return;
82+
}
83+
passAround((Container)list[i]);
84+
}
85+
}
86+
}
87+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
* Copyright (c) 2002, 2023, 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+
/*
25+
* @test
26+
* @bug 4673161
27+
* @requires (os.family == "windows")
28+
* @summary Tests if JFileChooser preferred size depends on selected files
29+
* @run main bug4673161
30+
*/
31+
32+
import java.awt.Dimension;
33+
import java.io.File;
34+
import javax.swing.JFileChooser;
35+
import javax.swing.UIManager;
36+
37+
public class bug4673161 {
38+
39+
public static void main(String[] args) throws Exception {
40+
JFileChooser fc = new JFileChooser();
41+
Dimension d = fc.getPreferredSize();
42+
JFileChooser fc2 = new JFileChooser();
43+
File[] files = new File[50];
44+
for (int i = 0; i < 50; i++) {
45+
files[i] = new File("file" + i);
46+
}
47+
fc2.setSelectedFiles(files);
48+
Dimension d2 = fc2.getPreferredSize();
49+
if (!d.equals(d2)) {
50+
throw new RuntimeException("Test failed: JFileChooser preferred " +
51+
"size depends on selected files");
52+
}
53+
54+
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
55+
56+
JFileChooser fc3 = new JFileChooser();
57+
d = fc3.getPreferredSize();
58+
fc2 = new JFileChooser();
59+
files = new File[50];
60+
for (int i = 0; i < 50; i++) {
61+
files[i] = new File("file" + i);
62+
}
63+
fc2.setSelectedFiles(files);
64+
d2 = fc2.getPreferredSize();
65+
if (!d.equals(d2)) {
66+
throw new RuntimeException("Test failed: JFileChooser preferred " +
67+
"size depends on selected files");
68+
}
69+
}
70+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2002, 2023, 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+
/*
25+
* @test
26+
* @bug 4782168
27+
* @summary Tests if DefaultShellFolder.isHidden() crashes for the
28+
root folder on Solaris
29+
* @modules java.desktop/sun.awt.shell
30+
* @run main bug4782168
31+
*/
32+
33+
public class bug4782168 {
34+
35+
public static void main(String args[]) throws Exception {
36+
sun.awt.shell.ShellFolder sf = sun.awt.shell.ShellFolder.
37+
getShellFolder(new java.io.File("/"));
38+
sf.isHidden();
39+
}
40+
}
+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
/*
2+
* Copyright (c) 2003, 2023, 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+
/*
25+
* @test
26+
* @bug 4822331
27+
* @summary setLaberFor does not transfer focus to the JSpinner editor
28+
* @library /test/lib
29+
* @key headful
30+
* @run main bug4822331
31+
*/
32+
33+
import java.awt.event.FocusAdapter;
34+
import java.awt.event.FocusEvent;
35+
import java.awt.event.KeyEvent;
36+
import java.awt.FlowLayout;
37+
import java.awt.Robot;
38+
import javax.swing.JButton;
39+
import javax.swing.JFormattedTextField;
40+
import javax.swing.JFrame;
41+
import javax.swing.JLabel;
42+
import javax.swing.JSpinner;
43+
import javax.swing.SwingUtilities;
44+
import jdk.test.lib.Platform;
45+
46+
public class bug4822331 {
47+
48+
static JFrame fr;
49+
static JButton button;
50+
static JSpinner spinner;
51+
static volatile boolean tfFocused = false;
52+
static volatile boolean passed = false;
53+
54+
public static void main(String []args) throws Exception {
55+
bug4822331 test = new bug4822331();
56+
test.init();
57+
}
58+
59+
public void init() throws Exception {
60+
try {
61+
SwingUtilities.invokeAndWait(() -> {
62+
fr = new JFrame("Test");
63+
fr.getContentPane().setLayout(new FlowLayout());
64+
65+
button = new JButton("Button");
66+
fr.getContentPane().add(button);
67+
68+
spinner = new JSpinner();
69+
JLabel spinnerLabel = new JLabel("spinner");
70+
spinnerLabel.setDisplayedMnemonic(KeyEvent.VK_S);
71+
spinnerLabel.setLabelFor(spinner);
72+
fr.getContentPane().add(spinnerLabel);
73+
fr.getContentPane().add(spinner);
74+
75+
JSpinner.DefaultEditor editor =
76+
(JSpinner.DefaultEditor) spinner.getEditor();
77+
JFormattedTextField ftf = editor.getTextField();
78+
ftf.addFocusListener(new FocusAdapter() {
79+
public void focusGained(FocusEvent e) {
80+
passed = true;
81+
}
82+
});
83+
fr.pack();
84+
fr.setVisible(true);
85+
});
86+
start();
87+
if ( !passed ) {
88+
throw new RuntimeException("The activation of spinner's " +
89+
"mnemonic didn't focus the editor component.");
90+
}
91+
} finally {
92+
SwingUtilities.invokeAndWait(() -> {
93+
if (fr != null) {
94+
fr.dispose();
95+
}
96+
});
97+
}
98+
}
99+
100+
public void start() throws Exception {
101+
Robot robot = new Robot();
102+
robot.setAutoDelay(50);
103+
robot.delay(1000);
104+
robot.waitForIdle();
105+
button.requestFocus();
106+
if (Platform.isOSX()) {
107+
robot.keyPress(KeyEvent.VK_CONTROL);
108+
robot.keyPress(KeyEvent.VK_ALT);
109+
robot.keyPress(KeyEvent.VK_S);
110+
robot.keyRelease(KeyEvent.VK_S);
111+
robot.keyRelease(KeyEvent.VK_ALT);
112+
robot.keyRelease(KeyEvent.VK_CONTROL);
113+
} else {
114+
robot.keyPress(KeyEvent.VK_ALT);
115+
robot.keyPress(KeyEvent.VK_S);
116+
robot.keyRelease(KeyEvent.VK_S);
117+
robot.keyRelease(KeyEvent.VK_ALT);
118+
}
119+
}
120+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Copyright (c) 1999, 2023, 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+
/*
25+
* @test
26+
* @bug 4191835
27+
* @summary JOptionPane should allow Dialog as window owner.
28+
* @key headful
29+
* @run main bug4191835
30+
*/
31+
32+
import java.awt.Dialog;
33+
import javax.swing.JDialog;
34+
import javax.swing.JOptionPane;
35+
36+
public class bug4191835 {
37+
38+
public static void main(String[] args) {
39+
JOptionPane op = new JOptionPane();
40+
Dialog dlg = new Dialog(new JDialog());
41+
JDialog jd = op.createDialog(dlg, "Dialog");
42+
}
43+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 11, 2024

@openjdk-notifier[bot]
Please sign in to comment.