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/net/ssl/SSLSocket/InputStreamClosure.java
38854 views
1
/*
2
* Copyright (c) 2019, 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
// Please run in othervm mode. SunJSSE does not support dynamic system
26
// properties, no way to re-use system properties in samevm/agentvm mode.
27
//
28
29
/*
30
* @test
31
* @bug 8216326
32
* @library /javax/net/ssl/templates
33
* @summary SSLSocket stream close() does not close the associated socket
34
* @run main/othervm InputStreamClosure
35
*/
36
import java.io.InputStream;
37
import java.io.OutputStream;
38
import javax.net.ssl.SSLSocket;
39
40
public class InputStreamClosure extends SSLSocketTemplate {
41
42
// Run the test case.
43
public static void main(String[] args) throws Exception {
44
(new InputStreamClosure()).run();
45
}
46
47
@Override
48
protected void runServerApplication(SSLSocket socket) throws Exception {
49
// here comes the test logic
50
InputStream sslIS = socket.getInputStream();
51
OutputStream sslOS = socket.getOutputStream();
52
53
sslIS.read();
54
sslOS.write(85);
55
sslOS.flush();
56
}
57
58
/*
59
* Define the client side application of the test for the specified socket.
60
* This method is used if the returned value of
61
* isCustomizedClientConnection() is false.
62
*
63
* @param socket may be null is no client socket is generated.
64
*
65
* @see #isCustomizedClientConnection()
66
*/
67
protected void runClientApplication(SSLSocket socket) throws Exception {
68
InputStream sslIS = socket.getInputStream();
69
OutputStream sslOS = socket.getOutputStream();
70
71
sslOS.write(280);
72
sslOS.flush();
73
sslIS.read();
74
75
sslIS.close();
76
if (!socket.isClosed()) {
77
throw new Exception("Closing the SSLSocket InputStream does " +
78
"not close the associated socket");
79
}
80
}
81
}
82
83