0N/A/*
2362N/A * Copyright (c) 1998, 1999, 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 4109103
0N/A * @summary rmid should annotate child process output
0N/A *
0N/A * @author Laird Dornin; code borrowed from Ann Wollrath
0N/A *
0N/A * @library ../../../testlibrary
5551N/A * @build TestLibrary RMID MyRMI CheckAnnotations_Stub
0N/A * @run main/othervm/policy=security.policy/timeout=480 CheckAnnotations
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.rmi.*;
0N/Aimport java.rmi.server.*;
0N/Aimport java.rmi.activation.*;
0N/Aimport java.security.CodeSource;
0N/Aimport java.util.Properties;
0N/Aimport java.util.StringTokenizer;
0N/A
0N/A
0N/Apublic class CheckAnnotations
0N/A extends Activatable implements MyRMI, Runnable
0N/A{
0N/A
0N/A private static Object dummy = new Object();
0N/A private static MyRMI myRMI = null;
0N/A
0N/A // buffers to store rmid output.
0N/A private static ByteArrayOutputStream rmidOut = new ByteArrayOutputStream();
0N/A private static ByteArrayOutputStream rmidErr = new ByteArrayOutputStream();
0N/A
0N/A public static void main(String args[]) {
0N/A /*
0N/A * The following line is required with the JDK 1.2 VM so that the
0N/A * VM can exit gracefully when this test completes. Otherwise, the
0N/A * conservative garbage collector will find a handle to the server
0N/A * object on the native stack and not clear the weak reference to
0N/A * it in the RMI runtime's object table.
0N/A */
0N/A Object dummy1 = new Object();
0N/A RMID rmid = null;
0N/A
0N/A System.err.println("\nRegression test for bug/rfe 4109103\n");
0N/A
0N/A try {
0N/A
0N/A // Set security manager according to the
0N/A // testlibrary.
0N/A TestLibrary.suggestSecurityManager(TestParams.defaultSecurityManager);
0N/A
0N/A // start an rmid.
0N/A RMID.removeLog();
0N/A rmid = RMID.createRMID(rmidOut, rmidErr, false);
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 /* new desc - we will reuse in order to get multiple vms.*/
0N/A System.err.println("Create activation group in this VM");
0N/A ActivationGroupDesc groupDesc =
0N/A new ActivationGroupDesc(p, null);
0N/A ActivationSystem system = ActivationGroup.getSystem();
0N/A ActivationGroupID groupID = system.registerGroup(groupDesc);
0N/A ActivationGroup.createGroup(groupID, groupDesc, 0);
0N/A
0N/A ActivationDesc desc = new ActivationDesc
0N/A ("CheckAnnotations", null, null);
0N/A myRMI = (MyRMI) Activatable.register(desc);
0N/A
0N/A /* The test-
0N/A * Loop a bunch of times to force activator to
0N/A * spawn VMs (groups)
0N/A */
0N/A for (int i = 0; i < 3; i++) {
0N/A
0N/A // object activated in annotation check via method call
0N/A if(!checkAnnotations(i-1)) {
0N/A TestLibrary.bomb("Test failed: output improperly annotated.");
0N/A }
0N/A
0N/A /*
0N/A * Clean up object too.
0N/A */
0N/A System.err.println
0N/A ("Deactivate object via method call");
0N/A myRMI.shutdown();
0N/A }
0N/A System.err.println
0N/A ("\nsuccess: CheckAnnotations test passed ");
0N/A
0N/A } catch (Exception e) {
0N/A TestLibrary.bomb("\nfailure: unexpected exception ", e);
0N/A } finally {
0N/A try {
0N/A Thread.sleep(4000);
0N/A } catch (InterruptedException e) {
0N/A }
0N/A
0N/A myRMI = null;
0N/A System.err.println("rmid shut down");
0N/A ActivationLibrary.rmidCleanup(rmid);
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * check to make sure that the output from a spawned vm is
0N/A * formatted/annotated properly.
0N/A */
0N/A public static boolean checkAnnotations(int iteration)
0N/A throws IOException
0N/A {
0N/A try {
0N/A Thread.sleep(5000);
0N/A } catch(Exception e) {
0N/A System.err.println(e.getMessage());
0N/A }
0N/A
0N/A /**
0N/A * cause the spawned vm to generate output that will
0N/A * be checked for proper annotation. printOut is
0N/A * actually being called on an activated implementation.
0N/A */
0N/A myRMI.printOut("out" + iteration);
0N/A myRMI.printErr("err" + iteration);
0N/A myRMI.printOut("out" + iteration);
0N/A myRMI.printErr("err" + iteration);
0N/A
0N/A /* we have to wait for output to filter down
0N/A * from children so we can read it before we
0N/A * kill rmid.
0N/A */
0N/A
0N/A String outString = null;
0N/A String errString = null;
0N/A
0N/A for (int i = 0 ; i < 5 ; i ++ ) {
0N/A // have to give output from rmid time to trickle down to
0N/A // this process
0N/A try {
0N/A Thread.sleep(4000);
0N/A } catch(InterruptedException e) {
0N/A }
0N/A
0N/A outString = rmidOut.toString();
0N/A errString = rmidErr.toString();
0N/A
0N/A if ((!outString.equals("")) &&
0N/A (!errString.equals("")))
0N/A {
0N/A System.err.println("obtained annotations");
0N/A break;
0N/A }
0N/A System.err.println("rmid output not yet received, retrying...");
0N/A }
0N/A
0N/A rmidOut.reset();
0N/A rmidErr.reset();
0N/A
0N/A // only test when we are annotating..., first run does not annotate
0N/A if (iteration >= 0) {
0N/A System.err.println("Checking annotations...");
0N/A System.err.println(outString);
0N/A System.err.println(errString);
0N/A
0N/A StringTokenizer stOut = new StringTokenizer(outString, ":");
0N/A StringTokenizer stErr = new StringTokenizer(errString, ":");
0N/A
0N/A String execErr = null;
0N/A String execOut = null;
0N/A String destOut = null;
0N/A String destErr = null;
0N/A String outTmp = null;
0N/A String errTmp = null;
0N/A
0N/A while (stOut.hasMoreTokens()) {
0N/A execOut = outTmp;
0N/A outTmp = destOut;
0N/A destOut = stOut.nextToken();
0N/A }
0N/A while (stErr.hasMoreTokens()) {
0N/A execErr = errTmp;
0N/A errTmp = destErr;
0N/A destErr = stErr.nextToken();
0N/A }
0N/A
0N/A if ((execErr == null)||(errTmp == null)||
0N/A (destErr == null)) {
0N/A return false;
0N/A }
0N/A if ((execOut == null)||(outTmp == null)||
0N/A (destOut == null)) {
0N/A return false;
0N/A }
0N/A
0N/A // just make sure that last two strings are what we expect.
0N/A if (execOut.equals("ExecGroup-" + iteration)
0N/A && (new String(destOut.substring(0,4)).equals("out" +
0N/A iteration))
0N/A && (execErr.equals("ExecGroup-"+iteration))
0N/A && (new String(destErr.substring(0,4)).equals("err" +
0N/A iteration)) ) {
0N/A return true;
0N/A } else {
0N/A return false;
0N/A }
0N/A }
0N/A return true;
0N/A }
0N/A
0N/A // implementation of MyRMI, make this object activatable.
0N/A public CheckAnnotations
0N/A (ActivationID id, MarshalledObject mo)
0N/A throws RemoteException {
0N/A
0N/A // register/export anonymously
0N/A super(id,0);
0N/A }
0N/A
0N/A public void printOut(String toPrint) {
0N/A System.out.println(toPrint);
0N/A }
0N/A
0N/A public void printErr(String toPrint) {
0N/A System.err.println(toPrint);
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 (new Thread(this,"CheckAnnotations")).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 ActivationLibrary.deactivate(this, getID());
0N/A }
0N/A}