0N/A/*
2362N/A * Copyright (c) 2003, 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/*
0N/A * @test CloseUnconnectedTest.java 1.1 03/08/28
0N/A * @bug 1234567
0N/A * @summary Open, connect then close multi-connectors.
0N/A * @author Shanliang JIANG
0N/A * @run clean MultiOpenCloseTest
0N/A * @run build MultiOpenCloseTest
0N/A * @run main MultiOpenCloseTest
0N/A */
0N/A
0N/A/*
0N/A * Test that we can create a connection, call connect() on it,
0N/A * then close it without anything surprising happening.
0N/A */
0N/A
0N/Aimport java.net.MalformedURLException;
0N/Aimport java.io.IOException;
0N/A
0N/Aimport javax.management.*;
0N/Aimport javax.management.remote.*;
0N/A
0N/Apublic class MultiOpenCloseTest {
0N/A private static final String[] protocols = {"rmi", "iiop", "jmxmp"};
0N/A private static final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
0N/A
0N/A public static void main(String[] args) {
0N/A System.out.println("Open, connect then close multi-connectors.");
0N/A
0N/A boolean ok = true;
0N/A for (int i = 0; i < protocols.length; i++) {
0N/A try {
0N/A if (!test(protocols[i])) {
0N/A System.out.println("Test failed for " + protocols[i]);
0N/A ok = false;
0N/A } else {
0N/A System.out.println("Test successed for " + protocols[i]);
0N/A }
0N/A } catch (Exception e) {
0N/A System.out.println("Test failed for " + protocols[i]);
0N/A e.printStackTrace(System.out);
0N/A ok = false;
0N/A }
0N/A }
0N/A
0N/A if (ok) {
0N/A System.out.println("Test passed");
0N/A return;
0N/A } else {
0N/A System.out.println("TEST FAILED");
0N/A System.exit(1);
0N/A }
0N/A }
0N/A
0N/A private static boolean test(String proto)
0N/A throws Exception {
0N/A System.out.println("Test for protocol " + proto);
0N/A JMXServiceURL u = new JMXServiceURL(proto, null, 0);
0N/A JMXConnectorServer s;
0N/A try {
0N/A s = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
0N/A } catch (MalformedURLException e) {
0N/A System.out.println("Skipping unsupported URL " + u);
0N/A return true;
0N/A }
0N/A s.start();
0N/A JMXServiceURL a = s.getAddress();
0N/A
0N/A final int MAX_ITERS = 10;
0N/A System.out.println("Looping for " + MAX_ITERS + "iterations...");
0N/A
0N/A for (int i=0; i<MAX_ITERS; i++) {
0N/A JMXConnector c = JMXConnectorFactory.newJMXConnector(a, null);
0N/A c.connect(null);
0N/A c.close();
0N/A }
0N/A
0N/A JMXConnector[] cs = new JMXConnector[MAX_ITERS];
0N/A for (int i=0; i<MAX_ITERS; i++) {
0N/A cs[i] = JMXConnectorFactory.newJMXConnector(a, null);
0N/A cs[i].connect(null);
0N/A }
0N/A
0N/A for (int i=0; i<MAX_ITERS; i++) {
0N/A cs[i].close();
0N/A }
0N/A
0N/A try {
0N/A Thread.sleep(100);
0N/A } catch (Exception ee) {
0N/A // should not
0N/A }
0N/A
0N/A // check state
0N/A for (int i=0; i<MAX_ITERS; i++) {
0N/A try {
0N/A cs[i].getMBeanServerConnection(null);
0N/A // no exception
0N/A System.out.println("Did not get an IOException as expected, failed to close a client.");
0N/A return false;
0N/A } catch (IOException ioe) {
0N/A // as expected
0N/A }
0N/A }
0N/A
0N/A s.stop();
0N/A return true;
0N/A }
0N/A}