package hudson.plugins.cigame.rules.plugins.checkstyle; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import hudson.model.AbstractBuild; import hudson.model.Result; import hudson.plugins.analysis.core.HealthDescriptor; import hudson.plugins.checkstyle.CheckStyleResult; import hudson.plugins.checkstyle.CheckStyleResultAction; import hudson.plugins.cigame.model.RuleResult; import java.util.ArrayList; import java.util.Arrays; import org.junit.Test; @SuppressWarnings("unchecked") public class DefaultCheckstyleRuleTest { @Test public void assertFailedBuildsIsWorthZeroPoints() { AbstractBuild build = mock(AbstractBuild.class); when(build.getResult()).thenReturn(Result.FAILURE); DefaultCheckstyleRule rule = new DefaultCheckstyleRule(100, -100); RuleResult ruleResult = rule.evaluate(build); assertNotNull("Rule result must not be null", ruleResult); assertThat("Points should be zero", ruleResult.getPoints(), is((double) 0)); } @Test public void assertNoPreviousBuildIsWorthZeroPoints() { AbstractBuild build = mock(AbstractBuild.class); when(build.getResult()).thenReturn(Result.FAILURE); when(build.getPreviousBuild()).thenReturn(null); DefaultCheckstyleRule rule = new DefaultCheckstyleRule(100, -100); RuleResult ruleResult = rule.evaluate(build); assertNotNull("Rule result must not be null", ruleResult); assertThat("Points should be zero", ruleResult.getPoints(), is((double) 0)); } @Test public void assertIfPreviousBuildFailedResultIsWorthZeroPoints() { AbstractBuild build = mock(AbstractBuild.class); AbstractBuild previousBuild = mock(AbstractBuild.class); when(build.getPreviousBuild()).thenReturn(previousBuild); when(build.getResult()).thenReturn(Result.SUCCESS); when(previousBuild.getResult()).thenReturn(Result.FAILURE); CheckStyleResult result = mock(CheckStyleResult.class); CheckStyleResult previosResult = mock(CheckStyleResult.class); CheckStyleResultAction action = new CheckStyleResultAction(build, mock(HealthDescriptor.class), result); CheckStyleResultAction previousAction = new CheckStyleResultAction(previousBuild, mock(HealthDescriptor.class), previosResult); when(build.getActions(CheckStyleResultAction.class)).thenReturn(Arrays.asList(action)); when(build.getAction(CheckStyleResultAction.class)).thenReturn(action); when(previousBuild.getAction(CheckStyleResultAction.class)).thenReturn(previousAction); when(previousBuild.getActions(CheckStyleResultAction.class)).thenReturn(new ArrayList<CheckStyleResultAction>()); when(result.getNumberOfAnnotations()).thenReturn(10); when(previosResult.getNumberOfAnnotations()).thenReturn(15); RuleResult ruleResult = new DefaultCheckstyleRule(100, -100).evaluate(build); assertNotNull("Rule result must not be null", ruleResult); assertThat("Points should be 0", ruleResult.getPoints(), is(0d)); } @Test public void assertIfPreviousBuildHasErrorsIsWorthZeroPoints() { AbstractBuild build = mock(AbstractBuild.class); AbstractBuild previousBuild = mock(AbstractBuild.class); when(build.getPreviousBuild()).thenReturn(previousBuild); when(build.getResult()).thenReturn(Result.SUCCESS); when(previousBuild.getResult()).thenReturn(Result.SUCCESS); CheckStyleResult result = mock(CheckStyleResult.class); CheckStyleResult previosResult = mock(CheckStyleResult.class); when(previosResult.hasError()).thenReturn(true); CheckStyleResultAction action = new CheckStyleResultAction(build, mock(HealthDescriptor.class), result); CheckStyleResultAction previousAction = new CheckStyleResultAction(previousBuild, mock(HealthDescriptor.class), previosResult); when(build.getActions(CheckStyleResultAction.class)).thenReturn(Arrays.asList(action)); when(previousBuild.getAction(CheckStyleResultAction.class)).thenReturn(previousAction); when(previousBuild.getActions(CheckStyleResultAction.class)).thenReturn(Arrays.asList(previousAction)); when(result.getNumberOfAnnotations()).thenReturn(10); when(previosResult.getNumberOfAnnotations()).thenReturn(15); RuleResult ruleResult = new DefaultCheckstyleRule(100, -100).evaluate(build); assertNotNull("Rule result must not be null", ruleResult); assertThat("Points should be 0", ruleResult.getPoints(), is(0d)); } }