xmlconfigurationproviderresultstest.java

来自「在Struts2中的jar包xwork的源代码.版本为2.0.7」· Java 代码 · 共 106 行

JAVA
106
字号
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.xwork2.config.providers;import com.opensymphony.xwork2.ActionChainResult;import com.opensymphony.xwork2.SimpleAction;import com.opensymphony.xwork2.config.ConfigurationException;import com.opensymphony.xwork2.config.ConfigurationProvider;import com.opensymphony.xwork2.config.entities.ActionConfig;import com.opensymphony.xwork2.config.entities.PackageConfig;import com.opensymphony.xwork2.config.entities.ResultConfig;import com.opensymphony.xwork2.config.entities.ResultTypeConfig;import com.opensymphony.xwork2.mock.MockResult;import java.util.ArrayList;import java.util.HashMap;import java.util.Map;/** * Created by IntelliJ IDEA. * User: Mike * Date: May 6, 2003 * Time: 3:10:16 PM * To change this template use Options | File Templates. */public class XmlConfigurationProviderResultsTest extends ConfigurationTestBase {    public void testActions() throws ConfigurationException {        final String filename = "com/opensymphony/xwork2/config/providers/xwork-test-results.xml";        ConfigurationProvider provider = buildConfigurationProvider(filename);        HashMap parameters = new HashMap();        HashMap results = new HashMap();        results.put("chainDefaultTypedResult", new ResultConfig("chainDefaultTypedResult", ActionChainResult.class.getName(), new HashMap()));        results.put("mockTypedResult", new ResultConfig("mockTypedResult", MockResult.class.getName(), new HashMap()));        Map resultParams = new HashMap();        resultParams.put("actionName", "bar.vm");        results.put("specificLocationResult", new ResultConfig("specificLocationResult", ActionChainResult.class.getName(), resultParams));        resultParams = new HashMap();        resultParams.put("actionName", "foo.vm");        results.put("defaultLocationResult", new ResultConfig("defaultLocationResult", ActionChainResult.class.getName(), resultParams));        resultParams = new HashMap();        resultParams.put("foo", "bar");        results.put("noDefaultLocationResult", new ResultConfig("noDefaultLocationResult", ActionChainResult.class.getName(), resultParams));        ActionConfig expectedAction = new ActionConfig(null, SimpleAction.class, parameters, results, new ArrayList());        // execute the configuration        provider.init(configuration);        provider.loadPackages();        PackageConfig pkg = configuration.getPackageConfig("default");        Map actionConfigs = pkg.getActionConfigs();        // assertions        assertEquals(1, actionConfigs.size());        ActionConfig action = (ActionConfig) actionConfigs.get("Bar");        assertEquals(expectedAction, action);    }    public void testResultInheritance() throws ConfigurationException {        final String filename = "com/opensymphony/xwork2/config/providers/xwork-test-result-inheritance.xml";        ConfigurationProvider provider = buildConfigurationProvider(filename);        // expectations        provider.init(configuration);        provider.loadPackages();        // assertions        PackageConfig subPkg = configuration.getPackageConfig("subPackage");        assertEquals(1, subPkg.getResultTypeConfigs().size());        assertEquals(3, subPkg.getAllResultTypeConfigs().size());    }    public void testResultTypes() throws ConfigurationException {        final String filename = "com/opensymphony/xwork2/config/providers/xwork-test-results.xml";        ConfigurationProvider provider = buildConfigurationProvider(filename);        // setup expectations        ResultTypeConfig chainResult = new ResultTypeConfig("chain", ActionChainResult.class.getName(), null);        ResultTypeConfig mockResult = new ResultTypeConfig("mock", MockResult.class.getName(), null);        // execute the configuration        provider.init(configuration);        provider.loadPackages();        PackageConfig pkg = configuration.getPackageConfig("default");        Map resultTypes = pkg.getResultTypeConfigs();        // assertions        assertEquals(2, resultTypes.size());        assertEquals("chain", pkg.getDefaultResultType());        assertEquals(chainResult, resultTypes.get("chain"));        assertEquals(mockResult, resultTypes.get("mock"));    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?