Skip to content

Commit d19e017

Browse files
author
Harshitha Onkar
committedSep 19, 2023
8315951: Open source several Swing HTMLEditorKit related tests
Reviewed-by: dnguyen, aivanov
1 parent 62c0a1b commit d19e017

File tree

4 files changed

+365
-0
lines changed

4 files changed

+365
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
/*
2+
* Copyright (c) 2001, 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.Color;
25+
import java.awt.Component;
26+
import java.awt.Dimension;
27+
import java.awt.EventQueue;
28+
import java.awt.FontMetrics;
29+
import java.awt.Frame;
30+
import java.awt.Graphics;
31+
import java.awt.Panel;
32+
import java.awt.Robot;
33+
import java.util.concurrent.atomic.AtomicInteger;
34+
35+
/*
36+
* @test
37+
* @bug 4394287
38+
* @key headful
39+
* @summary Paint pending on heavyweight component move
40+
*/
41+
42+
public class RepaintTest {
43+
private static Frame frame;
44+
private static Panel panel;
45+
private static volatile IncrementComponent counter;
46+
47+
public static void main(String[] args) throws Exception {
48+
try {
49+
Robot robot = new Robot();
50+
EventQueue.invokeAndWait(RepaintTest::createAndShowUI);
51+
robot.waitForIdle();
52+
robot.delay(1000);
53+
54+
EventQueue.invokeAndWait(() -> panel.setLocation(panel.getX() + 10,
55+
panel.getY() + 10));
56+
robot.waitForIdle();
57+
robot.delay(500);
58+
59+
int count = counter.getCount().get();
60+
61+
EventQueue.invokeAndWait(panel::repaint);
62+
robot.waitForIdle();
63+
robot.delay(1000);
64+
65+
if (counter.getCount().get() == count) {
66+
throw new RuntimeException("Failed");
67+
}
68+
} finally {
69+
EventQueue.invokeAndWait(() -> {
70+
if (frame != null) {
71+
frame.dispose();
72+
}
73+
});
74+
}
75+
}
76+
77+
private static void createAndShowUI() {
78+
frame = new MyFrame("Repaint Test");
79+
frame.setLayout(null);
80+
81+
counter = new IncrementComponent();
82+
panel = new Panel();
83+
panel.add(counter);
84+
frame.add(panel);
85+
panel.setBounds(0, 0, 100, 100);
86+
frame.setSize(200, 200);
87+
frame.setLocationRelativeTo(null);
88+
frame.setVisible(true);
89+
}
90+
91+
private static class MyFrame extends Frame {
92+
93+
public MyFrame(String title) {
94+
super(title);
95+
}
96+
97+
public void update(Graphics g) {
98+
System.out.println("UPDATE: " + g.getClipBounds());
99+
super.update(g);
100+
}
101+
102+
public void paint(Graphics g) {
103+
System.out.println("PAINT: " + g.getClipBounds());
104+
super.paint(g);
105+
}
106+
}
107+
108+
// Subclass of Component, everytime paint is invoked a counter
109+
// is incremented, this counter is displayed in the component.
110+
private static class IncrementComponent extends Component {
111+
private static final AtomicInteger paintCount = new AtomicInteger(0);
112+
113+
public Dimension getPreferredSize() {
114+
return new Dimension(100, 100);
115+
}
116+
117+
public AtomicInteger getCount() {
118+
return paintCount;
119+
}
120+
121+
public void paint(Graphics g) {
122+
g.setColor(Color.red);
123+
g.fillRect(0, 0, getWidth(), getHeight());
124+
g.setColor(Color.white);
125+
126+
String string = Integer.toString(paintCount.getAndIncrement());
127+
FontMetrics metrics = g.getFontMetrics();
128+
int x = (getWidth() - metrics.stringWidth(string)) / 2;
129+
int y = (getHeight() + metrics.getHeight()) / 2;
130+
g.drawString(string, x, y);
131+
}
132+
}
133+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 java.io.StringReader;
25+
import java.io.StringWriter;
26+
import javax.swing.text.Document;
27+
import javax.swing.text.html.HTMLEditorKit;
28+
29+
/*
30+
* @test
31+
* @bug 4214848
32+
* @summary Tests whether HTMLEditorKit.read(...)
33+
* creates Document for html with empty BODY
34+
*/
35+
36+
public class bug4214848 {
37+
public static void main (String[] args) throws Exception {
38+
StringWriter sw = new StringWriter();
39+
String test = "<HTML><BODY></BODY></HTML>";
40+
HTMLEditorKit kit = new HTMLEditorKit();
41+
Document doc = kit.createDefaultDocument();
42+
kit.read(new StringReader(test), doc, 0); // prepare test document
43+
kit.write(sw, doc, 0, 10);
44+
String out = sw.toString().toLowerCase();
45+
if (out.indexOf("<body>") != out.lastIndexOf("<body>")) {
46+
throw new RuntimeException("Test failed: extra <body> section generated");
47+
}
48+
}
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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 java.io.StringWriter;
25+
import javax.swing.text.html.HTML;
26+
import javax.swing.text.html.HTMLDocument;
27+
import javax.swing.text.html.HTMLEditorKit;
28+
29+
/*
30+
* @test
31+
* @bug 4230197
32+
* @summary Tests if HTMLEditorKit.insertHTML() works for font/phrase tags
33+
*/
34+
35+
public class bug4230197 {
36+
37+
public static void main(String[] args) throws Exception {
38+
HTMLEditorKit kit = new HTMLEditorKit();
39+
StringWriter sw = new StringWriter();
40+
HTMLDocument doc = (HTMLDocument) kit.createDefaultDocument();
41+
kit.insertHTML(doc, doc.getLength(), "<sub>0</sub>", 0, 0, HTML.Tag.SUB);
42+
kit.insertHTML(doc, doc.getLength(), "<sup>0</sup>", 0, 0, HTML.Tag.SUP);
43+
kit.insertHTML(doc, doc.getLength(), "<b>0</b>", 0, 0, HTML.Tag.B);
44+
kit.insertHTML(doc, doc.getLength(), "<i>0</i>", 0, 0, HTML.Tag.I);
45+
kit.insertHTML(doc, doc.getLength(), "<code>0</code>", 0, 0, HTML.Tag.CODE);
46+
kit.write(sw, doc, 0, doc.getLength());
47+
48+
String out = sw.toString().toLowerCase();
49+
if ((!out.contains("<sub>0</sub>"))
50+
|| (!out.contains("<sup>0</sup>"))
51+
|| (!out.contains("<code>0</code>"))
52+
|| (!out.contains("<b>0</b>"))
53+
|| (!out.contains("<i>0</i>"))) {
54+
throw new RuntimeException("Test failed: HTMLEditorKit.insertHTML()" +
55+
" doesn't work for font/phrase tags");
56+
}
57+
}
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
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 java.io.Reader;
25+
import java.io.StringReader;
26+
import javax.swing.text.MutableAttributeSet;
27+
import javax.swing.text.html.HTML;
28+
import javax.swing.text.html.HTMLEditorKit;
29+
import javax.swing.text.html.parser.ParserDelegator;
30+
31+
/*
32+
* @test
33+
* @bug 4238223
34+
* @summary Tests that HTMLEditorKit.ParserCallback methods receive
35+
* correct 'pos' argument.
36+
*/
37+
38+
public class bug4238223 {
39+
40+
public static void main(String[] argv) throws Exception {
41+
TestParser parser = new TestParser();
42+
String testHTML = "<HTML><HEAD><TITLE>Text</TITLE></HEAD>" +
43+
"<BODY><WRONGTAG>Simple text<!--comment--></BODY></HTML>";
44+
parser.parse(testHTML);
45+
}
46+
47+
static class TestCallback extends HTMLEditorKit.ParserCallback {
48+
String commentData = "comment";
49+
int commentIndex = 65;
50+
51+
public void handleComment(char[] data, int pos) {
52+
if (!(new String(data)).equals(commentData)
53+
|| pos != commentIndex) {
54+
55+
throw new RuntimeException("handleComment failed");
56+
}
57+
}
58+
59+
HTML.Tag[] endTags = {HTML.Tag.TITLE, HTML.Tag.HEAD,
60+
HTML.Tag.BODY, HTML.Tag.HTML};
61+
int[] endTagPositions = {23, 31, 79, 86};
62+
int endTagIndex = 0;
63+
public void handleEndTag(HTML.Tag tag, int pos) {
64+
if (!tag.equals(endTags[endTagIndex])
65+
|| pos != endTagPositions[endTagIndex]) {
66+
67+
throw new RuntimeException("handleEndTag failed");
68+
} else {
69+
endTagIndex++;
70+
}
71+
}
72+
73+
int errorIndex = 54;
74+
public void handleError(String errorMsg, int pos) {
75+
if (pos != errorIndex) {
76+
throw new RuntimeException("handleError failed");
77+
}
78+
}
79+
80+
int[] simpleTagPositions = {44, 93};
81+
int simpleTagIndex = 0;
82+
public void handleSimpleTag(HTML.Tag tag, MutableAttributeSet attr,
83+
int pos) {
84+
if (pos != simpleTagPositions[simpleTagIndex++]) {
85+
throw new RuntimeException("handleSimpleTag failed");
86+
}
87+
}
88+
89+
HTML.Tag[] startTags = {HTML.Tag.HTML, HTML.Tag.HEAD,
90+
HTML.Tag.TITLE, HTML.Tag.BODY};
91+
int[] startTagPositions = {0, 6, 12, 38};
92+
int startTagIndex = 0;
93+
public void handleStartTag(HTML.Tag tag, MutableAttributeSet attr,
94+
int pos) {
95+
if (!tag.equals(startTags[startTagIndex])
96+
|| pos != startTagPositions[startTagIndex]) {
97+
98+
throw new RuntimeException("handleStartTag failed");
99+
} else {
100+
startTagIndex++;
101+
}
102+
}
103+
104+
String[] textData = {"Text", "Simple text"};
105+
int[] textPositions = {19, 54};
106+
int textIndex = 0;
107+
public void handleText(char[] data, int pos) {
108+
if (!textData[textIndex].equals(new String(data))
109+
|| pos != textPositions[textIndex]) {
110+
111+
throw new RuntimeException("handleText failed");
112+
} else {
113+
textIndex++;
114+
}
115+
}
116+
}
117+
118+
static class TestParser extends ParserDelegator {
119+
public void parse(String html) throws Exception {
120+
Reader r = new StringReader(html);
121+
super.parse(r, new TestCallback(), false);
122+
r.close();
123+
}
124+
}
125+
}

0 commit comments

Comments
 (0)
Please sign in to comment.