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.
/*
* The MIT License (MIT)
*
* Copyright (c) 2013 - 2023, Tapio Rautonen
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.eluder.coveralls.maven.plugin.util;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.apache.maven.project.MavenProject;
import org.eluder.coveralls.maven.plugin.CoverageParser;
import org.eluder.coveralls.maven.plugin.parser.CloverParser;
import org.eluder.coveralls.maven.plugin.parser.CoberturaParser;
import org.eluder.coveralls.maven.plugin.parser.JaCoCoParser;
import org.eluder.coveralls.maven.plugin.parser.SagaParser;
import org.eluder.coveralls.maven.plugin.source.SourceLoader;
public class CoverageParsersFactory {
private static final String JACOCO_FILE = "/jacoco.xml";
private static final String JACOCO_PREFIX = "/jacoco";
private static final String JACOCO_IT_PREFIX = "/jacoco-it";
private static final String COBERTURA_FILE = "/coverage.xml";
private static final String COBERTURA_PREFIX = "/cobertura";
private static final String CLOVER_FILE = "/clover.xml";
private static final String CLOVER_PREFIX = "/clover";
private static final String SAGA_FILE = "/total-coverage.xml";
private static final String SAGA_PREFIX = "/saga-coverage";
private final MavenProject project;
private final SourceLoader sourceLoader;
private List jacocoReports;
private List coberturaReports;
private List sagaReports;
private List cloverReports;
private List relativeReportDirs;
public CoverageParsersFactory(final MavenProject project, final SourceLoader sourceLoader) {
this.project = project;
this.sourceLoader = sourceLoader;
}
public CoverageParsersFactory withJaCoCoReports(final List jacocoReports) {
this.jacocoReports = jacocoReports;
return this;
}
public CoverageParsersFactory withCoberturaReports(final List coberturaReports) {
this.coberturaReports = coberturaReports;
return this;
}
public CoverageParsersFactory withSagaReports(final List sagaReports) {
this.sagaReports = sagaReports;
return this;
}
public CoverageParsersFactory withRelativeReportDirs(final List relativeReportDirs) {
this.relativeReportDirs = relativeReportDirs;
return this;
}
public List createParsers() throws IOException {
List parsers = new ArrayList<>();
List projects = new MavenProjectCollector(project).collect();
ExistingFiles jacocoFiles = ExistingFiles.create(jacocoReports);
ExistingFiles coberturaFiles = ExistingFiles.create(coberturaReports);
ExistingFiles sagaFiles = ExistingFiles.create(sagaReports);
ExistingFiles cloverFiles = ExistingFiles.create(cloverReports);
for (MavenProject p : projects) {
File reportingDirectory = new File(p.getModel().getReporting().getOutputDirectory());
File buildDirectory = new File(p.getBuild().getDirectory());
jacocoFiles.add(new File(reportingDirectory, JACOCO_PREFIX + JACOCO_FILE));
jacocoFiles.add(new File(reportingDirectory, JACOCO_IT_PREFIX + JACOCO_FILE));
coberturaFiles.add(new File(reportingDirectory, COBERTURA_PREFIX + COBERTURA_FILE));
sagaFiles.add(new File(buildDirectory, SAGA_PREFIX + SAGA_FILE));
cloverFiles.add(new File(reportingDirectory, CLOVER_PREFIX + CLOVER_FILE));
if (relativeReportDirs != null) {
for (String relativeReportPath : relativeReportDirs) {
File relativeReportingDirectory = reportingDirectory;
File relativeBuildDirectory = buildDirectory;
if (!relativeReportPath.isEmpty() && !File.separator.equals(relativeReportPath)) {
relativeReportingDirectory = new File(reportingDirectory, relativeReportPath);
relativeBuildDirectory = new File(buildDirectory, relativeReportPath);
}
jacocoFiles.add(new File(relativeReportingDirectory, JACOCO_FILE));
jacocoFiles.add(new File(relativeBuildDirectory, JACOCO_FILE));
coberturaFiles.add(new File(relativeReportingDirectory, COBERTURA_FILE));
coberturaFiles.add(new File(relativeBuildDirectory, COBERTURA_FILE));
sagaFiles.add(new File(relativeReportingDirectory, SAGA_FILE));
sagaFiles.add(new File(relativeBuildDirectory, SAGA_FILE));
cloverFiles.add(new File(relativeReportingDirectory, CLOVER_FILE));
cloverFiles.add(new File(relativeBuildDirectory, CLOVER_FILE));
}
}
}
for (File jacocoFile : jacocoFiles) {
parsers.add(new JaCoCoParser(jacocoFile, sourceLoader));
}
for (File coberturaFile : coberturaFiles) {
parsers.add(new CoberturaParser(coberturaFile, sourceLoader));
}
for (File sagaFile : sagaFiles) {
parsers.add(new SagaParser(sagaFile, sourceLoader));
}
for (File cloverFile : cloverFiles) {
parsers.add(new CloverParser(cloverFile, sourceLoader));
}
if (parsers.isEmpty()) {
throw new IOException("No coverage report files found");
}
return Collections.unmodifiableList(parsers);
}
}