blob: 951497b8041acd8817996816144d2a72aa28b030 [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.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.digester.Digester;
import org.apache.pluto.testsuite.TestConfig;
import org.xml.sax.SAXException;
/**
* Test configuration factory that reads and parses testsuite config file using
* Digester and constructs <code>TestConfig</code> objects.
*
* @see TestConfig
*
* @author <a href="mailto:ddewolf@apache.org">David H. DeWolf</a>
* @author <a href="mailto:zheng@apache.org">ZHENG Zhong</a>
*/
public class TestConfigFactory {
/** Digester instance used to parse testsuite config file. */
private Digester digester = new Digester();
// Constructor -------------------------------------------------------------
/**
* Creates a factory instance.
*/
public TestConfigFactory() {
digester = new Digester();
digester.addObjectCreate("testportlet-config", ArrayList.class);
digester.addObjectCreate("testportlet-config/testsuite-config",
TestConfig.class);
digester.addBeanPropertySetter("testportlet-config/testsuite-config/name",
"name");
digester.addBeanPropertySetter("testportlet-config/testsuite-config/class",
"testClassName");
digester.addBeanPropertySetter("testportlet-config/testsuite-config/display-uri",
"displayURI");
digester.addCallMethod("testportlet-config/testsuite-config/init-param", "addInitParameter", 2);
digester.addCallParam("testportlet-config/testsuite-config/init-param/name", 0);
digester.addCallParam("testportlet-config/testsuite-config/init-param/value", 1);
digester.addCallMethod("testportlet-config/testsuite-config/action-param", "addActionParameter", 2);
digester.addCallParam("testportlet-config/testsuite-config/action-param/name", 0);
digester.addCallParam("testportlet-config/testsuite-config/action-param/value", 1);
digester.addCallMethod("testportlet-config/testsuite-config/render-param", "addRenderParameter", 2);
digester.addCallParam("testportlet-config/testsuite-config/render-param/name", 0);
digester.addCallParam("testportlet-config/testsuite-config/render-param/value", 1);
digester.addSetRoot("testportlet-config/testsuite-config", "add");
}
// Public Methods ----------------------------------------------------------
/**
* Reads and parses testsuite config file, creates a list of
* <code>TestConfig</code> objects.
*
* @param in the input stream of the testsuite config file.
* @return a list of <code>TestConfig</code> objects.
* @throws SAXException if a parsing error occurs.
* @throws IOException if an IO error occurs.
* @see TestConfig
*/
public List createTestConfigs(InputStream in)
throws SAXException, IOException {
return (List) digester.parse(in);
}
}