org.sonar.plugins.python.coverage.PythonCoverageSensor Maven / Gradle / Ivy
/*
* SonarQube Python Plugin
* Copyright (C) 2011-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.plugins.python.coverage;
import java.io.File;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
import javax.xml.stream.XMLStreamException;
import org.sonar.api.batch.fs.InputFile;
import org.sonar.api.batch.sensor.Sensor;
import org.sonar.api.batch.sensor.SensorContext;
import org.sonar.api.batch.sensor.SensorDescriptor;
import org.sonar.api.batch.sensor.coverage.NewCoverage;
import org.sonar.api.config.Configuration;
import org.sonar.api.utils.log.Logger;
import org.sonar.api.utils.log.Loggers;
import org.sonar.plugins.python.EmptyReportException;
import org.sonar.plugins.python.Python;
import org.sonar.plugins.python.warnings.AnalysisWarningsWrapper;
import static org.sonar.plugins.python.PythonReportSensor.getReports;
public class PythonCoverageSensor implements Sensor {
private static final Logger LOG = Loggers.get(PythonCoverageSensor.class);
public static final String REPORT_PATHS_KEY = "sonar.python.coverage.reportPaths";
public static final String DEFAULT_REPORT_PATH = "coverage-reports/*coverage-*.xml";
// Deprecated report path key
public static final String REPORT_PATH_KEY = "sonar.python.coverage.reportPath";
private final AnalysisWarningsWrapper analysisWarnings;
public PythonCoverageSensor(AnalysisWarningsWrapper analysisWarnings) {
this.analysisWarnings = analysisWarnings;
}
@Override
public void describe(SensorDescriptor descriptor) {
descriptor
.name("Cobertura Sensor for Python coverage")
.onlyOnLanguage(Python.KEY);
}
@Override
public void execute(SensorContext context) {
String baseDir = context.fileSystem().baseDir().getPath();
Configuration config = context.config();
warnDeprecatedPropertyUsage(config);
HashSet filesCovered = new HashSet<>();
List reports = getCoverageReports(baseDir, config);
if (!reports.isEmpty()) {
LOG.info("Python test coverage");
for (File report : uniqueAbsolutePaths(reports)) {
Map coverageMeasures = parseReport(report, context);
saveMeasures(coverageMeasures, filesCovered);
}
}
}
private static List getCoverageReports(String baseDir, Configuration config) {
if (!config.hasKey(REPORT_PATHS_KEY)) {
return getReports(config, baseDir, REPORT_PATHS_KEY, DEFAULT_REPORT_PATH);
}
return Arrays.stream(config.getStringArray(REPORT_PATHS_KEY))
.flatMap(path -> getReports(config, baseDir, REPORT_PATHS_KEY, path).stream())
.collect(Collectors.toList());
}
private void warnDeprecatedPropertyUsage(Configuration config) {
if (config.hasKey(REPORT_PATH_KEY)) {
String msg = "Property 'sonar.python.coverage.reportPath' has been removed. Please use 'sonar.python.coverage.reportPaths' instead.";
LOG.warn(msg);
analysisWarnings.addWarning(msg);
}
}
private static Set uniqueAbsolutePaths(List reports) {
return reports.stream()
.map(File::getAbsoluteFile)
.collect(Collectors.toCollection(LinkedHashSet::new));
}
private static Map parseReport(File report, SensorContext context) {
Map coverageMeasures = new HashMap<>();
try {
CoberturaParser parser = new CoberturaParser();
parser.parseReport(report, context, coverageMeasures);
} catch (EmptyReportException e) {
LOG.warn("The report '{}' seems to be empty, ignoring. '{}'", report, e);
} catch (XMLStreamException e) {
throw new IllegalStateException("Error parsing the report '" + report + "'", e);
}
return coverageMeasures;
}
private static void saveMeasures(Map coverageMeasures, HashSet coveredFiles) {
for (Map.Entry entry : coverageMeasures.entrySet()) {
InputFile inputFile = entry.getKey();
coveredFiles.add(inputFile);
if (LOG.isDebugEnabled()) {
LOG.debug("Saving coverage measures for file '{}'", inputFile.toString());
}
entry.getValue()
.save();
}
}
}