org.sonar.plugins.csharp.gallio.GallioSensor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-csharp-gallio-plugin Show documentation
Show all versions of sonar-csharp-gallio-plugin Show documentation
Plugin that executes unit tests and computes code coverage.
The newest version!
/*
* Sonar C# Plugin :: Gallio
* Copyright (C) 2010 Jose Chillan, Alexandre Victoor and 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.csharp.gallio;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.DependedUpon;
import org.sonar.api.batch.DependsUpon;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.resources.Project;
import org.sonar.api.utils.SonarException;
import org.sonar.dotnet.tools.commons.utils.FileFinder;
import org.sonar.dotnet.tools.commons.visualstudio.VisualStudioProject;
import org.sonar.dotnet.tools.commons.visualstudio.VisualStudioSolution;
import org.sonar.dotnet.tools.gallio.GallioCommandBuilder;
import org.sonar.dotnet.tools.gallio.GallioException;
import org.sonar.dotnet.tools.gallio.GallioRunner;
import org.sonar.plugins.csharp.api.CSharpConfiguration;
import org.sonar.plugins.csharp.api.CSharpConstants;
import org.sonar.plugins.csharp.api.MicrosoftWindowsEnvironment;
import org.sonar.plugins.csharp.api.sensor.AbstractCSharpSensor;
import java.io.File;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Set;
/**
* Executes Gallio only once in the Solution directory to generate test execution and coverage reports.
*/
@DependsUpon(CSharpConstants.CSHARP_CORE_EXECUTED)
@DependedUpon(GallioConstants.BARRIER_GALLIO_EXECUTED)
public class GallioSensor extends AbstractCSharpSensor {
private static final Logger LOG = LoggerFactory.getLogger(GallioSensor.class);
private CSharpConfiguration configuration;
private VisualStudioSolution solution;
private File workDir;
private boolean safeMode;
private int timeout;
/**
* Constructs a {@link GallioSensor}.
*
* @param fileSystem
* @param configuration
* @param microsoftWindowsEnvironment
*/
public GallioSensor(CSharpConfiguration configuration, MicrosoftWindowsEnvironment microsoftWindowsEnvironment) {
super(microsoftWindowsEnvironment, "Gallio", configuration.getString(GallioConstants.MODE, ""));
this.configuration = configuration;
}
/**
* {@inheritDoc}
*/
public boolean shouldExecuteOnProject(Project project) {
if (MODE_REUSE_REPORT.equals(executionMode)) {
LOG.info("Gallio won't execute as it is set to 'reuseReport' mode.");
return false;
}
if (getMicrosoftWindowsEnvironment().isTestExecutionDone()) {
LOG.info("Gallio won't execute as test execution has already been done.");
return false;
}
if (getMicrosoftWindowsEnvironment().getCurrentSolution() != null
&& getMicrosoftWindowsEnvironment().getCurrentSolution().getUnitTestProjects().isEmpty()) {
LOG.info("Gallio won't execute as there are no test projects.");
return false;
}
return super.shouldExecuteOnProject(project);
}
private void addAssembly(Collection assemblyFileList, VisualStudioProject visualStudioProject) {
String buildConfigurations = configuration.getString(CSharpConstants.BUILD_CONFIGURATION_KEY,
CSharpConstants.BUILD_CONFIGURATIONS_DEFVALUE);
String buildPlatform = configuration.getString(CSharpConstants.BUILD_PLATFORM_KEY,
CSharpConstants.BUILD_PLATFORM_DEFVALUE);
File assembly = visualStudioProject.getArtifact(buildConfigurations, buildPlatform);
if (assembly != null && assembly.isFile()) {
assemblyFileList.add(assembly);
}
}
private List findTestAssemblies(boolean it, String[] testAssemblyPatterns) throws GallioException {
Set assemblyFiles = Sets.newHashSet();
if (solution != null) {
Collection testProjects = it ? solution.getIntegTestProjects() : solution.getUnitTestProjects();
if (testAssemblyPatterns.length == 0) {
for (VisualStudioProject visualStudioProject : testProjects) {
addAssembly(assemblyFiles, visualStudioProject);
}
} else {
for (VisualStudioProject visualStudioProject : testProjects) {
Collection projectTestAssemblies = FileFinder.findFiles(solution, visualStudioProject, testAssemblyPatterns);
if (projectTestAssemblies.isEmpty()) {
addAssembly(assemblyFiles, visualStudioProject);
} else {
assemblyFiles.addAll(projectTestAssemblies);
}
}
}
} else {
throw new GallioException("No .NET solution or project has been given to the Gallio command builder.");
}
return Lists.newArrayList(assemblyFiles);
}
@Override
public void analyse(Project project, SensorContext context) {
solution = getMicrosoftWindowsEnvironment().getCurrentSolution();
workDir = new File(solution.getSolutionDir(), getMicrosoftWindowsEnvironment().getWorkingDirectory());
if (!workDir.exists()) {
workDir.mkdirs();
}
safeMode = configuration.getBoolean(GallioConstants.SAFE_MODE, false);
timeout = configuration.getInt(GallioConstants.TIMEOUT_MINUTES_KEY, GallioConstants.TIMEOUT_MINUTES_DEFVALUE);
String[] testAssemblyPatterns = configuration.getStringArray(CSharpConstants.TEST_ASSEMBLIES_KEY);
String gallioFilter = configuration.getString(GallioConstants.FILTER_KEY, GallioConstants.FILTER_DEFVALUE);
executeRunner(false, testAssemblyPatterns, gallioFilter, GallioConstants.GALLIO_REPORT_XML, GallioConstants.GALLIO_COVERAGE_REPORT_XML);
String itExecutionMode = configuration.getString(GallioConstants.IT_MODE, "skip");
if ("active".equals(itExecutionMode)) {
String[] itAssemblyPatterns = configuration.getStringArray(GallioConstants.IT_TEST_ASSEMBLIES_KEY);
String itGallioFilter = configuration.getString(GallioConstants.IT_FILTER_KEY, GallioConstants.FILTER_DEFVALUE);
executeRunner(true, itAssemblyPatterns, itGallioFilter, GallioConstants.IT_GALLIO_REPORT_XML, GallioConstants.IT_GALLIO_COVERAGE_REPORT_XML);
}
// tell that tests were executed so that no other project tries to launch them a second time
getMicrosoftWindowsEnvironment().setTestExecutionDone();
}
private void executeRunner(boolean it, String[] assemblyPatterns, String gallioFilter, String reportFileName, String coverageReportFileName) {
try {
List testAssemblies = findTestAssemblies(it, assemblyPatterns);
if (safeMode) {
for (File assembly : testAssemblies) {
File gallioReportFile = new File(workDir, assembly.getName() + "." + reportFileName);
File coverageReportFile = new File(workDir, assembly.getName() + "." + coverageReportFileName);
GallioRunner runner = createRunner(workDir);
GallioCommandBuilder builder = createBuilder(runner, Collections.singletonList(assembly), gallioFilter, gallioReportFile, coverageReportFile);
runner.execute(builder, timeout);
}
} else {
File gallioReportFile = new File(workDir, reportFileName);
File coverageReportFile = new File(workDir, coverageReportFileName);
GallioRunner runner = createRunner(workDir);
GallioCommandBuilder builder = createBuilder(runner, testAssemblies, gallioFilter, gallioReportFile, coverageReportFile);
runner.execute(builder, timeout);
}
} catch (GallioException e) {
throw new SonarException("Gallio execution failed.", e);
}
}
private GallioRunner createRunner(File workDir) {
// create runner
File gallioInstallDir = new File(configuration.getString(GallioConstants.INSTALL_FOLDER_KEY, GallioConstants.INSTALL_FOLDER_DEFVALUE));
return GallioRunner.create(gallioInstallDir.getAbsolutePath(), workDir.getAbsolutePath(), true);
}
private GallioCommandBuilder createBuilder(GallioRunner runner, List testAssemblies, String gallioFilter, File gallioReportFile, File coverageReportFile) {
GallioCommandBuilder builder = runner.createCommandBuilder(getMicrosoftWindowsEnvironment().getCurrentSolution());
// Add info for Gallio execution
builder.setReportFile(gallioReportFile);
builder.setFilter(gallioFilter);
builder.setGallioRunnerType(configuration.getString(GallioConstants.RUNNER_TYPE_KEY, null));
builder.setTestAssemblies(testAssemblies);
// Add info for coverage execution
builder.setCoverageReportFile(coverageReportFile);
builder.setCoverageTool(configuration.getString(GallioConstants.COVERAGE_TOOL_KEY, GallioConstants.COVERAGE_TOOL_DEFVALUE));
builder.setCoverageExcludes(configuration
.getStringArray(GallioConstants.COVERAGE_EXCLUDES_KEY, GallioConstants.COVERAGE_EXCLUDES_DEFVALUE));
builder.setPartCoverInstallDirectory(new File(configuration.getString(GallioConstants.PART_COVER_INSTALL_KEY,
GallioConstants.PART_COVER_INSTALL_DEFVALUE)));
builder.setOpenCoverInstallDirectory(new File(configuration.getString(GallioConstants.OPEN_COVER_INSTALL_KEY,
GallioConstants.OPEN_COVER_INSTALL_DEFVALUE)));
builder.setDotCoverInstallDirectory(new File(configuration.getString(GallioConstants.DOT_COVER_INSTALL_KEY,
GallioConstants.DOT_COVER_INSTALL_DEFVALUE)));
return builder;
}
}