test/jdk/java/nio/channels/DatagramChannel/Sender.java
author bpb
Mon, 30 Apr 2018 13:40:39 -0700
changeset 49930 3aaaa5370999
parent 47216 71c04702a3d5
permissions -rw-r--r--
8202284: FileChannel and FileOutpuStream variants of AtomicAppend should fail silently on macOS >= 10.13 Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
     2
 * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/* @test
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    25
 * @bug 4669040 8130394
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @summary Test DatagramChannel subsequent receives with no datagram ready
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @author Mike McCloskey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    30
import java.io.IOException;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    31
import java.io.PrintStream;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    32
import java.net.InetAddress;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    33
import java.net.InetSocketAddress;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    34
import java.net.SocketAddress;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    35
import java.nio.ByteBuffer;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    36
import java.nio.ByteOrder;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    37
import java.nio.channels.DatagramChannel;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public class Sender {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    static PrintStream log = System.err;
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    42
    static volatile SocketAddress clientISA = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        test();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    static void test() throws Exception {
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    49
        Server server = new Server();
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    50
        Client client = new Client(server.port());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        Thread serverThread = new Thread(server);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        serverThread.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        Thread clientThread = new Thread(client);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        clientThread.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        serverThread.join();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        clientThread.join();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        server.throwException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        client.throwException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    65
    public static class Client implements Runnable {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    66
        final int port;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        Exception e = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    69
        Client(int port) {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    70
            this.port = port;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    73
        void throwException() throws Exception {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    74
            if (e != null)
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    75
                throw e;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                DatagramChannel dc = DatagramChannel.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                ByteBuffer bb = ByteBuffer.allocateDirect(12);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                bb.order(ByteOrder.BIG_ENDIAN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                bb.putInt(1).putLong(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                bb.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                InetAddress address = InetAddress.getLocalHost();
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    86
                InetSocketAddress isa = new InetSocketAddress(address, port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                dc.connect(isa);
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
    88
                clientISA = dc.getLocalAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                dc.write(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            } catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                e = ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    96
    public static class Server implements Runnable {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    97
        final DatagramChannel dc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        Exception e = null;
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
    99
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   100
        Server() throws IOException {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   101
            dc = DatagramChannel.open().bind(new InetSocketAddress(0));
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   102
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   104
        int port() {
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   105
            return dc.socket().getLocalPort();
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   106
        }
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   107
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   108
        void throwException() throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            if (e != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        void showBuffer(String s, ByteBuffer bb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            log.println(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            bb.rewind();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            for (int i=0; i<bb.limit(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                byte element = bb.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                log.print(element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            log.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            SocketAddress sa = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   126
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                ByteBuffer bb = ByteBuffer.allocateDirect(12);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                bb.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                // Get the one valid datagram
5788
50d4ad1a780f 6961062: (dc) Several DatagramChannel tests timeout or fail with "address already in use"
alanb
parents: 5506
diff changeset
   131
                dc.configureBlocking(false);
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   132
                while (sa == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                    sa = dc.receive(bb);
31719
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   134
                    if (sa != null && clientISA != null && !clientISA.equals(sa)) {
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   135
                        log.println("Ignore a possible stray diagram from " + sa);
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   136
                        sa = null;
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   137
                    }
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   138
                }
8c4b63e942fb 8130394: DatagramChannel tests need to be hardended to ignore stray datagrams
bpb
parents: 7668
diff changeset
   139
                showBuffer("Received:", bb);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                sa = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                for (int i=0; i<100; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                    bb.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                    sa = dc.receive(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                    if (sa != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                        throw new RuntimeException("Test failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                dc.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            } catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                e = ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
}