1 /*
   2  * Copyright (c) 2003, 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 package org.xml.sax.ptests;
  24 
  25 import static jaxp.library.JAXPTestUtilities.setSystemProperty;
  26 
  27 import static org.testng.Assert.assertNotNull;
  28 
  29 import org.testng.annotations.Listeners;
  30 import org.testng.annotations.Test;
  31 import org.xml.sax.SAXException;
  32 import org.xml.sax.helpers.XMLReaderFactory;
  33 
  34 /**
  35  * Unit test for XMLReaderFactory.createXMLReader API.
  36  */
  37 /*
  38  * @test
  39  * @library /javax/xml/jaxp/libs
  40  * @run testng/othervm -DrunSecMngr=true org.xml.sax.ptests.XMLReaderFactoryTest
  41  * @run testng/othervm org.xml.sax.ptests.XMLReaderFactoryTest
  42  */
  43 @Listeners({jaxp.library.BasePolicy.class})
  44 public class XMLReaderFactoryTest {
  45     /**
  46      * No exception expected when create XMLReader by default.
  47      * @throws org.xml.sax.SAXException when xml reader creation failed.
  48      */
  49     @Test
  50     public void createReader01() throws SAXException {
  51         assertNotNull(XMLReaderFactory.createXMLReader());
  52     }
  53 
  54     /**
  55      * No exception expected when create XMLReader with driver name
  56      * org.apache.xerces.parsers.SAXParser
  57      * or com.sun.org.apache.xerces.internal.parsers.SAXParser.
  58      * @throws org.xml.sax.SAXException when xml reader creation failed.
  59      */
  60     @Test
  61     public void createReader02() throws SAXException {
  62         setSystemProperty("org.xml.sax.driver",
  63             "com.sun.org.apache.xerces.internal.parsers.SAXParser");
  64         assertNotNull(XMLReaderFactory.
  65             createXMLReader("com.sun.org.apache.xerces.internal.parsers.SAXParser"));
  66     }
  67 
  68     /**
  69      * SAXException expected when create XMLReader with an invalid driver name.
  70      * @throws org.xml.sax.SAXException expected Exception
  71      */
  72     @Test(expectedExceptions = SAXException.class,
  73             expectedExceptionsMessageRegExp =
  74                     "SAX2 driver class org.apache.crimson.parser.ABCD not found")
  75     public void createReader03() throws SAXException{
  76         XMLReaderFactory.createXMLReader("org.apache.crimson.parser.ABCD");
  77     }
  78 }