mockit.coverage.reporting.packages.PackageCoverageReport 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 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.coverage.reporting.packages;
import java.io.*;
import java.util.*;
import javax.annotation.*;
import mockit.coverage.data.*;
final class PackageCoverageReport extends ListWithFilesAndPercentages
{
@Nonnull private final Map filesToFileData;
@Nullable private final Collection sourceFilesNotFound;
@Nonnull private final char[] fileNameWithSpaces;
PackageCoverageReport(
@Nonnull PrintWriter output, @Nullable Collection sourceFilesNotFound,
@Nonnull Map filesToFileData, @Nonnull Collection> allSourceFileNames
) {
super(output, " ");
this.sourceFilesNotFound = sourceFilesNotFound;
this.filesToFileData = filesToFileData;
fileNameWithSpaces = new char[maximumSourceFileNameLength(allSourceFileNames)];
}
@Nonnegative
private static int maximumSourceFileNameLength(@Nonnull Collection> allSourceFileNames) {
int maxLength = 0;
for (List files : allSourceFileNames) {
for (String fileName : files) {
int n = fileName.length();
if (n > maxLength) {
maxLength = n;
}
}
}
return maxLength;
}
@Override
protected void writeMetricsForFile(@Nullable String packageName, @Nonnull String fileName) {
String filePath = packageName == null || packageName.isEmpty() ? fileName : packageName + '/' + fileName;
FileCoverageData fileData = filesToFileData.get(filePath);
writeRowStart();
printIndent();
output.write(" ");
int fileNameLength = buildFileNameWithTrailingSpaces(fileName);
writeTableCellWithFileName(filePath, fileNameLength);
writeCodeCoverageMetricForFile(fileData);
writeRowClose();
}
@Nonnegative
private int buildFileNameWithTrailingSpaces(@Nonnull String fileName) {
int n = fileName.length();
fileName.getChars(0, n, fileNameWithSpaces, 0);
Arrays.fill(fileNameWithSpaces, n, fileNameWithSpaces.length, ' ');
return n;
}
private void writeTableCellWithFileName(@Nonnull String filePath, @Nonnegative int fileNameLen) {
if (sourceFilesNotFound == null || sourceFilesNotFound.contains(filePath)) {
output.write(fileNameWithSpaces);
}
else {
output.write("");
output.write(fileNameWithSpaces, 0, fileNameLen);
output.write("");
output.write(fileNameWithSpaces, fileNameLen, fileNameWithSpaces.length - fileNameLen);
}
output.println(" ");
}
private void writeCodeCoverageMetricForFile(@Nonnull FileCoverageData coverageInfo) {
int percentage = coverageInfo.getCoveragePercentage();
int covered = coverageInfo.getCoveredItems();
int total = coverageInfo.getTotalItems();
coveredItems += covered;
totalItems += total;
printCoveragePercentage(covered, total, percentage);
}
@Override
protected void writeClassAttributeForCoveragePercentageCell() {}
}