0N/A/*
2362N/A * Copyright (c) 1998, 2002, 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/* This is no longer run directly. See runconstructor.sh
0N/A *
0N/A *
0N/A *
0N/A * This program tests the URL parser in the URL constructor. It
0N/A * tries to construct a variety of valid URLs with a given context
0N/A * (which may be null) and a variety of specs. It then compares the
0N/A * result with an expected value.
0N/A *
0N/A * It expects that a data file named "urls" be available in the
0N/A * current directory, from which it will get its testing data. The
0N/A * format of the file is:
0N/A *
0N/A * URL: null
0N/A * spec: jar:http://www.foo.com/dir1/jar.jar!/
0N/A * expected: jar:http://www.foo.com/dir1/jar.jar!/
0N/A *
0N/A * where URL is the context, spec is the spec and expected is the
0N/A * expected result. The first : must be followed by a space. Each test
0N/A * entry should be followed by a blank line.
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.net.URL;
0N/A
0N/Apublic class Constructor {
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A URL url = null;
0N/A String urls = "jar_urls";
0N/A if (args.length > 0 && args[0] != null) {
0N/A urls = args[0];
0N/A }
0N/A
0N/A File f = new File(urls);
0N/A InputStream file = new FileInputStream(f);
0N/A BufferedReader in = new BufferedReader(new InputStreamReader(file));
0N/A while(true) {
0N/A String context = in.readLine();
0N/A if (context == null) {
0N/A break;
0N/A }
0N/A context = getValue(context);
0N/A String spec = getValue(in.readLine());
0N/A String expected = getValue(in.readLine());
0N/A
0N/A if (context.equals("null")) {
0N/A url = new URL(spec);
0N/A } else {
0N/A url = new URL(new URL(context), spec);
0N/A }
0N/A if (!(url.toString().equals(expected))) {
0N/A throw new RuntimeException("error for: \n\tURL:" + context +
0N/A "\n\tspec: " + spec +
0N/A "\n\texpected: " + expected +
0N/A "\n\tactual: " + url.toString());
0N/A } else {
0N/A System.out.println("success for: " + url + "\n");
0N/A }
0N/A in.readLine();
0N/A }
0N/A in.close();
0N/A }
0N/A
0N/A private static String getValue(String value) {
0N/A return value.substring(value.indexOf(':') + 2);
0N/A }
0N/A}