Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/javax/xml/jaxp/transform/8079323/TemplatesTest.java
38860 views
1
/*
2
* Copyright (c) 2015, 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 8079323
27
* @summary This file contains tests for Templates.
28
* @run testng/othervm TemplatesTest
29
*/
30
31
import java.io.ByteArrayOutputStream;
32
import java.io.NotSerializableException;
33
import java.io.ObjectOutputStream;
34
import java.io.StringReader;
35
import javax.xml.transform.Templates;
36
import javax.xml.transform.Transformer;
37
import javax.xml.transform.TransformerFactory;
38
import javax.xml.transform.stream.StreamSource;
39
import org.testng.annotations.DataProvider;
40
import org.testng.annotations.Test;
41
42
public class TemplatesTest {
43
44
/**
45
* bug 8079323 Test Templates serialization
46
* <p>
47
* Serialization compatibility test: verify that serializing the Templates
48
* that contain auxiliary classes will result in a NotSerializableException
49
* due to the use of Xalan's non-serializable Hashtable.
50
*
51
* @param templates an instance of Templates
52
* @throws Exception as expected.
53
*/
54
@Test(dataProvider = "templates", expectedExceptions = NotSerializableException.class)
55
public void testSerialization(Templates templates) throws Exception {
56
Transformer xformer = templates.newTransformer();
57
try (ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
58
ObjectOutputStream out = new ObjectOutputStream(byteOut);) {
59
out.writeObject(templates);
60
out.flush();
61
}
62
}
63
64
/*
65
* DataProvider: Templates
66
*/
67
@DataProvider(name = "templates")
68
Object[][] getTemplates() throws Exception {
69
return new Object[][]{{TransformerFactory.newInstance().
70
newTemplates(new StreamSource(new StringReader(XSL)))}};
71
}
72
73
static final String XSL = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>"
74
+ "<xsl:stylesheet version=\"1.0\""
75
+ " xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">"
76
+ "<xsl:variable name=\"validAffectsRelClasses\">"
77
+ "</xsl:variable>"
78
+ "<xsl:key name=\"UniqueAffectsRelObjects\""
79
+ " match=\"/ObjectSetRoot/Object["
80
+ " contains($validAffectsRelClasses, @Class)]\""
81
+ " use=\"not(@OBID=preceding-sibling::Object["
82
+ " contains($validAffectsRelClasses, @Class)]/@OBID)\"/>"
83
+ "</xsl:stylesheet>";
84
}
85
86