test/java/rmi/activation/Activatable/shutdownGracefully/ShutdownGracefully.java

Print this page




  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 4183169 8032050
  26  * @summary Minor problem with the way ReliableLog handles IOExceptions.
  27  *
  28  * @author Laird Dornin; code borrowed from Ann Wollrath
  29  *
  30  * @library ../../../testlibrary
  31  * @modules java.rmi/sun.rmi.registry
  32  *          java.rmi/sun.rmi.server
  33  *          java.rmi/sun.rmi.transport
  34  *          java.rmi/sun.rmi.transport.tcp

  35  * @build TestLibrary RMID
  36  *     TestSecurityManager RegisteringActivatable ShutdownGracefully_Stub
  37  * @run main/othervm/policy=security.policy/timeout=700 ShutdownGracefully
  38  */
  39 
  40 import java.rmi.activation.*;
  41 import java.rmi.*;
  42 import java.util.Properties;
  43 import java.util.concurrent.TimeoutException;
  44 
  45 /**
  46  * The test creates an rmid with a special security manager.  After
  47  * rmid makes two registrations (which is greater than rmid's
  48  * snapshotInterval) the security manager stops allowing rmid to write
  49  * to update and snapshot log files in rmid's log directory.  The Test
  50  * registers an Activatable object twice with different group ids.
  51  * The second registration will cause rmid to have to write to a
  52  * LogFile (it causes a snapshot) and the security manager will not
  53  * allow the file write to happen.  The test makes sure that rmid
  54  * shuts down in a graceful manner without any explicit request to do




  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 4183169 8032050
  26  * @summary Minor problem with the way ReliableLog handles IOExceptions.
  27  *
  28  * @author Laird Dornin; code borrowed from Ann Wollrath
  29  *
  30  * @library ../../../testlibrary
  31  * @modules java.rmi/sun.rmi.registry
  32  *          java.rmi/sun.rmi.server
  33  *          java.rmi/sun.rmi.transport
  34  *          java.rmi/sun.rmi.transport.tcp
  35  *          java.base/sun.nio.ch
  36  * @build TestLibrary RMID
  37  *     TestSecurityManager RegisteringActivatable ShutdownGracefully_Stub
  38  * @run main/othervm/policy=security.policy/timeout=700 ShutdownGracefully
  39  */
  40 
  41 import java.rmi.activation.*;
  42 import java.rmi.*;
  43 import java.util.Properties;
  44 import java.util.concurrent.TimeoutException;
  45 
  46 /**
  47  * The test creates an rmid with a special security manager.  After
  48  * rmid makes two registrations (which is greater than rmid's
  49  * snapshotInterval) the security manager stops allowing rmid to write
  50  * to update and snapshot log files in rmid's log directory.  The Test
  51  * registers an Activatable object twice with different group ids.
  52  * The second registration will cause rmid to have to write to a
  53  * LogFile (it causes a snapshot) and the security manager will not
  54  * allow the file write to happen.  The test makes sure that rmid
  55  * shuts down in a graceful manner without any explicit request to do