XMLEventFactoryNewInstanceTest.java revision 997:540334ae53fe
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.stream.ptests;
25
26import static jaxp.library.JAXPTestUtilities.setSystemProperty;
27import static jaxp.library.JAXPTestUtilities.clearSystemProperty;
28
29import static org.testng.Assert.assertNotNull;
30
31import javax.xml.stream.XMLEventFactory;
32
33import jaxp.library.JAXPDataProvider;
34
35import org.testng.annotations.DataProvider;
36import org.testng.annotations.Listeners;
37import org.testng.annotations.Test;
38
39/*
40 * @test
41 * @library /javax/xml/jaxp/libs
42 * @run testng/othervm -DrunSecMngr=true javax.xml.stream.ptests.XMLEventFactoryNewInstanceTest
43 * @run testng/othervm javax.xml.stream.ptests.XMLEventFactoryNewInstanceTest
44 * @summary Tests for XMLEventFactory.newFactory(factoryId , classLoader)
45 */
46@Listeners({jaxp.library.BasePolicy.class})
47public class XMLEventFactoryNewInstanceTest {
48
49    private static final String XMLEVENT_FACTORY_CLASSNAME = "com.sun.xml.internal.stream.events.XMLEventFactoryImpl";
50    private static final String XMLEVENT_FACRORY_ID = "javax.xml.stream.XMLEventFactory";
51
52    @DataProvider(name = "parameters")
53    public Object[][] getValidateParameters() {
54        return new Object[][] { { XMLEVENT_FACRORY_ID, null }, { XMLEVENT_FACRORY_ID, this.getClass().getClassLoader() } };
55    }
56
57    /*
58     * test for XMLEventFactory.newFactory(java.lang.String factoryClassName,
59     * java.lang.ClassLoader classLoader) factoryClassName points to correct
60     * implementation of javax.xml.stream.XMLEventFactory , should return
61     * newInstance of XMLEventFactory
62     */
63    @Test(dataProvider = "parameters")
64    public void testNewFactory(String factoryId, ClassLoader classLoader) {
65        setSystemProperty(XMLEVENT_FACRORY_ID, XMLEVENT_FACTORY_CLASSNAME);
66        try {
67            XMLEventFactory xef = XMLEventFactory.newFactory(factoryId, classLoader);
68            assertNotNull(xef);
69        } finally {
70            clearSystemProperty(XMLEVENT_FACRORY_ID);
71        }
72    }
73
74    /*
75     * test for XMLEventFactory.newFactory(java.lang.String factoryClassName,
76     * java.lang.ClassLoader classLoader) factoryClassName is null , should
77     * throw NullPointerException
78     */
79    @Test(expectedExceptions = NullPointerException.class, dataProvider = "new-instance-neg", dataProviderClass = JAXPDataProvider.class)
80    public void testNewFactoryNeg(String factoryId, ClassLoader classLoader) {
81        XMLEventFactory.newFactory(null, null);
82    }
83
84}
85