< prev index next >

test/javax/xml/jaxp/unittest/dom/ls/Bug6290947.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 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 package dom.ls;
  25 
  26 import java.io.StringBufferInputStream;
  27 
  28 import javax.xml.parsers.DocumentBuilder;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 import javax.xml.parsers.ParserConfigurationException;
  31 
  32 import org.testng.Assert;

  33 import org.testng.annotations.Test;
  34 import org.w3c.dom.DOMConfiguration;
  35 import org.w3c.dom.DOMImplementation;
  36 import org.w3c.dom.Document;
  37 import org.w3c.dom.Node;
  38 import org.w3c.dom.ls.DOMImplementationLS;
  39 import org.w3c.dom.ls.LSInput;
  40 import org.w3c.dom.ls.LSParser;
  41 import org.w3c.dom.ls.LSSerializer;
  42 import org.w3c.dom.ls.LSSerializerFilter;
  43 import org.w3c.dom.traversal.NodeFilter;
  44 
  45 /*
  46  * @bug 6290947
  47  * @summary Test LSSerializer writes the XML declaration when LSSerializerFilter is set that rejects all nodes and
  48  * LSSerializer's configuration set parameter "xml-declaration" to "true".
  49  */

  50 public class Bug6290947 {
  51 
  52     private static String XML_STRING = "<?xml version=\"1.0\"?><ROOT><ELEMENT1><CHILD1/><CHILD1><COC1/></CHILD1></ELEMENT1><ELEMENT2>test1<CHILD2/></ELEMENT2></ROOT>";
  53     private static DOMImplementationLS implLS;
  54     private final String XML_FILE_INTERNAL_DTD = "note_in_dtd.xml";
  55 
  56     @Test
  57     public void testStringSourceWithXmlDecl() {
  58         String result = prepare(XML_STRING, true);
  59         System.out.println("testStringSource: output: " + result);
  60         Assert.assertTrue(result.indexOf("<?xml")>-1, "XML Declaration expected in output");
  61     }
  62 
  63     @Test
  64     public void testStringSourceWithOutXmlDecl() {
  65         String result = prepare(XML_STRING, false);
  66         System.out.println("testStringSource: output: " + result);
  67         Assert.assertTrue(result.indexOf("<?xml")==-1, "XML Declaration is not expected in output");
  68     }
  69 


   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 
  24 package dom.ls;
  25 
  26 import java.io.StringBufferInputStream;
  27 
  28 import javax.xml.parsers.DocumentBuilder;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 import javax.xml.parsers.ParserConfigurationException;
  31 
  32 import org.testng.Assert;
  33 import org.testng.annotations.Listeners;
  34 import org.testng.annotations.Test;
  35 import org.w3c.dom.DOMConfiguration;
  36 import org.w3c.dom.DOMImplementation;
  37 import org.w3c.dom.Document;
  38 import org.w3c.dom.Node;
  39 import org.w3c.dom.ls.DOMImplementationLS;
  40 import org.w3c.dom.ls.LSInput;
  41 import org.w3c.dom.ls.LSParser;
  42 import org.w3c.dom.ls.LSSerializer;
  43 import org.w3c.dom.ls.LSSerializerFilter;
  44 import org.w3c.dom.traversal.NodeFilter;
  45 
  46 /*
  47  * @bug 6290947
  48  * @summary Test LSSerializer writes the XML declaration when LSSerializerFilter is set that rejects all nodes and
  49  * LSSerializer's configuration set parameter "xml-declaration" to "true".
  50  */
  51 @Listeners({jaxp.library.FilePolicy.class})
  52 public class Bug6290947 {
  53 
  54     private static String XML_STRING = "<?xml version=\"1.0\"?><ROOT><ELEMENT1><CHILD1/><CHILD1><COC1/></CHILD1></ELEMENT1><ELEMENT2>test1<CHILD2/></ELEMENT2></ROOT>";
  55     private static DOMImplementationLS implLS;
  56     private final String XML_FILE_INTERNAL_DTD = "note_in_dtd.xml";
  57 
  58     @Test
  59     public void testStringSourceWithXmlDecl() {
  60         String result = prepare(XML_STRING, true);
  61         System.out.println("testStringSource: output: " + result);
  62         Assert.assertTrue(result.indexOf("<?xml")>-1, "XML Declaration expected in output");
  63     }
  64 
  65     @Test
  66     public void testStringSourceWithOutXmlDecl() {
  67         String result = prepare(XML_STRING, false);
  68         System.out.println("testStringSource: output: " + result);
  69         Assert.assertTrue(result.indexOf("<?xml")==-1, "XML Declaration is not expected in output");
  70     }
  71 


< prev index next >