1 /*
   2  * Copyright (c) 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 
  27 import javax.xml.parsers.ParserConfigurationException;
  28 import javax.xml.parsers.SAXParserFactory;
  29 
  30 import jaxp.library.JAXPTestUtilities;
  31 
  32 import org.testng.annotations.AfterClass;
  33 import org.testng.annotations.Listeners;
  34 import org.testng.annotations.Test;
  35 import org.xml.sax.SAXException;
  36 import org.xml.sax.helpers.XMLReaderAdapter;
  37 
  38 /*
  39  * @bug 8158246
  40  * @summary This class contains tests that cover the creation of XMLReader.
  41  */
  42 @Listeners({jaxp.library.BasePolicy.class})
  43 public class XMLReaderTest {
  44     private final String SAX_PROPNAME = "org.xml.sax.driver";
  45 
  46     /*
  47      * Clean up after test
  48      */
  49     @AfterClass
  50     public void cleanUp() throws Exception {
  51         System.clearProperty(SAX_PROPNAME);
  52     }
  53 
  54     /*
  55      * @bug 8158246
  56      * Verifies that SAXException is reported when the classname specified can
  57      * not be found.
  58      *
  59      * Except test format, this test is the same as JCK's test Ctor003.
  60      */
  61     @Test(expectedExceptions = SAXException.class)
  62     public void testcreateXMLReader() throws SAXException, ParserConfigurationException {
  63         String className = SAXParserFactory.newInstance().newSAXParser()
  64                             .getXMLReader().getClass().getName();
  65         System.setProperty(SAX_PROPNAME, className + "nosuch");
  66         XMLReaderAdapter adapter = new XMLReaderAdapter();
  67     }
  68 }