< prev index next >

test/javax/xml/jaxp/unittest/sax/IssueTracker56Test.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 sax;
  25 
  26 import java.io.IOException;
  27 import java.io.StringReader;
  28 
  29 import javax.xml.parsers.ParserConfigurationException;
  30 import javax.xml.parsers.SAXParser;
  31 import javax.xml.parsers.SAXParserFactory;
  32 
  33 import org.testng.Assert;

  34 import org.testng.annotations.Test;
  35 import org.xml.sax.Attributes;
  36 import org.xml.sax.ErrorHandler;
  37 import org.xml.sax.InputSource;
  38 import org.xml.sax.SAXException;
  39 import org.xml.sax.helpers.DefaultHandler;
  40 
  41 /*
  42  * @bug 6809409
  43  * @summary Test SAXException has Cause.
  44  */

  45 public class IssueTracker56Test {
  46 
  47     @Test
  48     public void testException() {
  49         try {
  50             SAXParserFactory spf = SAXParserFactory.newInstance();
  51             SAXParser parser = spf.newSAXParser();
  52             String xmlToParse = "<root>Issue 56: SAXException does not do the exception chaining properly</root>";
  53             InputSource source = new InputSource(new StringReader(xmlToParse));
  54             parser.parse(source, new MyHandler());
  55         } catch (SAXException ex) {
  56             System.out.println(ex.getCause());
  57             if (ex.getCause() == null)
  58                 Assert.fail("failed chaining exception properly.");
  59             // ex.printStackTrace(); //will not print out root cause without the
  60             // fix
  61         } catch (IOException ex) {
  62             // shouldn't happen
  63         } catch (ParserConfigurationException ex) {
  64             // shouldn't happen


   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 sax;
  25 
  26 import java.io.IOException;
  27 import java.io.StringReader;
  28 
  29 import javax.xml.parsers.ParserConfigurationException;
  30 import javax.xml.parsers.SAXParser;
  31 import javax.xml.parsers.SAXParserFactory;
  32 
  33 import org.testng.Assert;
  34 import org.testng.annotations.Listeners;
  35 import org.testng.annotations.Test;
  36 import org.xml.sax.Attributes;
  37 import org.xml.sax.ErrorHandler;
  38 import org.xml.sax.InputSource;
  39 import org.xml.sax.SAXException;
  40 import org.xml.sax.helpers.DefaultHandler;
  41 
  42 /*
  43  * @bug 6809409
  44  * @summary Test SAXException has Cause.
  45  */
  46 @Listeners({jaxp.library.BasePolicy.class})
  47 public class IssueTracker56Test {
  48 
  49     @Test
  50     public void testException() {
  51         try {
  52             SAXParserFactory spf = SAXParserFactory.newInstance();
  53             SAXParser parser = spf.newSAXParser();
  54             String xmlToParse = "<root>Issue 56: SAXException does not do the exception chaining properly</root>";
  55             InputSource source = new InputSource(new StringReader(xmlToParse));
  56             parser.parse(source, new MyHandler());
  57         } catch (SAXException ex) {
  58             System.out.println(ex.getCause());
  59             if (ex.getCause() == null)
  60                 Assert.fail("failed chaining exception properly.");
  61             // ex.printStackTrace(); //will not print out root cause without the
  62             // fix
  63         } catch (IOException ex) {
  64             // shouldn't happen
  65         } catch (ParserConfigurationException ex) {
  66             // shouldn't happen


< prev index next >