Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/net/ssl/SSLSocket/InputStreamClosure.java
41152 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
* @modules jdk.crypto.ec
33
* @library /javax/net/ssl/templates
34
* @summary SSLSocket stream close() does not close the associated socket
35
* @run main/othervm InputStreamClosure
36
*/
37
import java.io.InputStream;
38
import java.io.OutputStream;
39
import javax.net.ssl.SSLSocket;
40
41
public class InputStreamClosure extends SSLSocketTemplate {
42
43
// Run the test case.
44
public static void main(String[] args) throws Exception {
45
(new InputStreamClosure()).run();
46
}
47
48
@Override
49
protected void runServerApplication(SSLSocket socket) throws Exception {
50
// here comes the test logic
51
InputStream sslIS = socket.getInputStream();
52
OutputStream sslOS = socket.getOutputStream();
53
54
sslIS.read();
55
sslOS.write(85);
56
sslOS.flush();
57
}
58
59
/*
60
* Define the client side application of the test for the specified socket.
61
* This method is used if the returned value of
62
* isCustomizedClientConnection() is false.
63
*
64
* @param socket may be null is no client socket is generated.
65
*
66
* @see #isCustomizedClientConnection()
67
*/
68
protected void runClientApplication(SSLSocket socket) throws Exception {
69
InputStream sslIS = socket.getInputStream();
70
OutputStream sslOS = socket.getOutputStream();
71
72
sslOS.write(280);
73
sslOS.flush();
74
sslIS.read();
75
76
sslIS.close();
77
if (!socket.isClosed()) {
78
throw new Exception("Closing the SSLSocket InputStream does " +
79
"not close the associated socket");
80
}
81
}
82
}
83
84