Package com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier

Source Code of com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.ParameterExpanderSkipVoteParameterTest$TestParameter

/*
* The MIT License
*
* Copyright 2012 Sony Mobile Communications AB. 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.hudson.plugins.gerrit.trigger.gerritnotifier;

import com.sonyericsson.hudson.plugins.gerrit.trigger.config.IGerritHudsonTriggerConfig;
import com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.model.BuildMemory;
import com.sonyericsson.hudson.plugins.gerrit.trigger.mock.Setup;
import hudson.model.Result;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

//CS IGNORE MagicNumber FOR NEXT 200 LINES. REASON: TestData.

/**
* {@link Parameterized} Tests for {@link ParameterExpander} with
* {@link com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.GerritTrigger#getSkipVote()} configured.
*
* @author Robert Sandell <robert.sandell@sonymobile.com>
*/
@RunWith(Parameterized.class)
public class ParameterExpanderSkipVoteParameterTest {

    private TestParameter parameter;

    /**
     * Parametrized test Constructor.
     *
     * @param parameter the test parameters.
     */
    public ParameterExpanderSkipVoteParameterTest(TestParameter parameter) {
        this.parameter = parameter;
    }

    /**
     * Tests that {@link ParameterExpander#getMinimumCodeReviewValue(BuildMemory.MemoryImprint, boolean)}
     * returns {@link TestParameter#expectedCodeReview}.
     */
    @Test
    public void testCodeReview() {
        IGerritHudsonTriggerConfig config = Setup.createConfig();
        ParameterExpander instance = new ParameterExpander(config);
        int result = instance.getMinimumCodeReviewValue(parameter.memoryImprint, true);
        assertEquals(parameter.expectedCodeReview, result);
    }

    /**
     * Tests that {@link ParameterExpander#getMinimumVerifiedValue(BuildMemory.MemoryImprint, boolean)}
     * returns {@link TestParameter#expectedVerified}.
     */
    @Test
    public void testVerified() {
        IGerritHudsonTriggerConfig config = Setup.createConfig();
        ParameterExpander instance = new ParameterExpander(config);
        int result = instance.getMinimumVerifiedValue(parameter.memoryImprint, true);
        assertEquals(parameter.expectedVerified, result);
    }

    /**
     * Returns the parameters for the JUnit Runner to pass to the Constructor.
     * @return parameters.
     */
    @Parameterized.Parameters
    public static Collection getParameters() {
        List<TestParameter[]> parameters = new LinkedList<TestParameter[]>();

        parameters.add(createParameter(+1, +2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, true)
                ));
        parameters.add(createParameter(+1, +2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.FAILURE, -1, -2, true)
                ));
        parameters.add(createParameter(+1, +2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, true),
                Setup.createAndSetupMemoryImprintEntry(Result.FAILURE, -1, -2, true)
                ));
        parameters.add(createParameter(-1, -2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, true),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, false)
                ));
        parameters.add(createParameter(-1, -2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, true),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, false),
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false)
                ));
        parameters.add(createParameter(+1, +2,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, false)
                ));
        parameters.add(createParameter(-1, -2,
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, false)
                ));
        parameters.add(createParameter(0, 0,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, true)
                ));
        parameters.add(createParameter(0, 0,
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, true)
                ));
        parameters.add(createParameter(0, 0,
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, true),
                Setup.createAndSetupMemoryImprintEntry(Result.UNSTABLE, -1, -2, true)
                ));
        parameters.add(createParameter(0, 0,
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, true),
                Setup.createAndSetupMemoryImprintEntry(Result.SUCCESS, +1, +2, true)
                ));

        return parameters;
    }

    /**
     * Creates one parameter (in a one size array).
     * So that it is simple to add to the list of parameters to return from {@link #getParameters()}.
     *
     * @param expectedCodeReview the expected code review vote
     * @param expectedVerified the expected verified vote
     * @param entries the build memory entries
     * @return the created test parameter.
     */
    private static TestParameter[] createParameter(int expectedCodeReview, int expectedVerified,
                                                   BuildMemory.MemoryImprint.Entry... entries) {
        return new TestParameter[]{new TestParameter(expectedCodeReview, expectedVerified, entries)};
    }


    /**
     * Parameters for the tests.
     */
    public static class TestParameter {

        BuildMemory.MemoryImprint memoryImprint;
        private int expectedCodeReview;
        private int expectedVerified;

        /**
         * Convenience constructor.
         *
         * @param expectedCodeReview the expected code review vote
         * @param expectedVerified the expected verified vote.
         * @param entries the build memory entries.
         */
        public TestParameter(int expectedCodeReview, int expectedVerified, BuildMemory.MemoryImprint.Entry... entries) {
            this.expectedCodeReview = expectedCodeReview;
            this.expectedVerified = expectedVerified;
            memoryImprint = mock(BuildMemory.MemoryImprint.class);
            when(memoryImprint.getEntries()).thenReturn(entries);
        }
    }
}
TOP

Related Classes of com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.ParameterExpanderSkipVoteParameterTest$TestParameter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.