All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.squareup.spoon.html.HtmlDevice Maven / Gradle / Ivy
package com.squareup.spoon.html;
import com.squareup.spoon.DeviceDetails;
import com.squareup.spoon.DeviceResult;
import com.squareup.spoon.DeviceTest;
import com.squareup.spoon.DeviceTestResult;
import com.squareup.spoon.misc.StackTrace;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import static com.squareup.spoon.DeviceTestResult.Status;
/** Model for representing a {@code device.html} page. */
final class HtmlDevice {
static HtmlDevice from(String serial, DeviceResult result, File output) {
List testResults = new ArrayList();
int testsPassed = 0;
for (Map.Entry entry : result.getTestResults().entrySet()) {
DeviceTestResult testResult = entry.getValue();
testResults.add(TestResult.from(serial, entry.getKey(), testResult, output));
if (testResult.getStatus() == Status.PASS) {
testsPassed += 1;
}
}
int testsRun = result.getTestResults().size();
int testsFailed = testsRun - testsPassed;
String totalTestsRun = testsRun + " test" + (testsRun != 1 ? "s" : "");
DeviceDetails details = result.getDeviceDetails();
String title = (details != null) ? details.getName() : serial;
List exceptions = new ArrayList();
for (StackTrace exception : result.getExceptions()) {
exceptions.add(HtmlUtils.processStackTrace(exception));
}
StringBuilder subtitle1 = new StringBuilder();
subtitle1.append(totalTestsRun).append(" run");
if (testsPassed > 0) {
subtitle1.append(" with ")
.append(testsPassed)
.append(" passing and ")
.append(testsFailed)
.append(" failing in ")
.append(HtmlUtils.humanReadableDuration(result.getDuration()));
}
subtitle1.append(" at ")
.append(HtmlUtils.dateToString(result.getStarted()));
String subtitle2 = HtmlUtils.deviceDetailsToString(details);
return new HtmlDevice(serial, title, subtitle1.toString(), subtitle2, testResults, exceptions);
}
public final String serial;
public final String title;
public final String subtitle1;
public final String subtitle2;
public final List testResults;
public final boolean hasExceptions;
public final List exceptions;
HtmlDevice(String serial, String title, String subtitle1, String subtitle2,
List testResults, List exceptions) {
this.serial = serial;
this.title = title;
this.subtitle1 = subtitle1;
this.subtitle2 = subtitle2;
this.testResults = testResults;
this.hasExceptions = !exceptions.isEmpty();
this.exceptions = exceptions;
}
static final class TestResult implements Comparable {
static TestResult from(String serial, DeviceTest test, DeviceTestResult result, File output) {
String className = test.getClassName();
String methodName = test.getMethodName();
String classSimpleName = HtmlUtils.getClassSimpleName(className);
String prettyMethodName = HtmlUtils.prettifyMethodName(methodName);
String testId = HtmlUtils.testClassAndMethodToId(className, methodName);
String status = HtmlUtils.getStatusCssClass(result);
List screenshots = new ArrayList();
for (File screenshot : result.getScreenshots()) {
screenshots.add(HtmlUtils.getScreenshot(screenshot, output));
}
List files = new ArrayList();
for (File file : result.getFiles()) {
files.add(HtmlUtils.getFile(file, output));
}
String animatedGif = HtmlUtils.createRelativeUri(result.getAnimatedGif(), output);
HtmlUtils.ExceptionInfo exception = HtmlUtils.processStackTrace(result.getException());
return new TestResult(serial, className, methodName, classSimpleName, prettyMethodName,
testId, status, screenshots, animatedGif, exception, files);
}
public final String serial;
public final String className;
public final String methodName;
public final String classSimpleName;
public final String prettyMethodName;
public final String testId;
public final String status;
public final boolean hasScreenshots;
public final List screenshots;
public final List files;
public final boolean hasFiles;
public final String animatedGif;
public final HtmlUtils.ExceptionInfo exception;
TestResult(String serial, String className, String methodName, String classSimpleName,
String prettyMethodName, String testId, String status,
List screenshots, String animatedGif,
HtmlUtils.ExceptionInfo exception, List files) {
this.serial = serial;
this.className = className;
this.methodName = methodName;
this.classSimpleName = classSimpleName;
this.prettyMethodName = prettyMethodName;
this.testId = testId;
this.status = status;
this.hasScreenshots = !screenshots.isEmpty();
this.screenshots = screenshots;
this.animatedGif = animatedGif;
this.exception = exception;
this.files = files;
this.hasFiles = !files.isEmpty();
}
@Override public int compareTo(TestResult other) {
int classComparison = className.compareTo(other.className);
if (classComparison != 0) {
return classComparison;
}
return methodName.compareTo(other.methodName);
}
}
}