/* * Sonar C# Plugin :: Core * Copyright (C) 2010 Jose Chillan, Alexandre Victoor and SonarSource * dev@sonar.codehaus.org * * 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.api.sensor; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import java.io.File; import org.junit.Before; import org.junit.Test; import org.sonar.api.batch.SensorContext; import org.sonar.api.resources.Project; import org.sonar.api.resources.ProjectFileSystem; import org.sonar.dotnet.tools.commons.visualstudio.VisualStudioProject; import org.sonar.dotnet.tools.commons.visualstudio.VisualStudioSolution; import org.sonar.plugins.csharp.api.MicrosoftWindowsEnvironment; import com.google.common.collect.Lists; public class AbstractTestCSharpSensorTest { class FakeSensor extends AbstractTestCSharpSensor { public FakeSensor(MicrosoftWindowsEnvironment microsoftWindowsEnvironment) { super(microsoftWindowsEnvironment); } @Override public void analyse(Project project, SensorContext context) { } } private FakeSensor sensor; private MicrosoftWindowsEnvironment microsoftWindowsEnvironment; private VisualStudioProject vsProject1; @Before public void init() { vsProject1 = mock(VisualStudioProject.class); when(vsProject1.getName()).thenReturn("Project #1"); VisualStudioProject vsProject2 = mock(VisualStudioProject.class); when(vsProject2.getName()).thenReturn("Project Test"); when(vsProject2.isTest()).thenReturn(true); VisualStudioSolution solution = mock(VisualStudioSolution.class); when(solution.getProjects()).thenReturn(Lists.newArrayList(vsProject1, vsProject2)); microsoftWindowsEnvironment = new MicrosoftWindowsEnvironment(); microsoftWindowsEnvironment.setCurrentSolution(solution); sensor = new FakeSensor(microsoftWindowsEnvironment); } @Test public void testShouldExecuteOnTestProject() { Project project = mock(Project.class); when(project.getName()).thenReturn("Project Test"); when(project.getLanguageKey()).thenReturn("cs"); assertTrue(sensor.shouldExecuteOnProject(project)); } @Test public void testShouldNotExecuteOnNormalProject() { Project project = mock(Project.class); when(project.getName()).thenReturn("Project #1"); when(project.getLanguageKey()).thenReturn("cs"); assertFalse(sensor.shouldExecuteOnProject(project)); } @Test public void testFromFile() throws Exception { ProjectFileSystem fileSystem = mock(ProjectFileSystem.class); when(fileSystem.getTestDirs()).thenReturn(Lists.newArrayList(new File("toto"))); Project project = mock(Project.class); when(project.getFileSystem()).thenReturn(fileSystem); assertThat(sensor.fromIOFile(new File("toto/tata/fake.cs"), project).getKey(), is("tata/fake.cs")); } }