ActivateFails.java revision 0
286N/A/*
286N/A * Copyright 1998-2001 Sun Microsystems, Inc. All Rights Reserved.
286N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
286N/A *
286N/A * This code is free software; you can redistribute it and/or modify it
286N/A * under the terms of the GNU General Public License version 2 only, as
286N/A * published by the Free Software Foundation.
286N/A *
286N/A * This code is distributed in the hope that it will be useful, but WITHOUT
286N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
286N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
286N/A * version 2 for more details (a copy is included in the LICENSE file that
286N/A * accompanied this code).
286N/A *
286N/A * You should have received a copy of the GNU General Public License version
286N/A * 2 along with this work; if not, write to the Free Software Foundation,
286N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
286N/A *
286N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
286N/A * CA 95054 USA or visit www.sun.com if you need additional information or
286N/A * have any questions.
286N/A */
286N/A
286N/A/* @test
286N/A * @bug 4097135
286N/A * @summary Need a specific subtype of RemoteException for activation failure.
286N/A * If activation fails to happen during a call to a remote object,
286N/A * then the call should end in an ActivateFailedException. In this
286N/A * test, the actual "activatable" remote object fails to activate
286N/A * since its * "activation" constructor throws an exception.
286N/A * @author Ann Wollrath
286N/A *
286N/A * @library ../../../testlibrary
286N/A * @build TestLibrary RMID JavaVM StreamPipe
286N/A * @build ActivateMe
286N/A * @build ActivateFails
286N/A * @build ActivateFails_Stub
286N/A * @build ShutdownThread
286N/A * @run main/othervm/policy=security.policy/timeout=240 ActivateFails
286N/A */
286N/A
286N/Aimport java.rmi.*;
286N/Aimport java.rmi.server.*;
286N/Aimport java.rmi.activation.*;
286N/Aimport java.io.*;
286N/Aimport java.util.Properties;
286N/A
286N/Apublic class ActivateFails
286N/A extends Activatable
286N/A implements ActivateMe
286N/A{
286N/A
286N/A public ActivateFails(ActivationID id, MarshalledObject obj)
286N/A throws ActivationException, RemoteException
286N/A {
286N/A super(id, 0);
286N/A
286N/A boolean refuseToActivate = false;
286N/A try {
286N/A refuseToActivate = ((Boolean)obj.get()).booleanValue();
286N/A } catch (Exception impossible) {
286N/A }
286N/A
286N/A if (refuseToActivate)
286N/A throw new RemoteException("object refuses to activate");
286N/A }
286N/A
286N/A public void ping()
286N/A {}
286N/A
286N/A /**
286N/A * Spawns a thread to deactivate the object.
286N/A */
286N/A public ShutdownThread shutdown() throws Exception
286N/A {
286N/A ShutdownThread shutdownThread = new ShutdownThread(this, getID());
286N/A shutdownThread.start();
286N/A return(shutdownThread);
286N/A }
286N/A
286N/A public static void main(String[] args)
286N/A {
286N/A RMID rmid = null;
286N/A ActivateMe obj1, obj2;
286N/A ShutdownThread shutdownThread;
286N/A
286N/A System.err.println("\nRegression test for bug 4097135\n");
286N/A try {
286N/A TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
286N/A
286N/A /*
286N/A * First run "rmid" and wait for it to start up.
286N/A */
286N/A RMID.removeLog();
286N/A rmid = RMID.createRMID();
286N/A rmid.start();
286N/A
286N/A /* Cause activation groups to have a security policy that will
286N/A * allow security managers to be downloaded and installed
286N/A */
286N/A Properties p = new Properties();
286N/A // this test must always set policies/managers in its
286N/A // activation groups
286N/A p.put("java.security.policy",
286N/A TestParams.defaultGroupPolicy);
286N/A p.put("java.security.manager",
286N/A TestParams.defaultSecurityManager);
286N/A
286N/A /*
286N/A * Create activation descriptor...
286N/A */
286N/A System.err.println("creating activation descriptor...");
286N/A ActivationGroupDesc groupDesc =
286N/A new ActivationGroupDesc(p, null);
286N/A ActivationGroupID groupID =
286N/A ActivationGroup.getSystem().registerGroup(groupDesc);
286N/A
286N/A ActivationDesc desc1 =
286N/A new ActivationDesc(groupID, "ActivateFails",
286N/A null,
286N/A new MarshalledObject(new Boolean(true)));
286N/A
286N/A ActivationDesc desc2 =
286N/A new ActivationDesc(groupID, "ActivateFails",
286N/A null,
286N/A new MarshalledObject(new Boolean(false)));
286N/A /*
286N/A * Register activation descriptor and make a call on
286N/A * the stub. Activation should fail with an
286N/A * ActivateFailedException. If not, report an
286N/A * error as a RuntimeException
286N/A */
286N/A
286N/A System.err.println("registering activation descriptor...");
286N/A obj1 = (ActivateMe)Activatable.register(desc1);
286N/A obj2 = (ActivateMe)Activatable.register(desc2);
286N/A
286N/A System.err.println("invoking method on activatable object...");
286N/A try {
286N/A obj1.ping();
286N/A
286N/A } catch (ActivateFailedException e) {
286N/A
286N/A /*
286N/A * This is what is expected so exit with status 0
286N/A */
286N/A System.err.println("\nsuccess: ActivateFailedException " +
286N/A "generated");
286N/A e.getMessage();
286N/A }
286N/A
286N/A obj2.ping();
286N/A shutdownThread = obj2.shutdown();
286N/A
286N/A // wait for shutdown to work
286N/A Thread.sleep(2000);
286N/A
286N/A shutdownThread = null;
286N/A
286N/A } catch (Exception e) {
286N/A /*
286N/A * Test failed; unexpected exception generated.
286N/A */
286N/A TestLibrary.bomb("\nfailure: unexpected exception " +
286N/A e.getClass().getName() + ": " + e.getMessage(), e);
286N/A
286N/A } finally {
286N/A obj1 = obj2 = null;
286N/A ActivationLibrary.rmidCleanup(rmid);
286N/A }
286N/A }
286N/A}
286N/A
286N/A