/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 4183169
* @summary Minor problem with the way ReliableLog handles IOExceptions.
*
* @author Laird Dornin; code borrowed from Ann Wollrath
*
* @library ../../../testlibrary
* @build TestLibrary RMID
* TestSecurityManager RegisteringActivatable ShutdownGracefully_Stub
* @run main/othervm/policy=security.policy/timeout=700 ShutdownGracefully
*/
/**
* The test creates an rmid with a special security manager. After
* rmid makes two registrations (which is greater than rmid's
* snapshotInterval) the security manager stops allowing rmid to write
* to update and snapshot log files in rmid's log directory. The Test
* registers an Activatable object twice with different group ids.
* The second registration will cause rmid to have to write to a
* LogFile (it causes a snapshot) and the security manager will not
* allow the file write to happen. The test makes sure that rmid
* shuts down in a graceful manner without any explicit request to do
* so. The test will not exit for 400 seconds if rmid does not exit
* (after that time, the test will fail).
*/
public class ShutdownGracefully
{
try {
"java.rmi.RMISecurityManager");
// start an rmid.
// rmid needs to run with a security manager that
// simulates a log problem; rmid should also snapshot
// quickly.
"-Djava.security.manager=TestSecurityManager",
"-Dsun.rmi.activation.snapshotInterval=1"});
// rmid.addArguments(new String[] {
// "-C-Djava.rmi.server.logCalls=true"});
// Ensure that activation groups run with the correct
// security manager.
//
Properties p = new Properties();
p.put("java.security.policy",
p.put("java.security.manager",
"java.lang.SecurityManager");
"in a new VM");
new ActivationGroupDesc(p, null);
"via method call");
/*
* the security manager rmid is running with will stop
* rmid from writing to its log files; in 1.2.x this would
* have caused rmid to have thrown a runtime exception and
* continue running in an unstable state. With the fix
* for 4183169, rmid should shutdown gracefully instead.
*/
/*
* register another activatable with a new group id; rmid
* should not recover from this... I use two
* registrations to more closely simulate the environment
* in which the bug was found. In java versions with out
* the appropriate bug fix, rmid would hide a
* NullPointerException in this circumstance.
*/
try {
"object via method call");
} catch (ActivationException e) {
"call that should have failed...");
}
/*
* no longer needed because the security manager
* throws an exception during snapshot
*/
/*
try {
registering.shutdown();
System.err.println("received exception from remote " +
"call that should have failed...");
} catch (RemoteException e) {
}
*/
} catch (Exception e) {
} finally {
try {
} catch (InterruptedException e) {
}
registering = null;
// Need to make sure that rmid goes away by itself
if (rmidProcess != null) {
try {
synchronized (waitThread) {
if (!rmidDone) {
// ensure that this rmid does not infect
// other tests.
"gracefully in time");
}
}
} catch (Exception e) {
"to shut down");
}
}
// else rmid should be down
}
("\nsuccess: ShutdownGracefully test passed ");
}
private static boolean rmidDone = false;
/**
* class that waits for rmid to exit
*/
this.rmidProcess = rmidProcess;
}
public void run() {
try {
} catch (InterruptedException e) {
// should not happen
}
synchronized (this) {
// notify parent thread when rmid has exited
this.notify();
rmidDone = true;
}
}
}
/**
* implementation of RegisteringActivatable
*/
public ShutdownGracefully
{
super(id, 0);
}
/**
* Spawns a thread to deactivate the object.
*/
}
/**
* Thread to deactivate object. First attempts to make object
* inactive (via the inactive method). If that fails (the
* unexport the object forcibly.
*/
public void run() {
try {
} catch (InterruptedException e) {
}
}
}