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