-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8315889: Open source several Swing HTMLDocument related tests
Backport-of: 8f46abc938ffe338e25d5fdbdcfa0aaa12edfa58
- jdk-11.0.27+4
- jdk-11.0.27+3
- jdk-11.0.27+2
- jdk-11.0.27+1
- jdk-11.0.27+0
- jdk-11.0.26+4
- jdk-11.0.26+3
- jdk-11.0.26+2
- jdk-11.0.26+1
- jdk-11.0.26+0
- jdk-11.0.26-ga
- jdk-11.0.25+9
- jdk-11.0.25+8
- jdk-11.0.25+7
- jdk-11.0.25+6
- jdk-11.0.25+5
- jdk-11.0.25+4
- jdk-11.0.25+3
- jdk-11.0.25+2
- jdk-11.0.25+1
- jdk-11.0.25+0
- jdk-11.0.25-ga
- jdk-11.0.24+8
- jdk-11.0.24+7
- jdk-11.0.24+6
- jdk-11.0.24+5
- jdk-11.0.24+4
- jdk-11.0.24+3
- jdk-11.0.24+2
- jdk-11.0.24+1
- jdk-11.0.24-ga
Amos Shi
committed
Apr 28, 2024
1 parent
1e1688a
commit f7d0522
Showing
4 changed files
with
250 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
test/jdk/javax/swing/text/html/HTMLDocument/bug4226914.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
|
||
import javax.swing.JEditorPane; | ||
import java.io.ByteArrayOutputStream; | ||
import java.io.ObjectOutputStream; | ||
|
||
/* | ||
* @test | ||
* @bug 4226914 | ||
* @summary Tests if HTMLDocument streaming is broken | ||
*/ | ||
|
||
public class bug4226914 { | ||
|
||
public static void main(String[] args) throws Exception { | ||
ObjectOutputStream oos = null; | ||
try { | ||
JEditorPane jtp = new JEditorPane("text/html", "<html></html>"); | ||
ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
oos = new ObjectOutputStream(baos); | ||
oos.writeObject(jtp.getDocument()); | ||
oos.flush(); | ||
baos.toByteArray(); | ||
} finally { | ||
if (oos != null) { | ||
oos.close(); | ||
} | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
test/jdk/javax/swing/text/html/HTMLDocument/bug4251593.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
import java.awt.event.ActionEvent; | ||
import javax.swing.Action; | ||
import javax.swing.JTextPane; | ||
import javax.swing.SwingUtilities; | ||
import javax.swing.text.html.HTML; | ||
import javax.swing.text.html.HTMLEditorKit; | ||
|
||
/* | ||
* @test | ||
* @bug 4251593 | ||
* @summary Tests that hyperlinks can be inserted into JTextPane | ||
* via InsertHTMLTextAction. | ||
*/ | ||
|
||
public class bug4251593 { | ||
private static JTextPane editor; | ||
|
||
public static void main(String[] args) throws Exception { | ||
SwingUtilities.invokeAndWait(() -> { | ||
editor = new JTextPane(); | ||
editor.setContentType("text/html"); | ||
editor.setEditable(true); | ||
|
||
int beforeLen = editor.getDocument().getLength(); | ||
|
||
String href = "<a HREF=\"https://java.sun.com\">javasoft </a>"; | ||
Action a = new HTMLEditorKit.InsertHTMLTextAction("Tester", href, HTML.Tag.BODY, HTML.Tag.A); | ||
a.actionPerformed(new ActionEvent(editor, 0, null)); | ||
|
||
int afterLen = editor.getDocument().getLength(); | ||
try { | ||
Thread.sleep(300); | ||
} catch (InterruptedException e) { | ||
e.printStackTrace(); | ||
} | ||
if ((afterLen - beforeLen) < 8) { | ||
throw new RuntimeException("Test Failed: link not inserted!!"); | ||
} | ||
}); | ||
} | ||
} |
72 changes: 72 additions & 0 deletions
72
test/jdk/javax/swing/text/html/HTMLDocument/bug4687405.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright (c) 2003, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
import javax.swing.JEditorPane; | ||
import javax.swing.SwingUtilities; | ||
import javax.swing.text.AttributeSet; | ||
import javax.swing.text.View; | ||
import javax.swing.text.html.CSS; | ||
import javax.swing.text.html.HTMLEditorKit; | ||
|
||
/* | ||
* @test | ||
* @bug 4687405 | ||
* @summary Tests if HTMLDocument very first paragraph doesn't have top margin. | ||
*/ | ||
|
||
public class bug4687405 { | ||
private static JEditorPane jep; | ||
private static volatile boolean passed = false; | ||
|
||
public static void main(String[] args) throws Exception { | ||
SwingUtilities.invokeAndWait(bug4687405::createHTMLEditor); | ||
Thread.sleep(200); | ||
|
||
SwingUtilities.invokeAndWait(bug4687405::testEditorPane); | ||
Thread.sleep(500); | ||
|
||
if (!passed) { | ||
throw new RuntimeException("Test failed!!" + | ||
" Top margin present in HTMLDocument"); | ||
} | ||
} | ||
|
||
public static void createHTMLEditor() { | ||
jep = new JEditorPane(); | ||
jep.setEditorKit(new HTMLEditorKit()); | ||
jep.setEditable(false); | ||
} | ||
|
||
private static void testEditorPane() { | ||
View v = jep.getUI().getRootView(jep); | ||
while (!(v instanceof javax.swing.text.html.ParagraphView)) { | ||
int n = v.getViewCount(); | ||
v = v.getView(n - 1); | ||
} | ||
AttributeSet attrs = v.getAttributes(); | ||
String marginTop = attrs.getAttribute(CSS.Attribute.MARGIN_TOP).toString(); | ||
// MARGIN_TOP of the very first paragraph of the default html | ||
// document should be 0. | ||
passed = "0".equals(marginTop); | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
test/jdk/javax/swing/text/html/HTMLEditorKit/bug4213373.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
import javax.swing.text.html.HTMLEditorKit; | ||
import java.io.ByteArrayInputStream; | ||
import java.io.ByteArrayOutputStream; | ||
import java.io.ObjectInputStream; | ||
import java.io.ObjectOutputStream; | ||
|
||
/* | ||
* @test | ||
* @bug 4213373 | ||
* @summary Serialization bug on HTMLEditorKit. | ||
*/ | ||
|
||
public class bug4213373 { | ||
|
||
public static void main(String[] args) throws Exception { | ||
HTMLEditorKit ekr = null; | ||
ObjectOutputStream oos = null; | ||
ObjectInputStream ois = null; | ||
|
||
try { | ||
ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
HTMLEditorKit ekw = new HTMLEditorKit(); | ||
oos = new ObjectOutputStream(baos); | ||
oos.writeObject(ekw); | ||
byte[] buf = baos.toByteArray(); | ||
|
||
ByteArrayInputStream bais = new ByteArrayInputStream(buf); | ||
ois = new ObjectInputStream(bais); | ||
ekr = (HTMLEditorKit) ois.readObject(); | ||
} finally { | ||
if (oos != null) { | ||
oos.close(); | ||
} | ||
if (ois != null) { | ||
ois.close(); | ||
} | ||
} | ||
} | ||
} |
f7d0522
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues