jdk/test/java/nio/channels/SocketChannel/UnboundSocketTests.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 5970 d4e98bbfb0be
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun

/*
 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/* @test
 * @bug 6442073
 * @summary Check getXXX methods for local/remote port/address/socketaddress
 *          match socket spec for unbound case
 */
import java.net.*;
import java.nio.channels.*;

public class UnboundSocketTests {

    static int failures = 0;

    static void check(String msg, Object actual, Object expected) {
        System.out.format("%s expected: %s, actual: %s", msg, expected, actual);
        if (actual == expected) {
            System.out.println(" [PASS]");
        } else {
            System.out.println(" [FAIL]");
            failures++;
        }
    }

    static void checkIsAnyLocalAddress(String msg, InetAddress actual) {
        System.out.format("%s actual: %s", msg, actual);
        if (actual.isAnyLocalAddress()) {
            System.out.println(" [PASS]");
        } else {
            System.out.println(" [FAIL]");
            failures++;
        }
    }

    public static void main(String[] args) throws Exception {
        System.out.println("\n-- SocketChannel --");

        SocketChannel sc = SocketChannel.open();

        check("getLocalPort()", sc.socket().getLocalPort(), -1);
        checkIsAnyLocalAddress("getLocalAddress()",
            sc.socket().getLocalAddress());
        check("getLocalSocketAddress()", sc.socket().getLocalSocketAddress(), null);

        check("getPort()", sc.socket().getPort(), 0);
        check("getInetAddress()", sc.socket().getInetAddress(), null);
        check("getRemoteSocketAddress()", sc.socket().getRemoteSocketAddress(), null);


        System.out.println("\n-- ServerSocketChannel --");

        ServerSocketChannel ssc = ServerSocketChannel.open();

        check("getLocalPort()", ssc.socket().getLocalPort(), -1);
        check("getInetAddress()", ssc.socket().getInetAddress(), null);
        check("getLocalSocketAddress()", ssc.socket().getLocalSocketAddress(), null);

        System.out.println("\n-- DatagramChannel --");

        DatagramChannel dc = DatagramChannel.open();

        // not specified
        check("getLocalPort()", dc.socket().getLocalPort(), 0);

        checkIsAnyLocalAddress("getLocalAddress()",
            dc.socket().getLocalAddress());
        check("getLocalSocketAddress()", dc.socket().getLocalSocketAddress(), null);

        check("getPort()", dc.socket().getPort(), -1);
        check("getInetAddress()", dc.socket().getInetAddress(), null);
        check("getRemoteSocketAddress()", dc.socket().getRemoteSocketAddress(), null);

        if (failures > 0) {
            throw new RuntimeException(failures + " sub-tests(s) failed.");
        }

    }
}