Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/javax/management/remote/mandatory/connection/CloseUnconnectedTest.java
38867 views
1
/*
2
* Copyright (c) 2003, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* 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
39
import java.net.MalformedURLException;
40
41
import javax.management.*;
42
import javax.management.remote.*;
43
44
public 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
}
98
99