< prev index next >

test/javax/xml/jaxp/unittest/dom/Bug4915524.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;
  25 
  26 import java.io.StringReader;
  27 
  28 import javax.xml.parsers.DocumentBuilder;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 
  31 import org.testng.Assert;

  32 import org.testng.annotations.Test;
  33 import org.w3c.dom.Document;
  34 import org.w3c.dom.Node;
  35 import org.xml.sax.InputSource;
  36 
  37 /*
  38  * @bug 4915524
  39  * @summary Test Document.adoptNode() shall not throw Exception when the source document object is created from different implementation.
  40  */
  41 

  42 public class Bug4915524 {
  43 
  44     String data = "<?xml version=\"1.0\" ?>" + "<!DOCTYPE root [" + "<!ELEMENT root ANY>" + "<!ATTLIST root attr1 ID #FIXED 'xxx'"
  45             + "               attr2 CDATA #IMPLIED> " + "]>" + "<root attr2='yyy'/>";
  46 
  47     DocumentBuilder docBuilder = null;
  48 
  49     /*
  50      * This method tries to adopt a node from Defered document to non-defered
  51      * document.
  52      */
  53     @Test
  54     public void testAdoptNode() {
  55         try {
  56             DocumentBuilderFactory docBF = DocumentBuilderFactory.newInstance();
  57             docBuilder = docBF.newDocumentBuilder();
  58 
  59             Document doc1 = parse(data);
  60             Document doc2 = docBuilder.newDocument();
  61 
   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;
  25 
  26 import java.io.StringReader;
  27 
  28 import javax.xml.parsers.DocumentBuilder;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 
  31 import org.testng.Assert;
  32 import org.testng.annotations.Listeners;
  33 import org.testng.annotations.Test;
  34 import org.w3c.dom.Document;
  35 import org.w3c.dom.Node;
  36 import org.xml.sax.InputSource;
  37 
  38 /*
  39  * @bug 4915524
  40  * @summary Test Document.adoptNode() shall not throw Exception when the source document object is created from different implementation.
  41  */
  42 
  43 @Listeners({jaxp.library.BasePolicy.class})
  44 public class Bug4915524 {
  45 
  46     String data = "<?xml version=\"1.0\" ?>" + "<!DOCTYPE root [" + "<!ELEMENT root ANY>" + "<!ATTLIST root attr1 ID #FIXED 'xxx'"
  47             + "               attr2 CDATA #IMPLIED> " + "]>" + "<root attr2='yyy'/>";
  48 
  49     DocumentBuilder docBuilder = null;
  50 
  51     /*
  52      * This method tries to adopt a node from Defered document to non-defered
  53      * document.
  54      */
  55     @Test
  56     public void testAdoptNode() {
  57         try {
  58             DocumentBuilderFactory docBF = DocumentBuilderFactory.newInstance();
  59             docBuilder = docBF.newDocumentBuilder();
  60 
  61             Document doc1 = parse(data);
  62             Document doc2 = docBuilder.newDocument();
  63 
< prev index next >