< prev index next >

test/javax/xml/jaxp/unittest/parsers/Bug6690015.java

Print this page


   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 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) {


   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) {


< prev index next >