test/jdk/java/nio/channels/TestUtil.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 14415 jdk/test/java/nio/channels/TestUtil.java@7a31b0e0cfaf
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 13028
diff changeset
     2
 * Copyright (c) 2000, 2012, 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: 1152
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1152
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1152
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 utilities
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Random;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
public class TestUtil {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    // Test hosts used by the channels tests - change these when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    // executing in a different network.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    public static final String UNRESOLVABLE_HOST = "blah-blah.blah-blah.blah";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private TestUtil() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    // Repeatedly try random ports until we bind to one.  You might be tempted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    // to do this:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    //     ServerSocketChannel ssc = ServerSocketChannel.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    //     ssc.socket().bind(new InetSocketAddress(0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    //     SocketAddress sa = ssc.socket().getLocalSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    // but unfortunately it doesn't work on NT 4.0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // Returns the bound port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    static int bind(ServerSocketChannel ssc) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        InetAddress lh = InetAddress.getLocalHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        Random r = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            int p = r.nextInt((1 << 16) - 1024) + 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            InetSocketAddress isa = new InetSocketAddress(lh, p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                ssc.socket().bind(isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            return p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    // A more convenient form of bind(ServerSocketChannel) that returns a full
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // socket address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    static InetSocketAddress bindToRandomPort(ServerSocketChannel ssc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        int p = bind(ssc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        return new InetSocketAddress(InetAddress.getLocalHost(), p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private static String osName = System.getProperty("os.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    static boolean onSolaris() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        return osName.startsWith("SunOS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    static boolean onWindows() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        return osName.startsWith("Windows");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
}