test/java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4173960
  26  * @summary synopsis: Activatable objects cannot be restarted.
  27  * @author Laird Dornin
  28  *
  29  * @library ../../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp

  34  * @build TestLibrary RMID ActivationLibrary
  35  *     ActivateMe ForceLogSnapshot_Stub
  36  * @run main/othervm/policy=security.policy/timeout=640 ForceLogSnapshot
  37  */
  38 
  39 import java.io.*;
  40 import java.rmi.*;
  41 import java.rmi.activation.*;
  42 import java.rmi.server.*;
  43 import java.rmi.registry.*;
  44 import java.util.*;
  45 
  46 public class ForceLogSnapshot
  47         implements ActivateMe
  48 {
  49     /** how many activatable remote objects to create to test rmid */
  50     final public static int HOW_MANY = 50;
  51     final public static int NUM_GROUPS = 4;
  52     /** cause RMID to generate a snapshot every 10th activated object */
  53     final public static int SNAPSHOT_INTERVAL = 10;


 112     }
 113 
 114     public ActivationID getID() {
 115         return id;
 116     }
 117 
 118     public static void main(String[] args) {
 119 
 120         System.out.println("\nRegression test for bug 4173960\n");
 121 
 122         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
 123 
 124         RMID rmid = null;
 125         ForceLogSnapshot[] unicastObjs = new ForceLogSnapshot[HOW_MANY];
 126 
 127         try {
 128             String option = " -Dsun.rmi.activation.snapshotInterval=" +
 129                 SNAPSHOT_INTERVAL;
 130 
 131             RMID.removeLog();
 132             rmid = RMID.createRMID();
 133             rmid.addOptions(new String[] {option, "-Djava.compiler="});
 134             rmid.start();
 135 
 136             /* Cause activation groups to have a security policy that will
 137              * allow security managers to be downloaded and installed
 138              */
 139             Properties p = new Properties();
 140             // this test must always set policies/managers in its
 141             // activation groups
 142             p.put("java.security.policy",
 143                   TestParams.defaultGroupPolicy);
 144             p.put("java.security.manager",
 145                   TestParams.defaultSecurityManager);
 146 
 147             Object[][] stuff = new Object[HOW_MANY][];
 148             MarshalledObject restartMobj = null;
 149             ActivationGroupDesc groupDesc = null;
 150             MarshalledObject activateMobj = null;
 151             ActivationGroupID[] groupIDs = new ActivationGroupID[NUM_GROUPS];
 152             ActivationDesc restartableDesc = null;




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4173960
  26  * @summary synopsis: Activatable objects cannot be restarted.
  27  * @author Laird Dornin
  28  *
  29  * @library ../../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp
  34  *          java.base/sun.nio.ch
  35  * @build TestLibrary RMID ActivationLibrary
  36  *     ActivateMe ForceLogSnapshot_Stub
  37  * @run main/othervm/policy=security.policy/timeout=640 ForceLogSnapshot
  38  */
  39 
  40 import java.io.*;
  41 import java.rmi.*;
  42 import java.rmi.activation.*;
  43 import java.rmi.server.*;
  44 import java.rmi.registry.*;
  45 import java.util.*;
  46 
  47 public class ForceLogSnapshot
  48         implements ActivateMe
  49 {
  50     /** how many activatable remote objects to create to test rmid */
  51     final public static int HOW_MANY = 50;
  52     final public static int NUM_GROUPS = 4;
  53     /** cause RMID to generate a snapshot every 10th activated object */
  54     final public static int SNAPSHOT_INTERVAL = 10;


 113     }
 114 
 115     public ActivationID getID() {
 116         return id;
 117     }
 118 
 119     public static void main(String[] args) {
 120 
 121         System.out.println("\nRegression test for bug 4173960\n");
 122 
 123         TestLibrary.suggestSecurityManager("java.rmi.RMISecurityManager");
 124 
 125         RMID rmid = null;
 126         ForceLogSnapshot[] unicastObjs = new ForceLogSnapshot[HOW_MANY];
 127 
 128         try {
 129             String option = " -Dsun.rmi.activation.snapshotInterval=" +
 130                 SNAPSHOT_INTERVAL;
 131 
 132             RMID.removeLog();
 133             rmid = RMID.createRMIDOnEphemeralPort();
 134             rmid.addOptions(new String[] {option, "-Djava.compiler="});
 135             rmid.start();
 136 
 137             /* Cause activation groups to have a security policy that will
 138              * allow security managers to be downloaded and installed
 139              */
 140             Properties p = new Properties();
 141             // this test must always set policies/managers in its
 142             // activation groups
 143             p.put("java.security.policy",
 144                   TestParams.defaultGroupPolicy);
 145             p.put("java.security.manager",
 146                   TestParams.defaultSecurityManager);
 147 
 148             Object[][] stuff = new Object[HOW_MANY][];
 149             MarshalledObject restartMobj = null;
 150             ActivationGroupDesc groupDesc = null;
 151             MarshalledObject activateMobj = null;
 152             ActivationGroupID[] groupIDs = new ActivationGroupID[NUM_GROUPS];
 153             ActivationDesc restartableDesc = null;