1 /*
   2  * Copyright (c) 2014, 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 common;
  25 
  26 import javax.xml.parsers.SAXParserFactory;
  27 import javax.xml.transform.TransformerFactory;
  28 import javax.xml.transform.TransformerFactoryConfigurationError;
  29 
  30 import org.testng.Assert;
  31 import org.testng.annotations.Listeners;
  32 import org.testng.annotations.Test;
  33 
  34 /*
  35  * @bug 6350682
  36  * @summary Test SAXParserFactory and TransformerFactory can newInstance when setContextClassLoader(null).
  37  */
  38 @Listeners({jaxp.library.BasePolicy.class})
  39 public class Bug6350682 {
  40 
  41     @Test
  42     public void testSAXParserFactory() {
  43         try {
  44             Thread.currentThread().setContextClassLoader(null);
  45             if (Bug6350682.class.getClassLoader() == null)
  46                 System.out.println("this class loader is NULL");
  47             else
  48                 System.out.println("this class loader is NOT NULL");
  49             SAXParserFactory factory = SAXParserFactory.newInstance();
  50             Assert.assertTrue(factory != null, "Failed to get an instance of a SAXParserFactory");
  51         } catch (Exception e) {
  52             e.printStackTrace();
  53             Assert.fail("Exception occured: " + e.getMessage());
  54         }
  55     }
  56 
  57     @Test
  58     public void testTransformerFactory() {
  59         try {
  60             Thread.currentThread().setContextClassLoader(null);
  61             TransformerFactory factory = TransformerFactory.newInstance();
  62             Assert.assertTrue(factory != null, "Failed to get an instance of a TransformerFactory");
  63         } catch (Exception e) {
  64             e.printStackTrace();
  65             Assert.fail("Exception occured: " + e.getMessage());
  66         } catch (TransformerFactoryConfigurationError error) {
  67             error.printStackTrace();
  68             Assert.fail(error.toString());
  69         }
  70     }
  71 }