169N/A/*
2362N/A * Copyright (c) 1998, 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/* @test
0N/A * @bug 4097135
0N/A * @summary Need a specific subtype of RemoteException for activation failure.
169N/A * If activation fails to happen during a call to a remote object,
169N/A * then the call should end in an ActivateFailedException. In this
169N/A * test, the actual "activatable" remote object fails to activate
169N/A * since its * "activation" constructor throws an exception.
0N/A * @author Ann Wollrath
0N/A *
0N/A * @library ../../../testlibrary
5551N/A * @build TestLibrary RMID ActivationLibrary
5551N/A * ActivateMe ActivateFails_Stub ShutdownThread
0N/A * @run main/othervm/policy=security.policy/timeout=240 ActivateFails
0N/A */
0N/A
0N/Aimport java.rmi.*;
0N/Aimport java.rmi.server.*;
0N/Aimport java.rmi.activation.*;
0N/Aimport java.io.*;
0N/Aimport java.util.Properties;
0N/A
0N/Apublic class ActivateFails
169N/A extends Activatable
169N/A implements ActivateMe
0N/A{
0N/A
0N/A public ActivateFails(ActivationID id, MarshalledObject obj)
169N/A throws ActivationException, RemoteException
0N/A {
169N/A super(id, 0);
0N/A
169N/A boolean refuseToActivate = false;
169N/A try {
169N/A refuseToActivate = ((Boolean)obj.get()).booleanValue();
169N/A } catch (Exception impossible) {
169N/A }
169N/A
169N/A if (refuseToActivate)
169N/A throw new RemoteException("object refuses to activate");
0N/A }
0N/A
0N/A public void ping()
0N/A {}
169N/A
0N/A /**
0N/A * Spawns a thread to deactivate the object.
0N/A */
0N/A public ShutdownThread shutdown() throws Exception
0N/A {
169N/A ShutdownThread shutdownThread = new ShutdownThread(this, getID());
169N/A shutdownThread.start();
169N/A return(shutdownThread);
0N/A }
169N/A
169N/A public static void main(String[] args)
0N/A {
169N/A RMID rmid = null;
169N/A ActivateMe obj1, obj2;
169N/A ShutdownThread shutdownThread;
169N/A
169N/A System.err.println("\nRegression test for bug 4097135\n");
169N/A try {
169N/A TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
169N/A
169N/A /*
169N/A * First run "rmid" and wait for it to start up.
169N/A */
169N/A RMID.removeLog();
169N/A rmid = RMID.createRMID();
169N/A rmid.start();
0N/A
169N/A /* Cause activation groups to have a security policy that will
169N/A * allow security managers to be downloaded and installed
169N/A */
169N/A Properties p = new Properties();
169N/A // this test must always set policies/managers in its
169N/A // activation groups
169N/A p.put("java.security.policy",
169N/A TestParams.defaultGroupPolicy);
169N/A p.put("java.security.manager",
169N/A TestParams.defaultSecurityManager);
0N/A
169N/A /*
169N/A * Create activation descriptor...
169N/A */
169N/A System.err.println("creating activation descriptor...");
169N/A ActivationGroupDesc groupDesc =
169N/A new ActivationGroupDesc(p, null);
169N/A ActivationGroupID groupID =
169N/A ActivationGroup.getSystem().registerGroup(groupDesc);
169N/A
169N/A ActivationDesc desc1 =
169N/A new ActivationDesc(groupID, "ActivateFails",
169N/A null,
169N/A new MarshalledObject(new Boolean(true)));
0N/A
169N/A ActivationDesc desc2 =
169N/A new ActivationDesc(groupID, "ActivateFails",
169N/A null,
169N/A new MarshalledObject(new Boolean(false)));
169N/A /*
169N/A * Register activation descriptor and make a call on
169N/A * the stub. Activation should fail with an
169N/A * ActivateFailedException. If not, report an
169N/A * error as a RuntimeException
169N/A */
0N/A
169N/A System.err.println("registering activation descriptor...");
169N/A obj1 = (ActivateMe)Activatable.register(desc1);
169N/A obj2 = (ActivateMe)Activatable.register(desc2);
169N/A
169N/A System.err.println("invoking method on activatable object...");
169N/A try {
169N/A obj1.ping();
169N/A
169N/A } catch (ActivateFailedException e) {
0N/A
169N/A /*
169N/A * This is what is expected so exit with status 0
169N/A */
169N/A System.err.println("\nsuccess: ActivateFailedException " +
169N/A "generated");
169N/A e.getMessage();
169N/A }
0N/A
169N/A obj2.ping();
169N/A shutdownThread = obj2.shutdown();
0N/A
169N/A // wait for shutdown to work
169N/A Thread.sleep(2000);
0N/A
169N/A shutdownThread = null;
0N/A
169N/A } catch (Exception e) {
169N/A /*
169N/A * Test failed; unexpected exception generated.
169N/A */
169N/A TestLibrary.bomb("\nfailure: unexpected exception " +
169N/A e.getClass().getName() + ": " + e.getMessage(), e);
169N/A
169N/A } finally {
169N/A obj1 = obj2 = null;
169N/A ActivationLibrary.rmidCleanup(rmid);
169N/A }
0N/A }
0N/A}