/*
* 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 6199899
* @summary Tests reconnection done by a fetching notif thread.
* @author Shanliang JIANG
* @run clean NotifReconnectDeadlockTest
* @run build NotifReconnectDeadlockTest
* @run main NotifReconnectDeadlockTest
*/
/**
* "This test checks for a bug whereby reconnection did not work if (a) it was
* initiated by the fetchNotifications thread and (b) it succeeded. These conditions
* are not usual, since connection failure is usually caused by either idle timeout
* (which doesn't usually happen if fetchNotifications is running) or communication
* problems (which are usually permanent so reconnection fails). But they can happen,
* so we test for them here.
* The test sets a very short idle timeout, and effectively suspends the
* fetchNotifications thread by having it invoke a listener with a delay in it.
* This means that the idle timeout happens. When the delayed listener returns,
* the fetchNotifications thread will attempt to reconnect, and this attempt should
* succeed, so we meet the two conditions above.
* The test succeeds if there is indeed a reconnection, detected by the connection
* listener seeing an OPENED notification. The connection listener should not see
* a CLOSED or FAILED notification."
*/
public class NotifReconnectDeadlockTest {
">>> Tests reconnection done by a fetching notif thread.");
url,
env,
mbs);
null,
null);
// max test time: 2 minutes
synchronized(lock) {
new String[] {"javax.management.Notification"});
try {
} catch (Exception e) {}
}
}
if (clientState == null) {
throw new RuntimeException(
"No reconnection happened, need to reconfigure the test.");
throw new RuntimeException("Failed to reconnect.");
}
}
//--------------------------
// private classes
//--------------------------
implements NotificationEmitterMBean {
sendNotification(n);
}
}
public interface NotificationEmitterMBean {
}
// treat the client notif to know the end
if (n instanceof JMXConnectionNotification) {
clientState = n.getType();
">>> The client state has been changed to: "+clientState);
synchronized(lock) {
}
}
return;
}
synchronized(lock) {
try {
} catch (Exception e) {
// OK
}
}
}
};
}