/******************************************************************************* * * Copyright (c) 2011 Oracle Corporation. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * * Nikita Levyankov * *******************************************************************************/ package org.eclipse.hudson.model.project.property; import hudson.model.FreeStyleProjectMock; import hudson.util.CopyOnWriteList; import java.util.Arrays; import org.junit.Before; import org.junit.Test; import static junit.framework.Assert.assertEquals; import static junit.framework.Assert.assertFalse; import static junit.framework.Assert.assertNotNull; import static junit.framework.Assert.assertTrue; import static junit.framework.Assert.fail; /** * Contains test-cases for {@link CopyOnWriteListProjectProperty}. * <p/> * Date: 11/4/11 * * @author Nikita Levyankov */ @SuppressWarnings("unchecked") public class CopyOnWriteListProjectPropertyTest { private CopyOnWriteListProjectProperty property; @Before public void setUp() { final String propertyKey = "propertyKey"; FreeStyleProjectMock project = new FreeStyleProjectMock("project"); property = new CopyOnWriteListProjectProperty(project); property.setKey(propertyKey); } /** * Verify constructor */ @Test public void testConstructor() { try { new CopyOnWriteListProjectProperty(null); fail("Null should be handled by CopyOnWriteListProjectProperty constructor."); } catch (Exception e) { assertEquals(BaseProjectProperty.INVALID_JOB_EXCEPTION, e.getMessage()); } } /** * Verify {@link org.eclipse.hudson.model.project.property.CopyOnWriteListProjectProperty#getDefaultValue()} method. */ @Test public void testGetDefaultValue() { CopyOnWriteList defaultValue = property.getDefaultValue(); assertNotNull(defaultValue); //Default value should be initialized and stored as original value assertTrue(property.getOriginalValue() == defaultValue); assertFalse(property.isOverridden()); } /** * Verify {@link org.eclipse.hudson.model.project.property.CopyOnWriteListProjectProperty#getOriginalValue()} method. */ @Test public void testGetOriginalValue() { //Original value is not initialized. Default value will be used instead. Shouldn't be null CopyOnWriteList originalValue = property.getOriginalValue(); assertNotNull(originalValue); //Value was set, so return it without modification assertTrue(originalValue == property.getOriginalValue()); } /** * Verify {@link org.eclipse.hudson.model.project.property.CopyOnWriteListProjectProperty#returnOriginalValue()} method. */ @Test public void testReturnOriginalValue() { //Return cascading is property is not overridden and is empty. assertFalse(property.returnOriginalValue()); //Return properties' originalValue if it was overridden property.setOverridden(true); assertTrue(property.returnOriginalValue()); //If property has not empty value - return it (basically for non-cascadable projects) property.setOriginalValue(new CopyOnWriteList(Arrays.asList(new Object())), false); assertTrue(property.returnOriginalValue()); //If property has not empty value and was overridden - return it property.setOriginalValue(new CopyOnWriteList(Arrays.asList(new Object())), true); assertTrue(property.returnOriginalValue()); } /** * Verify {@link org.eclipse.hudson.model.project.property.CopyOnWriteListProjectProperty#clearOriginalValue(hudson.util.CopyOnWriteList)} method. */ @Test public void testClearOriginalValue() { //Overridden flag should be cleared to false. Pre-set true value property.setOverridden(true); assertTrue(property.isOverridden()); CopyOnWriteList originalValue = new CopyOnWriteList(Arrays.asList(new Object())); property.clearOriginalValue(originalValue); //Original value should be set with overridden flag == false assertFalse(property.isOverridden()); assertTrue(originalValue == property.getOriginalValue()); } }