com.android.build.gradle.internal.test.report.PackagePageRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
Gradle plug-in to build Android applications.
/*
* Copyright 2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.build.gradle.internal.test.report;
import java.io.IOException;
/**
* Custom PackagePageRenderer based on Gradle's PackagePageRenderer
*/
public class PackagePageRenderer extends PageRenderer {
public PackagePageRenderer(ReportType reportType) {
super(reportType);
}
@Override
protected String getTitle() {
return getModel().getTitle();
}
@Override
protected void renderBreadcrumbs(SimpleHtmlWriter htmlWriter) throws IOException {
htmlWriter.startElement("div").attribute("class", "breadcrumbs");
htmlWriter.startElement("a").attribute("href", "index.html").characters("all").endElement();
htmlWriter.characters(String.format(" > %s", getResults().getName()));
htmlWriter.endElement();
}
private void renderClasses(SimpleHtmlWriter htmlWriter) throws IOException {
htmlWriter.startElement("table");
htmlWriter.startElement("thread");
htmlWriter.startElement("tr");
htmlWriter.startElement("th").characters("Class").endElement();
htmlWriter.startElement("th").characters("Tests").endElement();
htmlWriter.startElement("th").characters("Failures").endElement();
htmlWriter.startElement("th").characters("Duration").endElement();
htmlWriter.startElement("th").characters("Success rate").endElement();
htmlWriter.endElement();
htmlWriter.endElement();
for (ClassTestResults testClass : getResults().getClasses()) {
htmlWriter.startElement("tr");
htmlWriter.startElement("td").attribute("class", testClass.getStatusClass());
htmlWriter.startElement("a").attribute("href", String.format("%s.html", testClass.getFilename(reportType))).characters(testClass.getSimpleName()).endElement();
htmlWriter.endElement();
htmlWriter.startElement("td").characters(Integer.toString(testClass.getTestCount())).endElement();
htmlWriter.startElement("td").characters(Integer.toString(testClass.getFailureCount())).endElement();
htmlWriter.startElement("td").characters(testClass.getFormattedDuration()).endElement();
htmlWriter.startElement("td").attribute("class", testClass.getStatusClass()).characters(testClass.getFormattedSuccessRate()).endElement();
htmlWriter.endElement();
}
htmlWriter.endElement();
}
@Override
protected void registerTabs() {
addFailuresTab();
addTab("Classes", new ErroringAction() {
@Override
public void doExecute(SimpleHtmlWriter htmlWriter) throws IOException {
renderClasses(htmlWriter);
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy