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