1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* Copyright (c) 1998, 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 4110602
* @author Benjamin Renaud
* @summary check that URLClassLoader correctly interprets Class-Path
*
* This test ensures that a manually constructed URLClassLoader is
* able to:
*
* 1. load a class
* 2. resolve Class-Path dependencies
* 3. have that class use a dependent class in a different JAR file
*/
import java.util.jar.*;
import java.util.*;
import java.io.*;
import java.net.*;
public class ClassPathTest {
JarFile jarFile;
Manifest manifest;
Attributes mainAttributes;
Map map;
URLClassLoader ucl;
static class TestException extends RuntimeException {
TestException(Throwable t) {
super("URLClassLoader ClassPathTest failed with: " + t);
}
}
public ClassPathTest() {
File local = new File(System.getProperty("test.src", "."),
"jars/class_path_test.jar");
String jarFileName = local.getPath();
try {
jarFile = new JarFile(jarFileName);
}
catch (IOException e) {
System.err.println("Could not find jar file " + jarFileName);
throw new TestException(e);
}
try {
URL url = getUrl(new File(jarFileName));
System.out.println("url: " + url);
ucl = new URLClassLoader(new URL[] { url });
// Moved this inside try block, as it may raise IOException.
// (maddox)
manifest = jarFile.getManifest();
}
catch (Exception e) {
throw new TestException(e);
}
//manifest = jarFile.getManifest();
mainAttributes = manifest.getMainAttributes();
map = manifest.getEntries();
Iterator it = map.entrySet().iterator();
Class clazz = null;
while (it.hasNext()) {
Map.Entry e = (Map.Entry)it.next();
Attributes a = (Attributes)e.getValue();
Attributes.Name an = new Attributes.Name("Class-Path");
if (a.containsKey(an)) {
String val = a.getValue(an);
if (val != null)
System.out.println("Class-Path: " + val);
}
if (a.containsKey(new Attributes.Name("Java-Bean"))) {
String beanClassName = nameToClassName((String)e.getKey());
System.out.println("JavaBean Class: " + beanClassName);
try {
clazz = ucl.loadClass(beanClassName);
}
catch (Throwable t) {
throw new TestException(t);
} if (clazz != null) {
try {
System.out.println("instantiating " + beanClassName);
clazz.newInstance();
System.out.println("done instantiating " +
beanClassName);
} catch (Throwable t2) {
throw new TestException(t2);
}
}
}
}
}
String nameToClassName(String key) {
String key2 = key.replace('/', File.separatorChar);
int li = key2.lastIndexOf(".class");
key2 = key2.substring(0, li);
return key2;
}
private static URL getUrl(File file) {
String name;
try {
name = file.getCanonicalPath();
} catch (IOException e) {
name = file.getAbsolutePath();
}
name = name.replace(File.separatorChar, '/');
if (!name.startsWith("/")) {
name = "/" + name;
}
try {
return new URL( "file:" + name);
} catch (MalformedURLException e) {
throw new TestException(e);
}
}
public static void main(String args[]) {
new ClassPathTest();
}
}
|