0N/A/*
2362N/A * Copyright (c) 1998, 2001, 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/* @test
0N/A * @bug 4116082
0N/A *
0N/A * @summary synopsis: rmid should not destroy group when it reports
0N/A * inactiveGroup
0N/A * @author Ann Wollrath
0N/A *
0N/A * @library ../../../testlibrary
5551N/A * @build TestLibrary RMID ActivationLibrary ActivateMe InactiveGroup_Stub
0N/A * @run main/othervm/policy=security.policy/timeout=240 InactiveGroup
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.rmi.*;
0N/Aimport java.rmi.activation.*;
0N/Aimport java.rmi.server.*;
0N/Aimport java.rmi.registry.*;
0N/Aimport java.util.Properties;
0N/A
0N/Apublic class InactiveGroup
0N/A implements ActivateMe, Runnable
0N/A{
0N/A
0N/A private ActivationID id;
0N/A
0N/A public InactiveGroup(ActivationID id, MarshalledObject obj)
0N/A throws ActivationException, RemoteException
0N/A {
0N/A this.id = id;
0N/A Activatable.exportObject(this, id, 0);
0N/A }
0N/A
0N/A public InactiveGroup() throws RemoteException {
0N/A UnicastRemoteObject.exportObject(this, 0);
0N/A }
0N/A
0N/A public void ping()
0N/A {}
0N/A
0N/A public ActivateMe getUnicastVersion() throws RemoteException {
0N/A return new InactiveGroup();
0N/A }
0N/A
0N/A public ActivationID getID() {
0N/A return id;
0N/A }
0N/A
0N/A /**
0N/A * Spawns a thread to deactivate the object.
0N/A */
0N/A public void shutdown() throws Exception
0N/A {
0N/A (new Thread(this,"InactiveGroup")).start();
0N/A }
0N/A
0N/A /**
0N/A * Thread to deactivate object. First attempts to make object
0N/A * inactive (via the inactive method). If that fails (the
0N/A * object may still have pending/executing calls), then
0N/A * unexport the object forcibly.
0N/A */
0N/A public void run()
0N/A {
0N/A ActivationLibrary.deactivate(this, getID());
0N/A }
0N/A
0N/A public static void main(String[] args) {
0N/A
0N/A System.out.println("\nRegression test for bug 4116082\n");
0N/A
0N/A TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
0N/A
0N/A RMID rmid = null;
0N/A
0N/A try {
0N/A RMID.removeLog();
0N/A rmid = RMID.createRMID();
0N/A rmid.start();
0N/A
0N/A /* Cause activation groups to have a security policy that will
0N/A * allow security managers to be downloaded and installed
0N/A */
0N/A Properties p = new Properties();
0N/A // this test must always set policies/managers in its
0N/A // activation groups
0N/A p.put("java.security.policy",
0N/A TestParams.defaultGroupPolicy);
0N/A p.put("java.security.manager",
0N/A TestParams.defaultSecurityManager);
0N/A
0N/A /*
0N/A * Create descriptor and activate object in a separate VM.
0N/A */
0N/A System.err.println("Creating descriptor");
0N/A ActivationGroupDesc groupDesc =
0N/A new ActivationGroupDesc(p, null);
0N/A ActivationGroupID groupID =
0N/A ActivationGroup.getSystem().registerGroup(groupDesc);
0N/A ActivationDesc desc =
0N/A new ActivationDesc(groupID, "InactiveGroup", null, null);
0N/A
0N/A System.err.println("Registering descriptor");
0N/A ActivateMe activatableObj = (ActivateMe) Activatable.register(desc);
0N/A
0N/A System.err.println("Activate object via method call");
0N/A activatableObj.ping();
0N/A
0N/A /*
0N/A * Create a unicast object in the activatable object's VM.
0N/A */
0N/A System.err.println("Obtain unicast object");
0N/A ActivateMe unicastObj = activatableObj.getUnicastVersion();
0N/A
0N/A /*
0N/A * Make activatable object (and therefore group) inactive.
0N/A */
0N/A System.err.println("Make activatable object inactive");
0N/A activatableObj.shutdown();
0N/A
0N/A /*
0N/A * Ping the unicast object a few times to make sure that the
0N/A * activation group's process hasn't gone away.
0N/A */
0N/A System.err.println("Ping unicast object for existence");
0N/A for (int i = 0; i < 10; i++) {
0N/A unicastObj.ping();
0N/A Thread.sleep(500);
0N/A }
0N/A
0N/A /*
0N/A * Now, reactivate the activatable object; the unicast object
0N/A * should no longer be accessible, since reactivating the
0N/A * activatable object should kill the previous group's VM
0N/A * and the unicast object along with it.
0N/A */
0N/A System.err.println("Reactivate activatable obj");
0N/A activatableObj.ping();
0N/A
0N/A try {
0N/A System.err.println("Ping unicast object again");
0N/A unicastObj.ping();
0N/A } catch (Exception thisShouldFail) {
0N/A System.err.println("Test passed: couldn't reach unicast obj: " +
0N/A thisShouldFail.getMessage());
0N/A return;
0N/A }
0N/A
0N/A TestLibrary.bomb("Test failed: unicast obj accessible after group reactivates",
0N/A null);
0N/A
0N/A } catch (Exception e) {
0N/A TestLibrary.bomb("test failed", e);
0N/A } finally {
0N/A ActivationLibrary.rmidCleanup(rmid);
0N/A }
0N/A }
0N/A}