/* * The MIT License * * Copyright 2012 Sony Ericsson Mobile Communications. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.sonyericsson.jenkins.plugins.bfa; import com.sonyericsson.jenkins.plugins.bfa.model.FailureCauseMatrixBuildAction; import hudson.matrix.Axis; import hudson.matrix.AxisList; import hudson.matrix.MatrixBuild; import hudson.matrix.MatrixProject; import hudson.model.Action; import hudson.model.Cause; import hudson.model.Result; import org.junit.Rule; import org.junit.Test; import org.jvnet.hudson.test.JenkinsRule; import org.jvnet.hudson.test.MockBuilder; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; //CS IGNORE MagicNumber FOR NEXT 100 LINES. REASON: TestData. /** * Tests for the FailureCauseMatrixAggregator. * @author Tomas Westling <thomas.westling@sonyericsson.com> * @throws Exception if so. */ public class FailureCauseMatrixAggregatorTest { /** * The Jenkins Rule. */ @Rule //CS IGNORE VisibilityModifier FOR NEXT 1 LINES. REASON: Jenkins Rule public JenkinsRule jenkins = new JenkinsRule(); /** * Tests that an action is added when the builds fail. * Also tests getRunsWithAction. * * @throws Exception if so. */ @Test public void testAggregateFailureCauses() throws Exception { MatrixProject matrix = jenkins.createMatrixProject(); Axis axis = new Axis("Axel", "Foley", "Rose"); matrix.setAxes(new AxisList(axis)); matrix.getBuildersList().add(new MockBuilder(Result.FAILURE)); Future<MatrixBuild> future = matrix.scheduleBuild2(0, new Cause.UserIdCause()); MatrixBuild build = future.get(10, TimeUnit.SECONDS); FailureCauseMatrixBuildAction matrixAction = build.getAction(FailureCauseMatrixBuildAction.class); assertNotNull(matrixAction); assertThat(matrixAction.getRunsWithAction().size(), is(2)); } /** * Tests that no action is added if all builds are successful. * * @throws Exception if so. */ @Test public void testAggregateFailureCausesWhenNotFailed() throws Exception { MatrixProject matrix = jenkins.createMatrixProject(); Axis axis = new Axis("Axel", "Foley", "Rose"); matrix.setAxes(new AxisList(axis)); Future<MatrixBuild> future = matrix.scheduleBuild2(0, new Cause.UserIdCause()); MatrixBuild build = future.get(10, TimeUnit.SECONDS); Action matrixAction = build.getAction(FailureCauseMatrixBuildAction.class); assertNull(matrixAction); } /** * Tests that an action is not added when the builds abort. * * @throws Exception if so. */ @Test public void testAggregateIgnoreAbortedCauses() throws Exception { MatrixProject matrix = jenkins.createMatrixProject(); PluginImpl.getInstance().setDoNotAnalyzeAbortedJob(true); Axis axis = new Axis("Axel", "Foley", "Rose"); matrix.setAxes(new AxisList(axis)); matrix.getBuildersList().add(new MockBuilder(Result.ABORTED)); Future<MatrixBuild> future = matrix.scheduleBuild2(0, new Cause.UserIdCause()); MatrixBuild build = future.get(10, TimeUnit.SECONDS); FailureCauseMatrixBuildAction matrixAction = build.getAction(FailureCauseMatrixBuildAction.class); assertNull(matrixAction); } }