8315889: Open source several Swing HTMLDocument related tests

Reviewed-by: tr, azvegint
This commit is contained in:
Harshitha Onkar 2023-09-15 20:32:38 +00:00
parent 00504472b9
commit 8f46abc938
4 changed files with 250 additions and 0 deletions

View File

@ -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();
}
}
}
}

View File

@ -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!!");
}
});
}
}

View File

@ -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);
}
}

View File

@ -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();
}
}
}
}