1 /*
   2  * Copyright (c) 2014, 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 org.w3c.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 
  62             Node element = doc2.adoptNode(doc1.getDocumentElement());
  63 
  64             System.out.println("OK.");
  65         } catch (Exception e) {
  66             e.printStackTrace();
  67             Assert.fail("Excpetion while adopting node: " + e.getMessage());
  68         }
  69 
  70     }
  71 
  72     private Document parse(String xmlData) throws Exception {
  73         StringReader in = new StringReader(xmlData);
  74         InputSource source = new InputSource(in);
  75         return docBuilder.parse(source);
  76     }
  77 }