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
0N/A * @bug 4838640
0N/A * @summary test server close in different conditions.
0N/A * @author Shanliang JIANG
0N/A * @run clean CloseServerTest
0N/A * @run build CloseServerTest
0N/A * @run main CloseServerTest
0N/A */
0N/A
0N/Aimport java.net.MalformedURLException;
1790N/Aimport java.io.IOException;
0N/A
0N/Aimport javax.management.*;
0N/Aimport javax.management.remote.*;
0N/A
0N/Apublic class CloseServerTest {
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(">>> Tests for closing a server.");
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 } 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 server;
0N/A JMXServiceURL addr;
0N/A JMXConnector client;
0N/A MBeanServerConnection mserver;
0N/A
0N/A final ObjectName delegateName =
0N/A new ObjectName("JMImplementation:type=MBeanServerDelegate");
0N/A final NotificationListener dummyListener = new NotificationListener() {
0N/A public void handleNotification(Notification n, Object o) {
0N/A // do nothing
0N/A return;
0N/A }
0N/A };
0N/A
0N/A try {
0N/A // open and close
0N/A System.out.println(">>> Open and close a server.");
0N/A
0N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
0N/A server.stop();
0N/A
0N/A // open, start then close
0N/A System.out.println(">>> Open, start and close a server.");
0N/A
0N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
0N/A server.start();
0N/A server.stop();
0N/A
0N/A // with a client, but close the server first
0N/A System.out.println(">>> Open, start a server, create a client, close the server then the client.");
0N/A
0N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
0N/A server.start();
0N/A
0N/A addr = server.getAddress();
0N/A client = JMXConnectorFactory.newJMXConnector(addr, null);
0N/A client.connect(null);
0N/A
0N/A server.stop();
0N/A
0N/A try {
0N/A client.close();
0N/A } catch (Exception ee) {
0N/A // OK, the server has been closed
0N/A }
0N/A
0N/A // with a client, but close the client first
0N/A System.out.println(">>> Open, start a server, create a client, close the client then server.");
0N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
0N/A server.start();
0N/A
0N/A addr = server.getAddress();
0N/A client = JMXConnectorFactory.newJMXConnector(addr, null);
0N/A client.connect(null);
0N/A
0N/A client.close();
0N/A
0N/A server.stop();
0N/A
1790N/A // with a client listener, but close the server first
1790N/A System.out.println(">>> Open, start a server, create a client, add a listener, close the server then the client.");
1790N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
1790N/A server.start();
469N/A
1790N/A addr = server.getAddress();
1790N/A client = JMXConnectorFactory.newJMXConnector(addr, null);
1790N/A client.connect(null);
469N/A
1790N/A mserver = client.getMBeanServerConnection();
1790N/A mserver.addNotificationListener(delegateName, dummyListener, null, null);
0N/A
1790N/A server.stop();
469N/A
1790N/A try {
1790N/A client.close();
1790N/A } catch (Exception e) {
1790N/A // ok, it is because the server has been closed.
1790N/A }
0N/A
1790N/A // with a client listener, but close the client first
1790N/A System.out.println(">>> Open, start a server, create a client, add a listener, close the client then the server.");
1790N/A server = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
1790N/A server.start();
0N/A
1790N/A addr = server.getAddress();
1790N/A client = JMXConnectorFactory.newJMXConnector(addr, null);
1790N/A client.connect(null);
0N/A
1790N/A mserver = client.getMBeanServerConnection();
1790N/A mserver.addNotificationListener(delegateName, dummyListener, null, null);
469N/A
1790N/A client.close();
1790N/A server.stop();
0N/A } catch (MalformedURLException e) {
0N/A System.out.println(">>> Skipping unsupported URL " + u);
0N/A return true;
0N/A }
0N/A
0N/A return true;
0N/A }
0N/A}