blob: 1ca529a4484d80e41c2a8f9c7f3a790596d09e41 [file] [log] [blame]
/*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.apache.pluto.testsuite;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Configuration for <code>PortletTest</code>.
*
* @see TestConfigFactory
* @see PortletTest
*
* @author <a href="mailto:ddewolf@apache.org">David H. DeWolf</a>
* @author <a href="mailto:zheng@apache.org">ZHENG Zhong</a>
* @version 1.0
* @since Sep 15, 2004
*/
public class TestConfig implements Serializable {
// Private Member Variables ------------------------------------------------
/** PortletTest class name. */
private String testClassName = null;
/** Test name. */
private String name = null;
private String displayURI = null;
private Map initParameters = new HashMap();
/**
* The action parameters list holding TestConfig.Parameter objects.
* We are not using Map to hold action parameters because parameters with
* the same name are allowed.
*/
private List actionParameters = new ArrayList();
/**
* The render parameters list holding TestConfig.Parameter objects.
* We are not using Map to hold render parameters because parameters with
* the same name are allowed.
*
* FIXME: when is this field used?
*/
private List renderParameters = new ArrayList();
// Constructor -------------------------------------------------------------
/**
* Default constructor required by Digester.
*/
public TestConfig() {
// Do nothing.
}
// Public Methods ----------------------------------------------------------
public String getTestClassName() {
return testClassName;
}
public void setTestClassName(String testClassName) {
this.testClassName = testClassName;
}
public String getName() {
return name;
}
public void setName(String testName) {
this.name = testName;
}
public String getDisplayURI() {
return displayURI;
}
public void setDisplayURI(String displayURI) {
this.displayURI = displayURI;
}
public void addInitParameter(String parameter, String value) {
initParameters.put(parameter, value);
}
public Map getInitParameters() {
return Collections.unmodifiableMap(initParameters);
}
public void addActionParameter(String name, String value) {
actionParameters.add(new Parameter(name, value));
}
public List getActionParameters() {
return actionParameters;
}
/**
* FIXME: why is this method required?
*/
public void addRenderParameter(String name, String value) {
renderParameters.add(new Parameter(name, value));
}
/**
* FIXME: when is this method used?
*/
public List getRenderParameters() {
return renderParameters;
}
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer.append(getClass().getName());
buffer.append("[").append(getName()).append("]");
return buffer.toString();
}
public static class Parameter {
private String name = null;
private String value = null;
public Parameter(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
}
}