1 /*
   2  * Copyright (c) 2002, 2014, 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 import java.rmi.*;
  25 import java.rmi.activation.*;
  26 import java.util.*;
  27 
  28 public class ExtLoadedImplTest {
  29 
  30     public static void main(String[] args) {
  31 
  32         System.err.println("\nRegression test for bug 4500504\n");
  33 
  34         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
  35 
  36         RMID rmid = null;
  37 
  38         try {
  39             RMID.removeLog();
  40             rmid = RMID.createRMID();
  41             rmid.start();
  42             Properties p = new Properties();
  43             p.put("java.security.policy",
  44                   TestParams.defaultGroupPolicy);
  45             p.put("java.security.manager",
  46                   TestParams.defaultSecurityManager);
  47             p.put("java.ext.dirs", "ext");
  48 
  49 
  50             System.err.println("Creating descriptors");
  51             ActivationGroupDesc groupDesc =
  52                 new ActivationGroupDesc(p, null);
  53             ActivationGroupID groupID =
  54                 ActivationGroup.getSystem().registerGroup(groupDesc);
  55             ActivationDesc objDesc =
  56                 new ActivationDesc(groupID, "ExtLoadedImpl", null, null);
  57 
  58             System.err.println("Registering descriptors");
  59             CheckLoader obj = (CheckLoader) Activatable.register(objDesc);
  60 
  61             boolean result = obj.isCorrectContextLoader();
  62 
  63             System.err.println("\nTEST " +
  64                                ((result) ? "PASSED" : "FAILED") + "\n");
  65 
  66             if (!result) {
  67                 throw new RuntimeException("TEST FAILED");
  68             }
  69         } catch (Exception e) {
  70             TestLibrary.bomb("test failed", e);
  71         } finally {
  72             rmid.cleanup();
  73         }
  74     }
  75 }