org.sonar.plugins.cobertura.CoberturaMavenInitializer Maven / Gradle / Ivy
/*
* SonarQube Cobertura Plugin
* Copyright (C) 2013 SonarSource
* [email protected]
*
* 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 02
*/
package org.sonar.plugins.cobertura;
import org.sonar.api.batch.CoverageExtension;
import org.sonar.api.batch.Initializer;
import org.sonar.api.batch.maven.DependsUponMavenPlugin;
import org.sonar.api.batch.maven.MavenPlugin;
import org.sonar.api.batch.maven.MavenPluginHandler;
import org.sonar.api.config.Settings;
import org.sonar.api.resources.Project;
/**
* Provides {@link CoberturaMavenPluginHandler} and configures correct path to report.
* Enabled only in Maven environment.
*/
public class CoberturaMavenInitializer extends Initializer implements CoverageExtension, DependsUponMavenPlugin {
private CoberturaMavenPluginHandler handler;
private CoberturaSettings coberturaSettings;
private Settings settings;
public CoberturaMavenInitializer(CoberturaMavenPluginHandler handler, CoberturaSettings coberturaSettings, Settings settings) {
this.handler = handler;
this.coberturaSettings = coberturaSettings;
this.settings = settings;
}
public MavenPluginHandler getMavenPluginHandler(Project project) {
return project.getAnalysisType().equals(Project.AnalysisType.DYNAMIC) ? handler : null;
}
@Override
public boolean shouldExecuteOnProject(Project project) {
return coberturaSettings.isEnabled(project);
}
@Override
public void execute(Project project) {
if (!settings.hasKey(CoberturaConstants.COBERTURA_REPORT_PATH_PROPERTY)) {
String report = getReportPathFromPluginConfiguration(project);
if (report == null) {
report = getDefaultReportPath(project);
}
settings.setProperty(CoberturaConstants.COBERTURA_REPORT_PATH_PROPERTY, report);
}
}
private static String getDefaultReportPath(Project project) {
return project.getFileSystem().getReportOutputDir() + "/cobertura/coverage.xml";
}
private static String getReportPathFromPluginConfiguration(Project project) {
MavenPlugin mavenPlugin = MavenPlugin.getPlugin(
project.getPom(),
CoberturaConstants.COBERTURA_GROUP_ID,
CoberturaConstants.COBERTURA_ARTIFACT_ID);
if (mavenPlugin != null) {
String path = mavenPlugin.getParameter("outputDirectory");
if (path != null) {
return path + "/coverage.xml";
}
}
return null;
}
}