test/jdk/java/net/ipv6tests/TcpTest.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57805 e62f402c337f
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55102
59567035d279 8221481: Reimplement the Legacy Socket API
alanb
parents: 54903
diff changeset
     2
 * Copyright (c) 2003, 2019, 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: 5151
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5151
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5151
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
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4868820
36432
cb9e462e049a 8151260: Mark URLPermission/URLTest.java and ipv6tests/TcpTest.java as intermittently failing
amlu
parents: 34888
diff changeset
    27
 * @key intermittent
54746
61049e91eae5 8223463: Replace wildcard address with loopback or local host in tests - part 2
dfuchs
parents: 49799
diff changeset
    28
 * @summary IPv6 support for Windows XP and 2003 server. This test requires
61049e91eae5 8223463: Replace wildcard address with loopback or local host in tests - part 2
dfuchs
parents: 49799
diff changeset
    29
 *          binding to the wildcard address, and as such is susceptible
61049e91eae5 8223463: Replace wildcard address with loopback or local host in tests - part 2
dfuchs
parents: 49799
diff changeset
    30
 *          of intermittent failures caused by port reuse policy.
49799
33dcb9c42f55 8194260: Point-to-point interface should be excluded from java/net/ipv6tests/*
xiaofeya
parents: 47216
diff changeset
    31
 * @library /test/lib
33dcb9c42f55 8194260: Point-to-point interface should be excluded from java/net/ipv6tests/*
xiaofeya
parents: 47216
diff changeset
    32
 * @build jdk.test.lib.NetworkConfiguration
33dcb9c42f55 8194260: Point-to-point interface should be excluded from java/net/ipv6tests/*
xiaofeya
parents: 47216
diff changeset
    33
 *        jdk.test.lib.Platform
47017
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
    34
 * @run main TcpTest -d
55102
59567035d279 8221481: Reimplement the Legacy Socket API
alanb
parents: 54903
diff changeset
    35
 * @run main/othervm -Djdk.net.usePlainSocketImpl TcpTest -d
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
public class TcpTest extends Tests {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    static ServerSocket server, server1, server2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    static Socket c1, c2, c3, s1, s2, s3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    static InetAddress s1peer, s2peer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    static InetAddress ia4any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    static InetAddress ia6any;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    static Inet6Address ia6addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    static Inet4Address ia4addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        ia6addr = getFirstLocalIPv6Address ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        ia4addr = getFirstLocalIPv4Address ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            ia4any = InetAddress.getByName ("0.0.0.0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            ia6any = InetAddress.getByName ("::0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public static void main (String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        checkDebug(args);
54903
5a211ee83bf1 8224018: test/jdk/java/net/ipv6tests/{Tcp,Udp}Test.java assume IPv4 is available
aeubanks
parents: 54746
diff changeset
    64
        if (ia4addr == null) {
5a211ee83bf1 8224018: test/jdk/java/net/ipv6tests/{Tcp,Udp}Test.java assume IPv4 is available
aeubanks
parents: 54746
diff changeset
    65
            System.out.println ("No IPV4 addresses: exiting test");
5a211ee83bf1 8224018: test/jdk/java/net/ipv6tests/{Tcp,Udp}Test.java assume IPv4 is available
aeubanks
parents: 54746
diff changeset
    66
            return;
5a211ee83bf1 8224018: test/jdk/java/net/ipv6tests/{Tcp,Udp}Test.java assume IPv4 is available
aeubanks
parents: 54746
diff changeset
    67
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        if (ia6addr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            System.out.println ("No IPV6 addresses: exiting test");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        dprintln ("Local Addresses");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        dprintln (ia4addr.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        dprintln (ia6addr.toString());
34888
e3161752067f 8140472: java/net/ipv6tests/TcpTest.java failed intermittently with java.net.BindException: Address already in use: NET_Bind
xiaofeya
parents: 7668
diff changeset
    75
        test1();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        test2();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        test3();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        test4();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /* basic TCP connectivity test using IPv6 only and IPv4/IPv6 together */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
34888
e3161752067f 8140472: java/net/ipv6tests/TcpTest.java failed intermittently with java.net.BindException: Address already in use: NET_Bind
xiaofeya
parents: 7668
diff changeset
    83
    static void test1 () throws Exception {
e3161752067f 8140472: java/net/ipv6tests/TcpTest.java failed intermittently with java.net.BindException: Address already in use: NET_Bind
xiaofeya
parents: 7668
diff changeset
    84
        server = new ServerSocket (0);
e3161752067f 8140472: java/net/ipv6tests/TcpTest.java failed intermittently with java.net.BindException: Address already in use: NET_Bind
xiaofeya
parents: 7668
diff changeset
    85
        int port = server.getLocalPort();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        // try Ipv6 only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        c1 = new Socket ("::1", port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        s1 = server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        simpleDataExchange (c1, s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        s1.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        c1.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        // try with both IPv4 and Ipv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        c1 = new Socket ("127.0.0.1", port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        c2 = new Socket ("::1", port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        s1 = server.accept();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        s2 = server.accept();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        s1peer = s1.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        s2peer = s2.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        if (s1peer instanceof Inet6Address) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            t_assert ((s2peer instanceof Inet4Address));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            simpleDataExchange (c2, s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            simpleDataExchange (c1, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            t_assert ((s2peer instanceof Inet6Address));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            simpleDataExchange (c1, s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            simpleDataExchange (c2, s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        c1.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        c2.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        s1.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        s2.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        server.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        System.out.println ("Test1: OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /** bind tests:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *  1. bind to specific address IPv4 only (any port)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *  2. bind to specific address IPv6 only (any port)
34888
e3161752067f 8140472: java/net/ipv6tests/TcpTest.java failed intermittently with java.net.BindException: Address already in use: NET_Bind
xiaofeya
parents: 7668
diff changeset
   119
     *  3. bind to any address IPv4 (test collision)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    static void test2 () throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        server = new ServerSocket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        InetSocketAddress sadr = new InetSocketAddress (ia4addr, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        server.bind (sadr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        dprintln ("server bound to " + sadr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        int port = server.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        InetSocketAddress sadr6 = new InetSocketAddress (ia6addr, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        c1 = new Socket (ia4addr, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            dprintln ("connecting to " + ia6addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            c2 = new Socket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            c2.connect (sadr6, 1000);
57805
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   136
            dprintln ("Unexpected successful connection: " + c2);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   137
            // Connect should fail with timeout exception. However, if something else is
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   138
            // accepting connections, verify it is not our server.
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   139
            server.setSoTimeout(500);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   140
            // Ok if accept() fails because of timeout
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   141
            while (true) {
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   142
                // acceptedSocket could be connected to c1, but not c2
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   143
                try (Socket acceptedSocket = server.accept()) {
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   144
                    dprintln("accepted socket: " + acceptedSocket);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   145
                    if (acceptedSocket.getRemoteSocketAddress().equals(c2.getLocalSocketAddress()))
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   146
                        throw new RuntimeException("connect to IPv6 address should be refused");
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   147
                }
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   148
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        } catch (IOException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        server.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        c1.close ();
47017
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   152
        if (c2 != null) {
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   153
            c2.close();
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   154
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        /* now try IPv6 only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        server = new ServerSocket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        sadr = new InetSocketAddress (ia6addr, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        dprintln ("binding to " + sadr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        server.bind (sadr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        port = server.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        c1 = new Socket (ia6addr, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        try {
47017
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   166
            dprintln ("connecting to " + ia4addr);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            c2 = new Socket (ia4addr, port);
57805
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   168
            dprintln ("Unexpected successful connection: " + c2);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   169
            // Connect should fail with timeout exception. However, if something else is
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   170
            // accepting connections, verify it is not our server.
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   171
            server.setSoTimeout(500);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   172
            // Ok if accept() fails because of timeout
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   173
            while (true) {
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   174
                // acceptedSocket could be connected to c1, but not c2
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   175
                try (Socket acceptedSocket = server.accept()) {
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   176
                    dprintln("accepted socket: " + acceptedSocket);
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   177
                    if (acceptedSocket.getRemoteSocketAddress().equals(c2.getLocalSocketAddress()))
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   178
                        throw new RuntimeException("connect to IPv4 address should be refused");
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   179
                }
e62f402c337f 8229421: The logic of java/net/ipv6tests/TcpTest.java is flawed
dfuchs
parents: 55102
diff changeset
   180
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        } catch (IOException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        server.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        c1.close ();
47017
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   184
        if (c2 != null) {
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   185
            c2.close();
b19dea422270 8186818: Enable debug option for TcpTest.java
xiaofeya
parents: 36432
diff changeset
   186
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        System.out.println ("Test2: OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /* Test timeouts on accept(), connect() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    static void test3 () throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        server = new ServerSocket (0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        server.setSoTimeout (5000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        int port = server.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        long t1 = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            throw new RuntimeException ("accept should not have returned");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        } catch (SocketTimeoutException e) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        t1 = System.currentTimeMillis() - t1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        checkTime (t1, 5000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        c1 = new Socket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        c1.connect (new InetSocketAddress (ia4addr, port), 1000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        s1 = server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        simpleDataExchange (c1,s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        c2 = new Socket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        c2.connect (new InetSocketAddress (ia6addr, port), 1000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        s2 = server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        simpleDataExchange (c2,s2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        c3 = new Socket ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        c3.connect (new InetSocketAddress (ia6addr, port), 1000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        s3 = server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        c2.close (); s2.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        server.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        simpleDataExchange (c3,s3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        c1.close (); c2.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        s1.close (); s2.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        System.out.println ("Test3: OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /* Test: connect to IPv4 mapped address  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    static void test4 () throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        server = new ServerSocket (0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        int port = server.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        /* create an IPv4 mapped address corresponding to local host */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        byte[] b = {0,0,0,0,0,0,0,0,0,0,(byte)0xff,(byte)0xff,0,0,0,0};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        byte[] ia4 = ia4addr.getAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        b[12] = ia4[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        b[13] = ia4[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        b[14] = ia4[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        b[15] = ia4[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        InetAddress dest = InetAddress.getByAddress (b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        c1 = new Socket (dest, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        s1 = server.accept ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        simpleDataExchange (c1,s1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        c1.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        s1.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        server.close ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        System.out.println ("Test4: OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
}