Skip to content

Commit 0be4705

Browse files
author
Amos Shi
committedApr 23, 2024
8315824: Open source several Swing Text/HTML related tests
Backport-of: c11f8352e96a01b39e54080716030ec96f717cae
1 parent 00f8277 commit 0be4705

File tree

6 files changed

+485
-0
lines changed

6 files changed

+485
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
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+
import javax.swing.Action;
25+
import javax.swing.JEditorPane;
26+
import javax.swing.text.AttributeSet;
27+
import javax.swing.text.Caret;
28+
import javax.swing.text.Element;
29+
import javax.swing.text.MutableAttributeSet;
30+
import javax.swing.text.SimpleAttributeSet;
31+
import javax.swing.text.StyleConstants;
32+
import javax.swing.text.html.HTMLDocument;
33+
import javax.swing.text.html.HTMLEditorKit;
34+
import java.awt.event.ActionEvent;
35+
import java.io.StringReader;
36+
37+
/*
38+
* @test
39+
* @bug 4253334
40+
* @summary Tests that bold attribute unsets properly
41+
*/
42+
43+
public class bug4253334 {
44+
45+
public static void main(String[] args) throws Exception {
46+
JEditorPane ep = new JEditorPane();
47+
ep.setEditable(true);
48+
ep.setContentType("text/html");
49+
50+
HTMLEditorKit kit = (HTMLEditorKit)ep.getEditorKit();
51+
HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
52+
ep.setDocument(doc);
53+
String text = "<html><body>somesampletext</body></html>";
54+
kit.read(new StringReader(text), doc, 0);
55+
56+
// make some text bold & italic
57+
MutableAttributeSet attrs = new SimpleAttributeSet();
58+
StyleConstants.setBold(attrs, true);
59+
StyleConstants.setItalic(attrs, true);
60+
doc.setCharacterAttributes(3, 9, attrs, false);
61+
62+
Action[] as = kit.getActions();
63+
Action boldAction = null;
64+
65+
for (Action a : as) {
66+
String s = (String) (a.getValue(Action.NAME));
67+
if (s.equals("font-bold")) {
68+
boldAction = a;
69+
}
70+
}
71+
Caret caret = ep.getCaret();
72+
ActionEvent event = new ActionEvent(ep, ActionEvent.ACTION_PERFORMED,
73+
"font-bold");
74+
caret.setDot(3);
75+
caret.moveDot(7);
76+
boldAction.actionPerformed(event);
77+
caret.setDot(7);
78+
caret.moveDot(12);
79+
boldAction.actionPerformed(event);
80+
81+
Element elem = doc.getCharacterElement(9);
82+
AttributeSet at = elem.getAttributes();
83+
if (StyleConstants.isBold(at)) {
84+
throw new RuntimeException("Test Failed: bold attribute set");
85+
}
86+
}
87+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
/*
2+
* Copyright (c) 2000, 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+
import java.awt.Robot;
25+
import java.awt.event.KeyAdapter;
26+
import java.awt.event.KeyEvent;
27+
import javax.swing.JEditorPane;
28+
import javax.swing.JFrame;
29+
import javax.swing.SwingUtilities;
30+
import javax.swing.text.Document;
31+
import javax.swing.text.MutableAttributeSet;
32+
import javax.swing.text.StyleConstants;
33+
import javax.swing.text.StyledEditorKit;
34+
35+
/*
36+
* @test
37+
* @bug 4329418
38+
* @key headful
39+
* @summary Tests if setCharacterAttributes() is maintained
40+
* after return in J(Editor/Text)Pane
41+
*/
42+
43+
public class bug4329418 {
44+
private static JFrame jf;
45+
private static StyledEditorKit sek;
46+
47+
private static volatile boolean passed = false;
48+
private static final int FONT_SIZE = 36;
49+
50+
public static void main(String[] args) throws Exception {
51+
try {
52+
Robot robot = new Robot();
53+
robot.setAutoWaitForIdle(true);
54+
55+
SwingUtilities.invokeAndWait(bug4329418::createAndShowUI);
56+
robot.waitForIdle();
57+
robot.delay(500);
58+
59+
robot.keyPress(KeyEvent.VK_ENTER);
60+
robot.keyRelease(KeyEvent.VK_ENTER);
61+
robot.delay(300);
62+
63+
if (!passed) {
64+
throw new RuntimeException("Test failed." +
65+
" setCharacterAttributes() does not work correctly");
66+
}
67+
} finally {
68+
SwingUtilities.invokeAndWait(() -> {
69+
if (jf != null) {
70+
jf.dispose();
71+
}
72+
});
73+
}
74+
}
75+
76+
private static void createAndShowUI() {
77+
jf = new JFrame("setCharacterAttributes Test");
78+
sek = new StyledEditorKit();
79+
JEditorPane jep = new JEditorPane();
80+
jep.setEditorKit(sek);
81+
82+
MutableAttributeSet attrs = sek.getInputAttributes();
83+
StyleConstants.setFontSize(attrs, FONT_SIZE);
84+
85+
jep.addKeyListener(new KeyAdapter() {
86+
public void keyReleased(KeyEvent e) {
87+
MutableAttributeSet attrs = sek.getInputAttributes();
88+
passed = (StyleConstants.getFontSize(attrs) == FONT_SIZE);
89+
}
90+
});
91+
92+
jep.setText("aaa");
93+
Document doc = jep.getDocument();
94+
jep.setCaretPosition(doc.getLength());
95+
96+
jf.getContentPane().add(jep);
97+
jf.setLocationRelativeTo(null);
98+
jf.setSize(200, 200);
99+
jf.setVisible(true);
100+
}
101+
}
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
import javax.swing.JFormattedTextField;
25+
import javax.swing.SwingUtilities;
26+
import javax.swing.text.MaskFormatter;
27+
import java.text.ParseException;
28+
29+
/*
30+
* @test
31+
* @bug 4739057
32+
* @summary replaceSelection() method fails on JFormattedTextField
33+
*/
34+
35+
public class bug4739057 {
36+
37+
public static void main(String[] args) throws Exception {
38+
SwingUtilities.invokeAndWait(() -> {
39+
MaskFormatter formatter;
40+
try {
41+
formatter = new MaskFormatter("(###) ###-####");
42+
} catch (ParseException e) {
43+
throw new RuntimeException(e);
44+
}
45+
formatter.setPlaceholderCharacter('#');
46+
JFormattedTextField textField = new JFormattedTextField(formatter);
47+
textField.replaceSelection("12345");
48+
if (!textField.getText().equals("(123) 45#-####")) {
49+
throw new RuntimeException("Test Failed! replaceSelection() didn't replace text properly");
50+
}
51+
});
52+
}
53+
}
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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+
import javax.swing.JFormattedTextField;
25+
import javax.swing.text.NumberFormatter;
26+
import java.text.DecimalFormat;
27+
28+
/*
29+
* @test
30+
* @bug 4763466
31+
* @summary JFormattedTextField and the - sign
32+
*/
33+
34+
public class bug4763466 {
35+
36+
public static void main(String[] args) throws Exception {
37+
DecimalFormat decimalFormat = new DecimalFormat("##0.00");
38+
NumberFormatter textFormatter = new NumberFormatter(decimalFormat);
39+
textFormatter.setAllowsInvalid(false);
40+
textFormatter.setValueClass(Double.class);
41+
42+
JFormattedTextField ftf = new JFormattedTextField(textFormatter);
43+
ftf.setCaretPosition(0);
44+
ftf.setValue((double) -1);
45+
46+
if (ftf.getCaretPosition() == 0) {
47+
throw new RuntimeException("Test Failed. Caret position shouldn't be 0" +
48+
" as the sign is literal");
49+
}
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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+
import javax.swing.JButton;
25+
import javax.swing.JEditorPane;
26+
import javax.swing.SwingUtilities;
27+
import javax.swing.UIManager;
28+
import javax.swing.text.Document;
29+
import javax.swing.text.Element;
30+
import javax.swing.text.html.FormView;
31+
32+
/*
33+
* @test
34+
* @bug 4210307 4210308
35+
* @summary Tests that FormView button text is internationalized
36+
*/
37+
38+
public class bug4210307 {
39+
private static final String RESET_PROPERTY = "TEST RESET";
40+
private static final String SUBMIT_PROPERTY = "TEST SUBMIT";
41+
42+
public static void main(String[] args) throws Exception {
43+
SwingUtilities.invokeAndWait(() -> {
44+
Object oldReset = UIManager.put("FormView.resetButtonText",
45+
RESET_PROPERTY);
46+
Object oldSubmit = UIManager.put("FormView.submitButtonText",
47+
SUBMIT_PROPERTY);
48+
49+
try {
50+
JEditorPane ep = new JEditorPane("text/html",
51+
"<html><input type=\"submit\"></html>");
52+
Document doc = ep.getDocument();
53+
Element elem = findInputElement(doc.getDefaultRootElement());
54+
TestView view = new TestView(elem);
55+
view.test(SUBMIT_PROPERTY);
56+
57+
ep = new JEditorPane("text/html",
58+
"<html><input type=\"reset\"></html>");
59+
doc = ep.getDocument();
60+
elem = findInputElement(doc.getDefaultRootElement());
61+
view = new TestView(elem);
62+
view.test(RESET_PROPERTY);
63+
} finally {
64+
UIManager.put("FormView.resetButtonText", oldReset);
65+
UIManager.put("FormView.submitButtonText", oldSubmit);
66+
}
67+
});
68+
}
69+
70+
private static Element findInputElement(Element root) {
71+
for (int i = 0; i < root.getElementCount(); i++) {
72+
Element elem = root.getElement(i);
73+
if (elem.getName().equals("input")) {
74+
return elem;
75+
} else {
76+
Element e = findInputElement(elem);
77+
if (e != null) return e;
78+
}
79+
}
80+
return null;
81+
}
82+
83+
static class TestView extends FormView {
84+
public TestView(Element elem) {
85+
super(elem);
86+
}
87+
88+
public void test(String caption) {
89+
JButton comp = (JButton) createComponent();
90+
if (!comp.getText().equals(caption)) {
91+
throw new RuntimeException("Failed: '" + comp.getText() +
92+
"' instead of `" + caption + "'");
93+
}
94+
}
95+
}
96+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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+
import javax.swing.JEditorPane;
25+
import javax.swing.JFrame;
26+
import javax.swing.SwingUtilities;
27+
import javax.swing.text.html.HTMLEditorKit;
28+
import java.awt.Component;
29+
import java.awt.KeyboardFocusManager;
30+
import java.awt.Point;
31+
import java.awt.Robot;
32+
import java.awt.event.InputEvent;
33+
import java.awt.event.KeyEvent;
34+
35+
/*
36+
* @test
37+
* @bug 4839739
38+
* @key headful
39+
* @summary Tests if JEditorPane works correctly with HTML comments.
40+
*/
41+
42+
public class bug4839739 {
43+
44+
private static JFrame jFrame;
45+
private static JEditorPane jep;
46+
private static volatile Point p;
47+
48+
public static void main(String[] args) throws Exception {
49+
try {
50+
Robot robot = new Robot();
51+
robot.setAutoWaitForIdle(true);
52+
robot.delay(50);
53+
54+
SwingUtilities.invokeAndWait(bug4839739::createAndShowUI);
55+
robot.waitForIdle();
56+
robot.delay(500);
57+
58+
SwingUtilities.invokeAndWait(() -> p = jep.getLocationOnScreen());
59+
robot.delay(200);
60+
61+
robot.mouseMove(p.x + 20, p.y + 20);
62+
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
63+
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
64+
robot.keyPress(KeyEvent.VK_TAB);
65+
robot.keyRelease(KeyEvent.VK_TAB);
66+
robot.delay(300);
67+
68+
Component comp = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
69+
if (!(comp instanceof JEditorPane)) {
70+
throw new RuntimeException("Test failed." +
71+
" JEditorPane doesn't work as expected with HTML comments");
72+
}
73+
} finally {
74+
SwingUtilities.invokeAndWait(() -> {
75+
if (jFrame != null) {
76+
jFrame.dispose();
77+
}
78+
});
79+
}
80+
}
81+
82+
private static void createAndShowUI() {
83+
String text = "<html><head><body><!-- some comment -->" +
84+
"some always visible text</body></html>";
85+
86+
jFrame = new JFrame("JEditorPane With HTML");
87+
jep = new JEditorPane();
88+
jep.setEditorKit(new HTMLEditorKit());
89+
jep.setEditable(false);
90+
91+
jep.setText(text);
92+
jFrame.getContentPane().add(jep);
93+
jFrame.setSize(200,200);
94+
jFrame.setLocationRelativeTo(null);
95+
jFrame.setVisible(true);
96+
}
97+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 23, 2024

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