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