mockit.internal.expectations.injection.TestedClass 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.expectations.injection;
import java.io.*;
import java.security.*;
import javax.annotation.*;
final class TestedClass
{
@Nonnull final Class> targetClass;
@Nonnull final ProtectionDomain protectionDomainOfTestedClass;
@Nullable final String codeLocationParentPath;
@Nonnull final String nameOfTestedClass;
TestedClass(@Nonnull Class> targetClass)
{
this.targetClass = targetClass;
protectionDomainOfTestedClass = targetClass.getProtectionDomain();
CodeSource codeSource = protectionDomainOfTestedClass.getCodeSource();
codeLocationParentPath = codeSource == null ? null : new File(codeSource.getLocation().getPath()).getParent();
nameOfTestedClass = targetClass.getName();
}
boolean isClassFromSameModuleOrSystemAsTestedClass(@Nonnull Class> anotherClass)
{
if (anotherClass.getClassLoader() == null) {
return false;
}
ProtectionDomain anotherProtectionDomain = anotherClass.getProtectionDomain();
if (anotherProtectionDomain == null) {
return false;
}
if (anotherProtectionDomain == protectionDomainOfTestedClass) {
return true;
}
CodeSource anotherCodeSource = anotherProtectionDomain.getCodeSource();
if (anotherCodeSource == null || anotherCodeSource.getLocation() == null) {
return false;
}
if (codeLocationParentPath != null) {
String anotherClassPath = anotherCodeSource.getLocation().getPath();
String anotherClassParentPath = new File(anotherClassPath).getParent();
if (anotherClassParentPath.equals(codeLocationParentPath)) {
return true;
}
}
return isInSameSubpackageAsTestedClass(anotherClass);
}
boolean isInSameSubpackageAsTestedClass(@Nonnull Class> anotherClass)
{
String nameOfAnotherClass = anotherClass.getName();
int p1 = nameOfAnotherClass.indexOf('.');
int p2 = nameOfTestedClass.indexOf('.');
boolean differentPackages = p1 != p2 || p1 == -1;
if (differentPackages) {
return false;
}
p1 = nameOfAnotherClass.indexOf('.', p1 + 1);
p2 = nameOfTestedClass.indexOf('.', p2 + 1);
boolean eitherClassDirectlyInFirstPackageLevel = p1 == -1 || p2 == -1;
if (eitherClassDirectlyInFirstPackageLevel) {
return true;
}
boolean differentSubpackages = p1 != p2;
if (differentSubpackages) {
return false;
}
return nameOfAnotherClass.substring(0, p1).equals(nameOfTestedClass.substring(0, p2));
}
}