23
23
24
24
/**
25
25
* @test
26
- * @summary Basic tests for virtual threads doing blocking I/O with NIO channels
27
- * @compile --enable-preview -source ${jdk.version} NioChannels.java
28
- * @run testng/othervm/timeout=300 --enable-preview NioChannels
29
- * @run testng/othervm/timeout=300 --enable-preview -Djdk.useDirectRegister NioChannels
26
+ * @summary Basic tests of virtual threads doing blocking I/O with NIO channels
27
+ * @library /test/lib
28
+ * @compile --enable-preview -source ${jdk.version} BlockingChannelOps.java
29
+ * @run testng/othervm/timeout=300 --enable-preview BlockingChannelOps
30
+ * @run testng/othervm/timeout=300 --enable-preview -Djdk.useDirectRegister BlockingChannelOps
30
31
*/
31
32
32
33
import java .io .Closeable ;
46
47
import java .nio .channels .SocketChannel ;
47
48
import java .nio .channels .WritableByteChannel ;
48
49
50
+ import jdk .test .lib .thread .VThreadRunner ;
49
51
import org .testng .annotations .Test ;
50
52
import static org .testng .Assert .*;
51
53
52
- public class NioChannels {
54
+ public class BlockingChannelOps {
53
55
private static final long DELAY = 4000 ;
54
56
55
57
/**
56
58
* SocketChannel read/write, no blocking.
57
59
*/
58
60
@ Test
59
61
public void testSocketChannelReadWrite1 () throws Exception {
60
- TestHelper . runInVirtualThread (() -> {
62
+ VThreadRunner . run (() -> {
61
63
try (var connection = new Connection ()) {
62
64
SocketChannel sc1 = connection .channel1 ();
63
65
SocketChannel sc2 = connection .channel2 ();
@@ -81,7 +83,7 @@ public void testSocketChannelReadWrite1() throws Exception {
81
83
*/
82
84
@ Test
83
85
public void testSocketChannelRead () throws Exception {
84
- TestHelper . runInVirtualThread (() -> {
86
+ VThreadRunner . run (() -> {
85
87
try (var connection = new Connection ()) {
86
88
SocketChannel sc1 = connection .channel1 ();
87
89
SocketChannel sc2 = connection .channel2 ();
@@ -104,7 +106,7 @@ public void testSocketChannelRead() throws Exception {
104
106
*/
105
107
@ Test
106
108
public void testSocketChannelWrite () throws Exception {
107
- TestHelper . runInVirtualThread (() -> {
109
+ VThreadRunner . run (() -> {
108
110
try (var connection = new Connection ()) {
109
111
SocketChannel sc1 = connection .channel1 ();
110
112
SocketChannel sc2 = connection .channel2 ();
@@ -128,7 +130,7 @@ public void testSocketChannelWrite() throws Exception {
128
130
*/
129
131
@ Test
130
132
public void testSocketChannelReadAsyncClose () throws Exception {
131
- TestHelper . runInVirtualThread (() -> {
133
+ VThreadRunner . run (() -> {
132
134
try (var connection = new Connection ()) {
133
135
SocketChannel sc = connection .channel1 ();
134
136
ScheduledCloser .schedule (sc , DELAY );
@@ -145,7 +147,7 @@ public void testSocketChannelReadAsyncClose() throws Exception {
145
147
*/
146
148
@ Test
147
149
public void testSocketChannelReadInterrupt () throws Exception {
148
- TestHelper . runInVirtualThread (() -> {
150
+ VThreadRunner . run (() -> {
149
151
try (var connection = new Connection ()) {
150
152
SocketChannel sc = connection .channel1 ();
151
153
ScheduledInterrupter .schedule (Thread .currentThread (), DELAY );
@@ -164,7 +166,7 @@ public void testSocketChannelReadInterrupt() throws Exception {
164
166
*/
165
167
@ Test
166
168
public void testSocketChannelWriteAsyncClose () throws Exception {
167
- TestHelper . runInVirtualThread (() -> {
169
+ VThreadRunner . run (() -> {
168
170
try (var connection = new Connection ()) {
169
171
SocketChannel sc = connection .channel1 ();
170
172
ScheduledCloser .schedule (sc , DELAY );
@@ -185,7 +187,7 @@ public void testSocketChannelWriteAsyncClose() throws Exception {
185
187
*/
186
188
@ Test
187
189
public void testSocketChannelWriteInterrupt () throws Exception {
188
- TestHelper . runInVirtualThread (() -> {
190
+ VThreadRunner . run (() -> {
189
191
try (var connection = new Connection ()) {
190
192
SocketChannel sc = connection .channel1 ();
191
193
ScheduledInterrupter .schedule (Thread .currentThread (), DELAY );
@@ -220,7 +222,7 @@ public void testSocketAdaptorRead2() throws Exception {
220
222
}
221
223
222
224
private void testSocketAdaptorRead (int timeout ) throws Exception {
223
- TestHelper . runInVirtualThread (() -> {
225
+ VThreadRunner . run (() -> {
224
226
try (var connection = new Connection ()) {
225
227
SocketChannel sc1 = connection .channel1 ();
226
228
SocketChannel sc2 = connection .channel2 ();
@@ -246,7 +248,7 @@ private void testSocketAdaptorRead(int timeout) throws Exception {
246
248
*/
247
249
@ Test
248
250
public void testServerSocketChannelAccept1 () throws Exception {
249
- TestHelper . runInVirtualThread (() -> {
251
+ VThreadRunner . run (() -> {
250
252
try (var ssc = ServerSocketChannel .open ()) {
251
253
ssc .bind (new InetSocketAddress (InetAddress .getLoopbackAddress (), 0 ));
252
254
var sc1 = SocketChannel .open (ssc .getLocalAddress ());
@@ -263,7 +265,7 @@ public void testServerSocketChannelAccept1() throws Exception {
263
265
*/
264
266
@ Test
265
267
public void testServerSocketChannelAccept2 () throws Exception {
266
- TestHelper . runInVirtualThread (() -> {
268
+ VThreadRunner . run (() -> {
267
269
try (var ssc = ServerSocketChannel .open ()) {
268
270
ssc .bind (new InetSocketAddress (InetAddress .getLoopbackAddress (), 0 ));
269
271
var sc1 = SocketChannel .open ();
@@ -281,7 +283,7 @@ public void testServerSocketChannelAccept2() throws Exception {
281
283
*/
282
284
@ Test
283
285
public void testServerSocketChannelAcceptAsyncClose () throws Exception {
284
- TestHelper . runInVirtualThread (() -> {
286
+ VThreadRunner . run (() -> {
285
287
try (var ssc = ServerSocketChannel .open ()) {
286
288
InetAddress lh = InetAddress .getLoopbackAddress ();
287
289
ssc .bind (new InetSocketAddress (lh , 0 ));
@@ -300,7 +302,7 @@ public void testServerSocketChannelAcceptAsyncClose() throws Exception {
300
302
*/
301
303
@ Test
302
304
public void testServerSocketChannelAcceptInterrupt () throws Exception {
303
- TestHelper . runInVirtualThread (() -> {
305
+ VThreadRunner . run (() -> {
304
306
try (var ssc = ServerSocketChannel .open ()) {
305
307
InetAddress lh = InetAddress .getLoopbackAddress ();
306
308
ssc .bind (new InetSocketAddress (lh , 0 ));
@@ -333,7 +335,7 @@ public void testSocketChannelAdaptorAccept2() throws Exception {
333
335
}
334
336
335
337
private void testSocketChannelAdaptorAccept (int timeout ) throws Exception {
336
- TestHelper . runInVirtualThread (() -> {
338
+ VThreadRunner . run (() -> {
337
339
try (var ssc = ServerSocketChannel .open ()) {
338
340
ssc .bind (new InetSocketAddress (InetAddress .getLoopbackAddress (), 0 ));
339
341
var sc1 = SocketChannel .open ();
@@ -355,7 +357,7 @@ private void testSocketChannelAdaptorAccept(int timeout) throws Exception {
355
357
*/
356
358
@ Test
357
359
public void testDatagramChannelSendReceive1 () throws Exception {
358
- TestHelper . runInVirtualThread (() -> {
360
+ VThreadRunner . run (() -> {
359
361
try (DatagramChannel dc1 = DatagramChannel .open ();
360
362
DatagramChannel dc2 = DatagramChannel .open ()) {
361
363
@@ -380,7 +382,7 @@ public void testDatagramChannelSendReceive1() throws Exception {
380
382
*/
381
383
@ Test
382
384
public void testDatagramChannelSendReceive2 () throws Exception {
383
- TestHelper . runInVirtualThread (() -> {
385
+ VThreadRunner . run (() -> {
384
386
try (DatagramChannel dc1 = DatagramChannel .open ();
385
387
DatagramChannel dc2 = DatagramChannel .open ()) {
386
388
@@ -404,7 +406,7 @@ public void testDatagramChannelSendReceive2() throws Exception {
404
406
*/
405
407
@ Test
406
408
public void testDatagramChannelReceiveAsyncClose () throws Exception {
407
- TestHelper . runInVirtualThread (() -> {
409
+ VThreadRunner . run (() -> {
408
410
try (DatagramChannel dc = DatagramChannel .open ()) {
409
411
InetAddress lh = InetAddress .getLoopbackAddress ();
410
412
dc .bind (new InetSocketAddress (lh , 0 ));
@@ -422,7 +424,7 @@ public void testDatagramChannelReceiveAsyncClose() throws Exception {
422
424
*/
423
425
@ Test
424
426
public void testDatagramChannelReceiveInterrupt () throws Exception {
425
- TestHelper . runInVirtualThread (() -> {
427
+ VThreadRunner . run (() -> {
426
428
try (DatagramChannel dc = DatagramChannel .open ()) {
427
429
InetAddress lh = InetAddress .getLoopbackAddress ();
428
430
dc .bind (new InetSocketAddress (lh , 0 ));
@@ -454,7 +456,7 @@ public void testDatagramSocketAdaptorReceive2() throws Exception {
454
456
}
455
457
456
458
private void testDatagramSocketAdaptorReceive (int timeout ) throws Exception {
457
- TestHelper . runInVirtualThread (() -> {
459
+ VThreadRunner . run (() -> {
458
460
try (DatagramChannel dc1 = DatagramChannel .open ();
459
461
DatagramChannel dc2 = DatagramChannel .open ()) {
460
462
@@ -481,7 +483,7 @@ private void testDatagramSocketAdaptorReceive(int timeout) throws Exception {
481
483
*/
482
484
@ Test
483
485
public void testPipeReadWrite1 () throws Exception {
484
- TestHelper . runInVirtualThread (() -> {
486
+ VThreadRunner . run (() -> {
485
487
Pipe p = Pipe .open ();
486
488
try (Pipe .SinkChannel sink = p .sink ();
487
489
Pipe .SourceChannel source = p .source ()) {
@@ -505,7 +507,7 @@ public void testPipeReadWrite1() throws Exception {
505
507
*/
506
508
@ Test
507
509
public void testPipeReadWrite2 () throws Exception {
508
- TestHelper . runInVirtualThread (() -> {
510
+ VThreadRunner . run (() -> {
509
511
Pipe p = Pipe .open ();
510
512
try (Pipe .SinkChannel sink = p .sink ();
511
513
Pipe .SourceChannel source = p .source ()) {
@@ -528,7 +530,7 @@ public void testPipeReadWrite2() throws Exception {
528
530
*/
529
531
@ Test
530
532
public void testPipeReadWrite3 () throws Exception {
531
- TestHelper . runInVirtualThread (() -> {
533
+ VThreadRunner . run (() -> {
532
534
Pipe p = Pipe .open ();
533
535
try (Pipe .SinkChannel sink = p .sink ();
534
536
Pipe .SourceChannel source = p .source ()) {
@@ -552,7 +554,7 @@ public void testPipeReadWrite3() throws Exception {
552
554
*/
553
555
@ Test
554
556
public void testPipeReadAsyncClose () throws Exception {
555
- TestHelper . runInVirtualThread (() -> {
557
+ VThreadRunner . run (() -> {
556
558
Pipe p = Pipe .open ();
557
559
try (Pipe .SourceChannel source = p .source ()) {
558
560
ScheduledCloser .schedule (source , DELAY );
@@ -569,7 +571,7 @@ public void testPipeReadAsyncClose() throws Exception {
569
571
*/
570
572
@ Test
571
573
public void testPipeReadInterrupt () throws Exception {
572
- TestHelper . runInVirtualThread (() -> {
574
+ VThreadRunner . run (() -> {
573
575
Pipe p = Pipe .open ();
574
576
try (Pipe .SourceChannel source = p .source ()) {
575
577
ScheduledInterrupter .schedule (Thread .currentThread (), DELAY );
@@ -588,7 +590,7 @@ public void testPipeReadInterrupt() throws Exception {
588
590
*/
589
591
@ Test
590
592
public void testPipeWriteAsyncClose () throws Exception {
591
- TestHelper . runInVirtualThread (() -> {
593
+ VThreadRunner . run (() -> {
592
594
Pipe p = Pipe .open ();
593
595
try (Pipe .SinkChannel sink = p .sink ()) {
594
596
ScheduledCloser .schedule (sink , DELAY );
@@ -609,7 +611,7 @@ public void testPipeWriteAsyncClose() throws Exception {
609
611
*/
610
612
@ Test
611
613
public void testPipeWriteInterrupt () throws Exception {
612
- TestHelper . runInVirtualThread (() -> {
614
+ VThreadRunner . run (() -> {
613
615
Pipe p = Pipe .open ();
614
616
try (Pipe .SinkChannel sink = p .sink ()) {
615
617
ScheduledInterrupter .schedule (Thread .currentThread (), DELAY );
0 commit comments