blob: 137ebb12c295fd82e3ceb70e777b6d2e874ebce1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 ${package}.example;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.config.RuntimeConfiguration;
import com.opensymphony.xwork2.config.entities.ActionConfig;
import com.opensymphony.xwork2.config.entities.ResultConfig;
import com.opensymphony.xwork2.config.providers.XmlConfigurationProvider;
import org.apache.struts2.StrutsTestCase;
import java.util.List;
import java.util.Map;
import org.apache.struts2.StrutsTestCase;
public class ConfigTest extends StrutsTestCase {
protected void assertSuccess(String result) {
assertEquals("Expected a success result!", ActionSupport.SUCCESS, result);
}
protected void assertInput(String result) {
assertEquals("Expected an input result!", ActionSupport.INPUT, result);
}
protected Map<String, List<String>> assertFieldErrors(ActionSupport action) {
assertTrue(action.hasFieldErrors());
return action.getFieldErrors();
}
protected void assertFieldError(Map<String, List<String>> fieldErrors, String fieldName, String errorMessage) {
List<String> errors = fieldErrors.get(fieldName);
assertNotNull("Expected errors for " + fieldName, errors);
assertTrue("Expected errors for " + fieldName, errors.size() > 0);
// TODO: Should be a loop
assertEquals(errorMessage, errors.get(0));
}
protected void setUp() throws Exception {
super.setUp();
XmlConfigurationProvider c = new XmlConfigurationProvider("struts.xml");
configurationManager.addContainerProvider(c);
configurationManager.reload();
}
protected ActionConfig assertClass(String namespace, String action_name, String class_name) {
RuntimeConfiguration configuration = configurationManager.getConfiguration().getRuntimeConfiguration();
ActionConfig config = configuration.getActionConfig(namespace, action_name);
assertNotNull("Mssing action", config);
assertEquals("Wrong class name: [" + config.getClassName() + "]", class_name, config.getClassName());
return config;
}
protected ActionConfig assertClass(String action_name, String class_name) {
return assertClass("", action_name, class_name);
}
protected void assertResult(ActionConfig config, String resultName, String resultValue) {
Map<String, ResultConfig> results = config.getResults();
ResultConfig result = results.get(resultName);
Map<String, String> params = result.getParams();
String value = params.get("actionName");
if (value == null)
value = params.get("location");
assertEquals("Wrong result value: [" + value + "]", resultValue, value);
}
public void testConfig() {
assertNotNull(configurationManager);
}
}