blob: 52729cebfe85046aa59e7765468bafb117dc60a5 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 * @test CloseUnconnectedTest.java 1.1 03/07/28
26 * @bug 4897052
27 * @summary Tests that opening and immediately closing a connector works
28 * @author Eamonn McManus
29 * @run clean CloseUnconnectedTest
30 * @run build CloseUnconnectedTest
31 * @run main CloseUnconnectedTest
32 */
33
34/*
35 * Test that we can create a connection, but never call connect() on it,
36 * then close it again without anything surprising happening.
37 */
38
39import java.net.MalformedURLException;
40
41import javax.management.*;
42import javax.management.remote.*;
43
44public class CloseUnconnectedTest {
45 private static final String[] protocols = {"rmi", "iiop", "jmxmp"};
46
47 public static void main(String[] args) {
48 System.out.println("Test that a connection can be opened and " +
49 "immediately closed without any operations");
50
51 MBeanServer mbs = MBeanServerFactory.createMBeanServer();
52
53 boolean ok = true;
54 for (int i = 0; i < protocols.length; i++) {
55 try {
56 if (!test(protocols[i], mbs)) {
57 System.out.println("Test failed for " + protocols[i]);
58 ok = false;
59 } else {
60 System.out.println("Test successed for " + protocols[i]);
61 }
62 } catch (Exception e) {
63 System.out.println("Test failed for " + protocols[i]);
64 e.printStackTrace(System.out);
65 ok = false;
66 }
67 }
68
69 if (ok) {
70 System.out.println("Test passed");
71 return;
72 } else {
73 System.out.println("TEST FAILED");
74 System.exit(1);
75 }
76 }
77
78 private static boolean test(String proto, MBeanServer mbs)
79 throws Exception {
80 System.out.println("Test immediate client close for protocol " +
81 proto);
82 JMXServiceURL u = new JMXServiceURL(proto, null, 0);
83 JMXConnectorServer s;
84 try {
85 s = JMXConnectorServerFactory.newJMXConnectorServer(u, null, mbs);
86 } catch (MalformedURLException e) {
87 System.out.println("Skipping unsupported URL " + u);
88 return true;
89 }
90 s.start();
91 JMXServiceURL a = s.getAddress();
92 JMXConnector c = JMXConnectorFactory.newJMXConnector(a, null);
93 c.close();
94 s.stop();
95 return true;
96 }
97}