Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/Socket/asyncClose/AsyncClose.java
41153 views
1
/*
2
* Copyright (c) 2001, 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
import java.util.ArrayList;
25
import java.util.List;
26
import java.util.concurrent.CompletableFuture;
27
import jdk.test.lib.net.IPSupport;
28
import static java.util.concurrent.CompletableFuture.*;
29
30
/*
31
* @test
32
* @bug 4344135
33
* @library /test/lib
34
* @summary Check that {Socket,ServerSocket,DatagramSocket}.close will
35
* cause any thread blocked on the socket to throw a SocketException.
36
* @run main AsyncClose
37
* @run main/othervm -Djava.net.preferIPv4Stack=true AsyncClose
38
* @run main/othervm -Djdk.net.usePlainSocketImpl AsyncClose
39
*/
40
41
public class AsyncClose {
42
43
public static void main(String args[]) throws Exception {
44
IPSupport.throwSkippedExceptionIfNonOperational();
45
46
AsyncCloseTest tests[] = {
47
new Socket_getInputStream_read(),
48
new Socket_getInputStream_read(20000),
49
new Socket_getOutputStream_write(),
50
new DatagramSocket_receive(),
51
new DatagramSocket_receive(20000),
52
new ServerSocket_accept(),
53
new ServerSocket_accept(20000),
54
};
55
56
int failures = 0;
57
58
List<CompletableFuture<AsyncCloseTest>> cfs = new ArrayList<>();
59
for (AsyncCloseTest test : tests)
60
cfs.add( supplyAsync(() -> test.go()));
61
62
for (CompletableFuture<AsyncCloseTest> cf : cfs) {
63
AsyncCloseTest test = cf.get();
64
65
System.out.println("******************************");
66
System.out.println("Test: " + test.description());
67
if (test.hasPassed()) {
68
System.out.println("Passed.");
69
} else {
70
System.out.println("Failed: " + test.failureReason());
71
failures++;
72
}
73
System.out.println("");
74
}
75
76
if (failures > 0)
77
throw new Exception(failures + " sub-tests failed - see log.");
78
}
79
}
80
81