169N/A/*
2362N/A * Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
169N/A * @bug 4510355
0N/A * @summary ActivationGroup implementations cannot be downloaded by default;
0N/A * Creates a custom activation group without setting a security manager
0N/A * in activation group's descriptor. The custom activation group
0N/A * implementation should be downloaded when first object within that group
0N/A * is activated.
0N/A * @author Ann Wollrath
0N/A *
0N/A * @library ../../../testlibrary
0N/A * @build TestLibrary RMID ActivationLibrary
5551N/A * DownloadActivationGroup MyActivationGroupImpl DownloadActivationGroup_Stub
0N/A * @run main/othervm/policy=security.policy/timeout=240 DownloadActivationGroup
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.rmi.*;
0N/Aimport java.net.*;
0N/Aimport java.rmi.activation.*;
0N/Aimport java.rmi.server.*;
0N/Aimport java.rmi.registry.*;
0N/Aimport java.util.Vector;
0N/Aimport java.util.Properties;
0N/A
0N/Apublic class DownloadActivationGroup
169N/A implements Ping, Runnable
0N/A{
0N/A
0N/A private ActivationID id;
0N/A
0N/A public DownloadActivationGroup(ActivationID id, MarshalledObject mobj)
169N/A throws ActivationException, RemoteException
0N/A {
169N/A this.id = id;
169N/A Activatable.exportObject(this, id, 0);
169N/A System.err.println("object activated in group");
0N/A }
0N/A
0N/A public DownloadActivationGroup() throws RemoteException {
169N/A UnicastRemoteObject.exportObject(this, 0);
0N/A }
0N/A
0N/A /**
0N/A * Used to activate object.
0N/A */
0N/A public void ping() {
169N/A System.err.println("received ping");
0N/A }
0N/A
0N/A /**
0N/A * Spawns a thread to deactivate the object (and thus, shuts down the
0N/A * activation group).
0N/A */
0N/A public void shutdown() throws Exception
0N/A {
169N/A (new Thread(this,"DownloadActivationGroup")).start();
0N/A }
0N/A
0N/A /**
0N/A * Thread to deactivate object.
0N/A */
0N/A public void run() {
169N/A ActivationLibrary.deactivate(this, getID());
0N/A }
169N/A
0N/A public ActivationID getID() {
169N/A return id;
0N/A }
0N/A
0N/A
0N/A public static void main(String[] args) {
0N/A
169N/A RMID rmid = null;
169N/A
169N/A System.out.println("\nRegression test for bug 4510355\n");
169N/A
169N/A try {
169N/A TestLibrary.suggestSecurityManager("java.lang.SecurityManager");
169N/A
169N/A /*
169N/A * Install group class file in codebase.
169N/A */
169N/A System.err.println("install class file in codebase");
169N/A URL groupURL = TestLibrary.installClassInCodebase(
169N/A "MyActivationGroupImpl", "group");
169N/A System.err.println("class file installed");
0N/A
169N/A /*
169N/A * Start rmid.
169N/A */
169N/A RMID.removeLog();
169N/A rmid = RMID.createRMID();
169N/A String execPolicyOption = "-Dsun.rmi.activation.execPolicy=none";
169N/A rmid.addOptions(new String[] { execPolicyOption });
169N/A rmid.start();
0N/A
169N/A /*
169N/A * Create and register descriptors for custom group and an
169N/A * activatable object in that group.
169N/A */
169N/A System.err.println("register group");
0N/A
169N/A Properties p = new Properties();
169N/A p.put("java.security.policy", TestParams.defaultGroupPolicy);
169N/A
169N/A ActivationGroupDesc groupDesc =
169N/A new ActivationGroupDesc("MyActivationGroupImpl",
169N/A groupURL.toExternalForm(),
169N/A null, p, null);
169N/A ActivationGroupID groupID =
169N/A ActivationGroup.getSystem().registerGroup(groupDesc);
169N/A
169N/A
169N/A System.err.println("register activatable object");
169N/A ActivationDesc desc =
169N/A new ActivationDesc(groupID, "DownloadActivationGroup",
169N/A null, null);
169N/A Ping obj = (Ping) Activatable.register(desc);
0N/A
169N/A /*
169N/A * Start group (by calling ping).
169N/A */
169N/A System.err.println(
169N/A "ping object (forces download of group's class)");
169N/A obj.ping();
169N/A System.err.println(
169N/A "TEST PASSED: group's class downloaded successfully");
169N/A System.err.println("shutdown object");
169N/A obj.shutdown();
169N/A System.err.println("TEST PASSED");
0N/A
169N/A } catch (Exception e) {
169N/A TestLibrary.bomb(e);
169N/A } finally {
169N/A ActivationLibrary.rmidCleanup(rmid);
169N/A }
0N/A }
0N/A}
0N/A
0N/Ainterface Ping extends Remote {
0N/A public void ping() throws RemoteException;
0N/A public void shutdown() throws Exception;
0N/A}