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 javax.xml.parsers;
  25 
  26 import java.io.FileInputStream;
  27 
  28 import javax.xml.parsers.DocumentBuilderFactory;
  29 
  30 import org.testng.Assert;
  31 import org.testng.annotations.Test;
  32 import org.w3c.dom.Document;
  33 import org.w3c.dom.Element;
  34 import org.w3c.dom.NamedNodeMap;
  35 import org.w3c.dom.Node;
  36 import org.w3c.dom.NodeList;
  37 import org.xml.sax.InputSource;
  38 
  39 /*
  40  * @bug 6518733
  41  * @summary Test SAX parser handles several attributes with newlines.
  42  */
  43 public class Bug6690015 {
  44 
  45     public Bug6690015() {
  46     }
  47 
  48     @Test
  49     public void test() {
  50         try {
  51             FileInputStream fis = new FileInputStream(getClass().getResource("bug6690015.xml").getFile());
  52 
  53             Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(fis));
  54             Element root = doc.getDocumentElement();
  55             NodeList textnodes = root.getElementsByTagName("text");
  56             int len = textnodes.getLength();
  57             int index = 0;
  58             int attindex = 0;
  59             int attrlen = 0;
  60             NamedNodeMap attrs = null;
  61 
  62             while (index < len) {
  63                 Element te = (Element) textnodes.item(index);
  64                 attrs = te.getAttributes();
  65                 attrlen = attrs.getLength();
  66                 attindex = 0;
  67                 Node node = null;
  68 
  69                 while (attindex < attrlen) {
  70                     node = attrs.item(attindex);
  71                     System.out.println("attr: " + node.getNodeName() + " is shown holding value: " + node.getNodeValue());
  72                     attindex++;
  73                 }
  74                 index++;
  75                 System.out.println("-------------");
  76             }
  77             fis.close();
  78         } catch (Exception e) {
  79             Assert.fail("Exception: " + e.getMessage());
  80         }
  81     }
  82 
  83 }