Package hudson.matrix

Source Code of hudson.matrix.LegacyMatrixConfigurationTest

/*
* The MIT License
*
* Copyright (c) 2011, Oracle Corporation, Anton Kozak
*
* 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 hudson.matrix;

import com.google.common.collect.Lists;
import hudson.ExtensionList;
import hudson.init.InitMilestone;
import hudson.model.AbstractProject;
import hudson.model.Hudson;
import hudson.model.Items;
import hudson.model.Node;
import hudson.model.Result;
import hudson.model.TransientProjectActionFactory;
import hudson.model.listeners.SaveableListener;
import hudson.tasks.LogRotator;
import hudson.util.CascadingUtil;
import java.io.File;
import java.net.URISyntaxException;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertTrue;
import static org.easymock.EasyMock.expect;
import static org.powermock.api.easymock.PowerMock.createMock;
import static org.powermock.api.easymock.PowerMock.mockStatic;
import static org.powermock.api.easymock.PowerMock.replayAll;
import static org.powermock.api.easymock.PowerMock.verifyAll;

/**
* Test to verify legacy matrix project configuration loading.
* <p/>
* Date: 10/06/11
*
* @author Anton Kozak
*/
@RunWith(PowerMockRunner.class)
@PrepareForTest({Hudson.class})
public class LegacyMatrixConfigurationTest {

    private File config;

    @Before
    public void setUp() throws URISyntaxException {
        config = new File(MatrixProject.class.getResource("/hudson/matrix").toURI());
    }

    /**
     * Tests unmarshalls MatrixProject configuration and checks whether properties are loaded correctly.
     *
     * @throws Exception if any.
     */
    @Test
    @Ignore
    public void testLoadLegacyMatrixProject() throws Exception {
        Hudson hudson = createMock(Hudson.class);
        expect(hudson.getNodes()).andReturn(Lists.<Node>newArrayList()).anyTimes();
        expect(hudson.getInitLevel()).andReturn(InitMilestone.STARTED).anyTimes();
        expect(hudson.getRootDir()).andReturn(new File("./target/matrix")).anyTimes();
        ExtensionList<TransientProjectActionFactory> actionList = ExtensionList.create(hudson,
            TransientProjectActionFactory.class);
        expect(hudson.getExtensionList(TransientProjectActionFactory.class)).andReturn(actionList).anyTimes();
        ExtensionList<SaveableListener> saveableListenerList = ExtensionList.create(hudson, SaveableListener.class);
        expect(hudson.getExtensionList(SaveableListener.class)).andReturn(saveableListenerList).anyTimes();
        expect(hudson.getAllItems(MatrixConfiguration.class)).andReturn(Lists.<MatrixConfiguration>newArrayList()).anyTimes();
        mockStatic(Hudson.class);
        expect(Hudson.getInstance()).andReturn(hudson).anyTimes();
        replayAll();
        MatrixProject project = (MatrixProject) Items.getConfigFile(config).read();
        project.setAllowSave(false);
        project.initProjectProperties();
        project.buildProjectProperties();
        verifyAll();
        assertEquals("/tmp/1", project.getProperty(AbstractProject.CUSTOM_WORKSPACE_PROPERTY_NAME).getValue());
        assertEquals(new Integer(7), CascadingUtil.getIntegerProjectProperty(project,
            AbstractProject.QUIET_PERIOD_PROPERTY_NAME).getValue());

        assertTrue(CascadingUtil.getBooleanProjectProperty(project,
            MatrixProject.RUN_SEQUENTIALLY_PROPERTY_NAME).getValue());
        assertEquals("!(label==\"win\" && DB==\"oracle\")",
            project.getProperty(MatrixProject.COMBINATION_FILTER_PROPERTY_NAME).getValue());
        assertEquals("label==\"unix\" && DB==\"mysql\"",
            project.getProperty(MatrixProject.TOUCH_STONE_COMBINATION_FILTER_PROPERTY_NAME).getValue());
        assertEquals(Result.SUCCESS,
            CascadingUtil.getResultProjectProperty(project, MatrixProject.TOUCH_STONE_RESULT_CONDITION_PROPERTY_NAME).getValue());
        assertEquals(new LogRotator(7, 7, 7, 7),
            CascadingUtil.getLogRotatorProjectProperty(project, MatrixProject.LOG_ROTATOR_PROPERTY_NAME).getValue());
        AxisList axes = CascadingUtil.getAxesListProjectProperty(project, MatrixProject.AXES_PROPERTY_NAME).getValue();
        assertEquals(2, axes.size());
        assertEquals("DB", axes.get(0).getName());
        assertEquals(2, axes.get(0).getValues().size());
        assertEquals("oracle", axes.get(0).getValues().get(0));
        assertEquals("mysql", axes.get(0).getValues().get(1));
        assertEquals("label", axes.get(1).getName());
        assertEquals(2, axes.get(1).getValues().size());
        assertEquals("unix", axes.get(1).getValues().get(0));
        assertEquals("win", axes.get(1).getValues().get(1));

        assertEquals(3, project.getActiveConfigurations().size());
        assertEquals(2, project.getActiveConfigurations().iterator().next().getCombination().size());
    }
}
TOP

Related Classes of hudson.matrix.LegacyMatrixConfigurationTest

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.