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 org.testng.annotations.Listeners;
  27 import org.testng.annotations.Test;
  28 import org.testng.Assert;
  29 import java.net.URL;
  30 import java.net.URLClassLoader;
  31 
  32 import javax.xml.parsers.SAXParserFactory;
  33 
  34 /*
  35  * @test
  36  * @bug 6723276
  37  * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
  38  * @run testng/othervm -DrunSecMngr=true common.Bug6723276Test
  39  * @run testng/othervm common.Bug6723276Test
  40  * @summary Test JAXP class can be loaded by bootstrap classloader.
  41  */
  42 @Listeners({jaxp.library.BasePolicy.class})
  43 public class Bug6723276Test {
  44 
  45     @Test
  46     public void test1() {
  47         try {
  48             SAXParserFactory.newInstance();
  49         } catch (Exception e) {
  50             if (e.getMessage().indexOf("org.apache.xerces.jaxp.SAXParserFactoryImpl not found") > 0) {
  51                 Assert.fail(e.getMessage());
  52             }
  53         }
  54     }
  55 
  56     @Test
  57     public void test2() {
  58         try {
  59             System.out.println(Thread.currentThread().getContextClassLoader());
  60             System.out.println(ClassLoader.getSystemClassLoader().getParent());
  61             Thread.currentThread().setContextClassLoader(new URLClassLoader(new URL[0], ClassLoader.getSystemClassLoader().getParent()));
  62             SAXParserFactory.newInstance();
  63         } catch (Exception e) {
  64             if (e.getMessage().indexOf("org.apache.xerces.jaxp.SAXParserFactoryImpl not found") > 0) {
  65                 Assert.fail(e.getMessage());
  66             }
  67         }
  68     }
  69 
  70 }
  71