mockit.internal.startup.PathToAgentJar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006-2015 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.startup;
import java.io.*;
import java.net.*;
import java.security.*;
import java.util.regex.*;
import javax.annotation.*;
final class PathToAgentJar
{
private static final Pattern JAR_REGEX = Pattern.compile(".*jmockit[-.\\d]*.jar");
private URL thisClassLocation;
@Nonnull
String getPathToJarFile()
{
String jarFilePath = findPathToJarFileFromClasspath();
if (jarFilePath == null) {
// This can fail for a remote URL, so it is used as a fallback only:
jarFilePath = getPathToJarFileContainingThisClass();
}
if (jarFilePath != null) {
return jarFilePath;
}
throw new IllegalStateException(
"No jar file with name ending in \"jmockit.jar\" or \"jmockit-nnn.jar\" (where \"nnn\" is a version number) " +
"found in the classpath");
}
@Nullable
private static String findPathToJarFileFromClasspath()
{
String[] classPath = System.getProperty("java.class.path").split(File.pathSeparator);
for (String cpEntry : classPath) {
if (JAR_REGEX.matcher(cpEntry).matches()) {
return cpEntry;
}
}
return null;
}
@Nullable
private String getPathToJarFileContainingThisClass()
{
CodeSource codeSource = getClass().getProtectionDomain().getCodeSource();
if (codeSource == null) {
return null;
}
thisClassLocation = codeSource.getLocation();
String jarFilePath;
if (thisClassLocation.getPath().endsWith("/main/classes/")) {
jarFilePath = findLocalJarOrZipFileFromThisClassLocation();
}
else {
jarFilePath = findJarFileContainingThisClass();
}
return jarFilePath;
}
@Nonnull
private String findLocalJarOrZipFileFromThisClassLocation()
{
String locationPath = thisClassLocation.getPath();
File localJarFile = new File(locationPath.replace("main/classes/", "jmockit.jar"));
if (localJarFile.exists()) {
return localJarFile.getPath();
}
File localMETAINFFile = new File(locationPath.replace("classes/", "META-INF.zip"));
return localMETAINFFile.getPath();
}
@Nonnull
private String findJarFileContainingThisClass()
{
// URI is used to deal with spaces and non-ASCII characters.
URI jarFileURI;
try { jarFileURI = thisClassLocation.toURI(); } catch (URISyntaxException e) { throw new RuntimeException(e); }
// Certain environments (JBoss) use something other than "file:", which is not accepted by File.
if (!"file".equals(jarFileURI.getScheme())) {
String locationPath = thisClassLocation.toExternalForm();
int p = locationPath.indexOf(':');
return locationPath.substring(p + 2);
}
return new File(jarFileURI).getPath();
}
}