0N/A/*
2362N/A * Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 5057532
0N/A * @ignore Test will fail until 6338951 is resolved (java.net.URI now
0N/A * accepts "http://-a").
0N/A * @summary Tests that host names are parsed correctly in URLs
0N/A * @author Eamonn McManus
0N/A * @run clean URLTest
0N/A * @run build URLTest
0N/A * @run main URLTest
0N/A */
0N/A
0N/Aimport java.net.MalformedURLException;
0N/Aimport java.net.URISyntaxException;
0N/Aimport java.net.URI;
0N/Aimport javax.management.remote.JMXServiceURL;
0N/A
0N/Apublic class URLTest {
0N/A private static final String[] good = {
0N/A "",
0N/A "a",
0N/A "a.b",
0N/A "a.b.c.d.e.f.g",
0N/A "aaa.bbb",
0N/A "a-a.b-b",
0N/A "a-a",
0N/A "a--b",
0N/A "1.2.3.4",
0N/A "1.2.3.x",
0N/A "111.222.222.111",
0N/A "1",
0N/A "23skiddoo",
0N/A "23skiddoo.sfbay",
0N/A "a1.b2",
0N/A "1234.sfbay",
0N/A "[::]",
0N/A "[ffff::ffff]",
0N/A };
0N/A private static final String[] bad = {
0N/A "-a",
0N/A "a-",
0N/A "-",
0N/A "_",
0N/A "a_b",
0N/A "a_b.sfbay",
0N/A ".",
0N/A "..",
0N/A ".a",
0N/A "a.",
0N/A "a..",
0N/A "a..b",
0N/A ".a.b",
0N/A "a.b.",
0N/A "a.b..",
0N/A "1.2",
0N/A "111.222.333.444",
0N/A "a.23skiddoo",
0N/A "[:::]",
0N/A "[:]",
0N/A };
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A System.out.println("Testing that JMXServiceURL accepts the same " +
0N/A "hosts as java.net.URI");
0N/A System.out.println("(Except that it allows empty host names and " +
0N/A "forbids a trailing \".\")");
0N/A System.out.println();
0N/A
0N/A int failures = 0;
0N/A
0N/A for (int pass = 1; pass <= 2; pass++) {
0N/A final boolean accept = (pass == 1);
0N/A System.out.println(" Hosts that should " +
0N/A (accept ? "" : "not ") + "work");
0N/A String[] hosts = accept ? good : bad;
0N/A
0N/A for (int i = 0; i < hosts.length; i++) {
0N/A final String host = hosts[i];
0N/A System.out.print(" " + host + ": ");
0N/A
0N/A boolean jmxAccept = true;
0N/A try {
0N/A new JMXServiceURL("rmi", hosts[i], 0);
0N/A } catch (MalformedURLException e) {
0N/A jmxAccept = false;
0N/A }
0N/A
0N/A boolean uriAccept;
0N/A try {
0N/A final URI uri = new URI("http://" + host + "/");
0N/A uriAccept = (uri.getHost() != null);
0N/A } catch (URISyntaxException e) {
0N/A uriAccept = false;
0N/A }
0N/A
0N/A final int len = host.length();
0N/A if (accept != uriAccept && len != 0 &&
0N/A !(len > 1 && host.charAt(len - 1) == '.'
0N/A && host.charAt(len - 2) != '.')) {
0N/A // JMXServiceURL allows empty host name; also
0N/A // java.net.URI allows trailing dot in hostname,
0N/A // following RFC 2396, but JMXServiceURL doesn't,
0N/A // following RFC 2609
0N/A System.out.println("TEST BUG: URI accept=" + uriAccept);
0N/A failures++;
0N/A } else {
0N/A if (jmxAccept == accept)
0N/A System.out.println("OK");
0N/A else {
0N/A System.out.println("FAILED");
0N/A failures++;
0N/A }
0N/A }
0N/A }
0N/A
0N/A System.out.println();
0N/A }
0N/A
0N/A if (failures == 0)
0N/A System.out.println("Test passed");
0N/A else {
0N/A System.out.println("TEST FAILURES: " + failures);
0N/A System.exit(1);
0N/A }
0N/A }
0N/A}