/* * Copyright (C) 2005 Alfresco, Inc. * * Licensed under the Mozilla Public License version 1.1 * with a permitted attribution clause. You may obtain a * copy of the License at * * http://www.alfresco.org/legal/license.txt * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific * language governing permissions and limitations under the * License. */ package org.alfresco.repo.action; import java.util.ArrayList; import java.util.List; import junit.framework.TestCase; import org.alfresco.service.cmr.action.ParameterDefinition; import org.alfresco.service.cmr.dictionary.DataTypeDefinition; import org.alfresco.service.namespace.QName; /** * @author Roy Wetherall */ public abstract class BaseParameterizedItemDefinitionImplTest extends TestCase { protected static final String NAME = "name"; protected static final String TITLE = "title"; protected static final String DESCRIPTION = "description"; protected List paramDefs = new ArrayList(); protected List duplicateParamDefs = new ArrayList(); private static final String PARAM1_DISPLAYNAME = "param1-displayname"; private static final String PARAM1_NAME = "param1-name"; private static final QName PARAM1_TYPE = DataTypeDefinition.TEXT; private static final QName PARAM2_TYPE = DataTypeDefinition.TEXT; private static final String PARAM2_DISPLAYNAME = "param2-displaname"; private static final String PARAM2_NAME = "param2-name"; @Override protected void setUp() throws Exception { // Create param def lists this.paramDefs.add(new ParameterDefinitionImpl(PARAM1_NAME, PARAM1_TYPE, false, PARAM1_DISPLAYNAME)); this.paramDefs.add(new ParameterDefinitionImpl(PARAM2_NAME, PARAM2_TYPE, false, PARAM2_DISPLAYNAME)); this.duplicateParamDefs.add(new ParameterDefinitionImpl(PARAM1_NAME, PARAM1_TYPE, false, PARAM1_DISPLAYNAME)); this.duplicateParamDefs.add(new ParameterDefinitionImpl(PARAM1_NAME, PARAM1_TYPE, false, PARAM1_DISPLAYNAME)); } public void testConstructor() { create(); } protected abstract ParameterizedItemDefinitionImpl create(); public void testGetName() { ParameterizedItemDefinitionImpl temp = create(); assertEquals(NAME, temp.getName()); } public void testGetParameterDefintions() { ParameterizedItemDefinitionImpl temp = create(); List params = temp.getParameterDefinitions(); assertNotNull(params); assertEquals(2, params.size()); int i = 0; for (ParameterDefinition definition : params) { if (i == 0) { assertEquals(PARAM1_NAME, definition.getName()); assertEquals(PARAM1_TYPE, definition.getType()); assertEquals(PARAM1_DISPLAYNAME, definition.getDisplayLabel()); } else { assertEquals(PARAM2_NAME, definition.getName()); assertEquals(PARAM2_TYPE, definition.getType()); assertEquals(PARAM2_DISPLAYNAME, definition.getDisplayLabel()); } i++; } } public void testGetParameterDefinition() { ParameterizedItemDefinitionImpl temp = create(); ParameterDefinition definition = temp.getParameterDefintion(PARAM1_NAME); assertNotNull(definition); assertEquals(PARAM1_NAME, definition.getName()); assertEquals(PARAM1_TYPE, definition.getType()); assertEquals(PARAM1_DISPLAYNAME, definition.getDisplayLabel()); ParameterDefinition nullDef = temp.getParameterDefintion("bobbins"); assertNull(nullDef); } }