Skip to content

Commit 4127fbb

Browse files
committedSep 7, 2023
8315606: Open source few swing text/html tests
Reviewed-by: aivanov
1 parent 9402548 commit 4127fbb

File tree

4 files changed

+398
-0
lines changed

4 files changed

+398
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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+
/*
25+
* @test
26+
* @bug 4357975
27+
* @summary Tests if InsertUnorderedListItem generates the proper tag sequence
28+
* @run main bug4357975
29+
*/
30+
31+
import java.awt.event.ActionEvent;
32+
33+
import javax.swing.Action;
34+
import javax.swing.JEditorPane;
35+
import javax.swing.event.DocumentEvent;
36+
import javax.swing.event.DocumentListener;
37+
import javax.swing.text.AttributeSet;
38+
import javax.swing.text.Element;
39+
import javax.swing.text.StyleConstants;
40+
import javax.swing.text.html.HTML;
41+
import javax.swing.text.html.HTMLEditorKit;
42+
import javax.swing.text.html.HTMLDocument;
43+
44+
public class bug4357975 {
45+
46+
public static void main(String[] args) throws Exception {
47+
JEditorPane jep = new JEditorPane();
48+
HTMLEditorKit kit = new HTMLEditorKit();
49+
jep.setEditorKit(kit);
50+
jep.setDocument(kit.createDefaultDocument());
51+
52+
HTMLDocument doc = (HTMLDocument) jep.getDocument();
53+
54+
DocumentListener l = new DocumentListener() {
55+
@Override
56+
public void insertUpdate(DocumentEvent e) {
57+
int offset = e.getOffset();
58+
HTMLDocument doc = (HTMLDocument)e.getDocument();
59+
60+
Element el = doc.getCharacterElement(offset + 1);
61+
AttributeSet attrs = el.getAttributes();
62+
Object name = attrs.getAttribute(StyleConstants.NameAttribute);
63+
boolean passed = (name == HTML.Tag.CONTENT);
64+
65+
el = el.getParentElement();
66+
attrs = el.getAttributes();
67+
name = attrs.getAttribute(StyleConstants.NameAttribute);
68+
passed = (passed && (name == HTML.Tag.IMPLIED));
69+
70+
el = el.getParentElement();
71+
attrs = el.getAttributes();
72+
name = attrs.getAttribute(StyleConstants.NameAttribute);
73+
passed = (passed && (name == HTML.Tag.LI));
74+
75+
el = el.getParentElement();
76+
attrs = el.getAttributes();
77+
name = attrs.getAttribute(StyleConstants.NameAttribute);
78+
passed = (passed && (name == HTML.Tag.UL));
79+
if (!passed) {
80+
throw new RuntimeException("Test failed");
81+
}
82+
}
83+
84+
@Override
85+
public void changedUpdate(DocumentEvent e) {}
86+
@Override
87+
public void removeUpdate(DocumentEvent e) {}
88+
};
89+
doc.addDocumentListener(l);
90+
91+
Action[] actions = kit.getActions();
92+
for (int i = 0; i < actions.length; i++){
93+
Action a = actions[i];
94+
if (a.getValue(Action.NAME) == "InsertUnorderedListItem") {
95+
a.actionPerformed(new ActionEvent(jep,
96+
ActionEvent.ACTION_PERFORMED,
97+
(String) a.getValue(Action.ACTION_COMMAND_KEY)));
98+
break;
99+
}
100+
}
101+
102+
}
103+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 4841760
27+
* @summary Tests if HTML tags are correctly shown for
28+
StyleEditorKit.ForegroundAction() in JTextPane output.
29+
* @run main bug4841760
30+
*/
31+
32+
import javax.swing.JTextPane;
33+
import javax.swing.text.SimpleAttributeSet;
34+
import javax.swing.text.StyleConstants;
35+
import javax.swing.text.html.HTMLEditorKit;
36+
37+
public class bug4841760 {
38+
39+
public static void main(String[] args) throws Exception {
40+
JTextPane jep = new JTextPane();
41+
jep.setEditorKit(new HTMLEditorKit());
42+
jep.setText("<html><head></head><body><font size=3>hellojavaworld</font></body></html>");
43+
44+
SimpleAttributeSet set = new SimpleAttributeSet();
45+
StyleConstants.setForeground(set, java.awt.Color.BLUE);
46+
jep.getStyledDocument().setCharacterAttributes(3, 5, set, false);
47+
48+
String gotText = jep.getText();
49+
System.out.println("gotText: " + gotText);
50+
// there should be color attribute set
51+
// and 3 font tags
52+
int i = gotText.indexOf("color");
53+
if (i > 0) {
54+
i = gotText.indexOf("<font");
55+
if (i > 0) {
56+
i = gotText.indexOf("<font", i + 1);
57+
if (i > 0) {
58+
i = gotText.indexOf("<font", i + 1);
59+
if (i <= 0) {
60+
throw new RuntimeException("Test failed.");
61+
}
62+
}
63+
}
64+
}
65+
66+
}
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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+
/*
25+
* @test
26+
* @bug 4329185
27+
* @summary Tests if vertical image alignment is working
28+
* @key headful
29+
* @run main bug4329185
30+
*/
31+
32+
import java.awt.Robot;
33+
34+
import javax.swing.JFrame;
35+
import javax.swing.JEditorPane;
36+
import javax.swing.SwingUtilities;
37+
import javax.swing.text.Element;
38+
import javax.swing.text.StyleConstants;
39+
import javax.swing.text.View;
40+
import javax.swing.text.ViewFactory;
41+
import javax.swing.text.html.HTML;
42+
import javax.swing.text.html.HTMLEditorKit;
43+
44+
public class bug4329185 {
45+
46+
private static final View[] views = new View[3];
47+
private static JFrame f;
48+
49+
public static void main(String[] args) throws Exception {
50+
Robot robot = new Robot();
51+
robot.setAutoDelay(100);
52+
try {
53+
SwingUtilities.invokeAndWait(() -> {
54+
bug4329185 test = new bug4329185();
55+
test.start();
56+
});
57+
robot.waitForIdle();
58+
robot.delay(1000);
59+
boolean passed = ((views[0].getAlignment(View.Y_AXIS) == 0.0)
60+
&& (views[1].getAlignment(View.Y_AXIS) == 0.5)
61+
&& (views[2].getAlignment(View.Y_AXIS) == 1.0));
62+
if (!passed) {
63+
throw new RuntimeException("Test failed.");
64+
}
65+
} finally {
66+
SwingUtilities.invokeAndWait(() -> {
67+
if (f != null) {
68+
f.dispose();
69+
}
70+
});
71+
}
72+
}
73+
74+
public void start() {
75+
String text = "aaa<IMG align=top><IMG align=middle><IMG align=bottom>";
76+
f = new JFrame("bug4329185");
77+
JEditorPane jep = new JEditorPane();
78+
jep.setEditorKit(new MyHTMLEditorKit());
79+
jep.setEditable(false);
80+
81+
jep.setText(text);
82+
83+
f.getContentPane().add(jep);
84+
f.setSize(500, 500);
85+
f.setLocationRelativeTo(null);
86+
f.setVisible(true);
87+
}
88+
89+
90+
static class MyHTMLEditorKit extends HTMLEditorKit {
91+
92+
private final ViewFactory defaultFactory = new MyHTMLFactory();
93+
94+
@Override
95+
public ViewFactory getViewFactory() {
96+
return defaultFactory;
97+
}
98+
99+
static class MyHTMLFactory extends HTMLEditorKit.HTMLFactory {
100+
private int i = 0;
101+
102+
@Override
103+
public View create(Element elem) {
104+
Object o = elem.getAttributes()
105+
.getAttribute(StyleConstants.NameAttribute);
106+
if (o instanceof HTML.Tag kind) {
107+
if (kind == HTML.Tag.IMG) {
108+
View v = super.create(elem);
109+
views[i++] = v;
110+
return v;
111+
}
112+
}
113+
return super.create(elem);
114+
}
115+
}
116+
}
117+
118+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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 4623342
27+
* @summary Tests if InlineView causes extra spacing around images in JTable
28+
* @key headful
29+
* @run main bug4623342
30+
*/
31+
32+
import java.awt.Robot;
33+
import java.awt.Shape;
34+
35+
import javax.swing.JFrame;
36+
import javax.swing.JEditorPane;
37+
import javax.swing.SwingUtilities;
38+
import javax.swing.text.View;
39+
import javax.swing.text.html.HTMLEditorKit;
40+
41+
public class bug4623342 {
42+
43+
private static volatile boolean passed;
44+
45+
private JEditorPane jep;
46+
private static JFrame f;
47+
48+
public static void main(String[] args) throws Exception {
49+
Robot robot = new Robot();
50+
robot.setAutoDelay(100);
51+
try {
52+
bug4623342 test = new bug4623342();
53+
SwingUtilities.invokeAndWait(test::init);
54+
robot.waitForIdle();
55+
robot.delay(100);
56+
SwingUtilities.invokeAndWait(test::start);
57+
if (!passed) {
58+
throw new RuntimeException("Test failed.");
59+
}
60+
} finally {
61+
SwingUtilities.invokeAndWait(() -> {
62+
if (f != null) {
63+
f.dispose();
64+
}
65+
});
66+
}
67+
}
68+
69+
public void init() {
70+
71+
String text =
72+
"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">" +
73+
"<tr><td width=\"10\" height=\"23\">" +
74+
"<img src=\"file:/a.jpg\" width=65 height=23 border=\"0\"></td></tr>" +
75+
"<tr><td width=\"10\" height=\"23\">" +
76+
"<img src=\"file:/a.jpg\" width=65 height=23 border=\"0\"></td></tr></table>";
77+
78+
f = new JFrame();
79+
jep = new JEditorPane();
80+
jep.setEditorKit(new HTMLEditorKit());
81+
jep.setEditable(false);
82+
83+
jep.setText(text);
84+
85+
f.getContentPane().add(jep);
86+
f.setSize(500, 500);
87+
f.setLocationRelativeTo(null);
88+
f.setVisible(true);
89+
}
90+
91+
private void start() {
92+
Shape r = jep.getBounds();
93+
View v = jep.getUI().getRootView(jep);
94+
int tableHeight = 0;
95+
while (!(v instanceof javax.swing.text.html.ParagraphView)) {
96+
int n = v.getViewCount();
97+
Shape sh = v.getChildAllocation(n - 1, r);
98+
String viewName = v.getClass().getName();
99+
if (viewName.endsWith("TableView")) {
100+
tableHeight = r.getBounds().height;
101+
}
102+
v = v.getView(n - 1);
103+
if (sh != null) {
104+
r = sh;
105+
}
106+
}
107+
// tableHeight should be the sum of TD's heights (46)
108+
passed = (tableHeight == 46);
109+
}
110+
}

0 commit comments

Comments
 (0)
Please sign in to comment.