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 javax.xml.stream.XMLOutputFactory;
  27 import javax.xml.stream.XMLStreamException;
  28 import javax.xml.stream.XMLStreamWriter;
  29 import javax.xml.transform.dom.DOMResult;
  30 
  31 import org.testng.Assert;
  32 import org.testng.annotations.Test;
  33 import org.w3c.dom.Document;
  34 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
  35 
  36 /*
  37  * @bug 6909336
  38  * @summary Test DOM writer can write more that 20 nested elements.
  39  */
  40 public class CR6909336Test {
  41 
  42     @Test
  43     public void test() {
  44         try {
  45             Document doc = DOMImplementationRegistry.newInstance().getDOMImplementation("XML 3.0").createDocument("", "root", null);
  46             XMLStreamWriter xsw = XMLOutputFactory.newInstance().createXMLStreamWriter(new DOMResult(doc.getDocumentElement()));
  47             for (int i = 0; i < 30; ++i) {
  48                 xsw.writeStartElement("nested");
  49             }
  50         } catch (RuntimeException ex) {
  51             System.out.println("RuntimeException ex" + ex.getMessage());
  52             if (ex.getMessage().equals("20")) {
  53                 Assert.fail("XMLDOMWriter cannot write more that 20 nested elements");
  54             }
  55         } catch (XMLStreamException ex) {
  56             System.out.println("XMLStreamException ex" + ex.getMessage());
  57         } catch (ClassNotFoundException ex) {
  58             System.out.println("ClassNotFoundException ex" + ex.getMessage());
  59         } catch (InstantiationException ex) {
  60             System.out.println("InstantiationException ex" + ex.getMessage());
  61         } catch (IllegalAccessException ex) {
  62             System.out.println("IllegalAccessException ex" + ex.getMessage());
  63 
  64         }
  65 
  66     }
  67 
  68 }