mockit.internal.util.StackTrace 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.util;
import javax.annotation.*;
/**
* Provides utility methods to extract and filter stack trace information.
*/
public final class StackTrace
{
@Nonnull private final Throwable throwable;
@Nonnull private final StackTraceElement[] elements;
public StackTrace() { this(new Throwable()); }
public StackTrace(@Nonnull Throwable throwable)
{
this.throwable = throwable;
elements = throwable.getStackTrace();
}
public int getDepth() { return elements.length; }
@Nonnull
public StackTraceElement getElement(int index) { return elements[index]; }
public static void filterStackTrace(@Nonnull Throwable t)
{
new StackTrace(t).filter();
}
public void filter()
{
StackTraceElement[] filteredST = new StackTraceElement[elements.length];
int i = 0;
for (StackTraceElement ste : elements) {
if (ste.getFileName() != null) {
String where = ste.getClassName();
if (!isSunMethod(ste) && !isTestFrameworkMethod(where) && !isJMockitMethod(where)) {
filteredST[i] = ste;
i++;
}
}
}
StackTraceElement[] newStackTrace = new StackTraceElement[i];
System.arraycopy(filteredST, 0, newStackTrace, 0, i);
throwable.setStackTrace(newStackTrace);
Throwable cause = throwable.getCause();
if (cause != null) {
new StackTrace(cause).filter();
}
}
private static boolean isSunMethod(@Nonnull StackTraceElement ste)
{
return ste.getClassName().startsWith("sun.") && !ste.isNativeMethod();
}
private static boolean isTestFrameworkMethod(@Nonnull String where)
{
return where.startsWith("org.junit.") || where.startsWith("org.testng.");
}
private static boolean isJMockitMethod(@Nonnull String where)
{
if (!where.startsWith("mockit.")) {
return false;
}
int p = where.indexOf('$');
if (p < 0) {
int q = where.lastIndexOf("Test");
return q < 0 || q + 4 < where.length();
}
int q = where.lastIndexOf("Test", p - 4);
if (q < 0) {
return true;
}
q += 4;
return q < where.length() && where.charAt(q) != '$';
}
}