SAXFactoryNewInstanceTest.java revision 968:874082a9b565
1/*
2 * Copyright (c) 1999, 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
24package javax.xml.parsers.ptests;
25
26import static org.testng.Assert.assertNotNull;
27
28import javax.xml.parsers.FactoryConfigurationError;
29import javax.xml.parsers.ParserConfigurationException;
30import javax.xml.parsers.SAXParser;
31import javax.xml.parsers.SAXParserFactory;
32
33import jaxp.library.JAXPDataProvider;
34
35import org.testng.annotations.DataProvider;
36import org.testng.annotations.Listeners;
37import org.testng.annotations.Test;
38import org.xml.sax.SAXException;
39
40/*
41 * @test
42 * @library /javax/xml/jaxp/libs
43 * @run testng/othervm -DrunSecMngr=true javax.xml.parsers.ptests.SAXFactoryNewInstanceTest
44 * @run testng/othervm javax.xml.parsers.ptests.SAXFactoryNewInstanceTest
45 * @summary Tests for SAXParserFactory.newInstance(factoryClassName , classLoader)
46 */
47@Listeners({jaxp.library.BasePolicy.class})
48public class SAXFactoryNewInstanceTest {
49
50    private static final String SAXPARSER_FACTORY_CLASSNAME = "com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl";
51
52    @DataProvider(name = "parameters")
53    public Object[][] getValidateParameters() {
54        return new Object[][] { { SAXPARSER_FACTORY_CLASSNAME, null }, { SAXPARSER_FACTORY_CLASSNAME, this.getClass().getClassLoader() } };
55    }
56
57    /*
58     * test for SAXParserFactory.newInstance(java.lang.String factoryClassName,
59     * java.lang.ClassLoader classLoader) factoryClassName points to correct
60     * implementation of javax.xml.parsers.SAXParserFactory , should return
61     * newInstance of SAXParserFactory
62     */
63    @Test(dataProvider = "parameters")
64    public void testNewInstance(String factoryClassName, ClassLoader classLoader) throws ParserConfigurationException, SAXException {
65        SAXParserFactory spf = SAXParserFactory.newInstance(factoryClassName, classLoader);
66        SAXParser sp = spf.newSAXParser();
67        assertNotNull(sp);
68    }
69
70    /*
71     * test for SAXParserFactory.newInstance(java.lang.String factoryClassName,
72     * java.lang.ClassLoader classLoader) factoryClassName is null , should
73     * throw FactoryConfigurationError
74     */
75    @Test(expectedExceptions = FactoryConfigurationError.class, dataProvider = "new-instance-neg", dataProviderClass = JAXPDataProvider.class)
76    public void testNewInstanceNeg(String factoryClassName, ClassLoader classLoader) {
77        SAXParserFactory.newInstance(factoryClassName, classLoader);
78    }
79
80}
81
82
83