1/*
2 * Copyright (c) 2014, 2016, 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
24package transform;
25
26import java.io.File;
27
28import javax.xml.parsers.DocumentBuilder;
29import javax.xml.parsers.DocumentBuilderFactory;
30import javax.xml.transform.Transformer;
31import javax.xml.transform.TransformerFactory;
32import javax.xml.transform.stream.StreamResult;
33import javax.xml.transform.stream.StreamSource;
34
35import org.testng.Assert;
36import org.testng.annotations.BeforeClass;
37import org.testng.annotations.Listeners;
38import org.testng.annotations.Test;
39import org.w3c.dom.Document;
40
41/*
42 * @test
43 * @bug 6513892
44 * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
45 * @run testng/othervm -DrunSecMngr=true transform.Bug6513892
46 * @run testng/othervm transform.Bug6513892
47 * @summary Test the output encoding of the transform is the same as that of the redirect extension.
48 */
49@Listeners({jaxp.library.FilePolicy.class})
50public class Bug6513892 {
51    @BeforeClass
52    public void setup(){
53        if (System.getSecurityManager() != null)
54            System.setSecurityManager(null);
55    }
56
57    @Test
58    public void test0() {
59        try {
60            TransformerFactory tf = TransformerFactory.newInstance();
61            Transformer t = tf.newTransformer(new StreamSource(getClass().getResourceAsStream("redirect.xsl"), getClass().getResource("redirect.xsl")
62                    .toString()));
63
64            StreamSource src1 = new StreamSource(getClass().getResourceAsStream("redirect.xml"));
65            t.transform(src1, new StreamResult("redirect1.xml"));
66
67            DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
68            DocumentBuilder db = dbf.newDocumentBuilder();
69
70            Document d1 = db.parse(new File("redirect1.xml"));
71            Document d2 = db.parse(new File("redirect2.xml"));
72
73            Assert.assertTrue(d1.getDocumentElement().getFirstChild().getNodeValue().equals(d2.getDocumentElement().getFirstChild().getNodeValue()));
74        } catch (Exception e) {
75            Assert.fail(e.getMessage());
76        }
77    }
78
79}
80