View Javadoc

1   /*
2    * $Id$
3    *
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  package org.apache.struts2;
22  
23  import org.apache.struts2.dispatcher.mapper.ActionMapping;
24  
25  import java.util.HashMap;
26  import java.io.UnsupportedEncodingException;
27  
28  import com.opensymphony.xwork2.ActionProxy;
29  import com.opensymphony.xwork2.Action;
30  
31  import javax.servlet.ServletException;
32  
33  public class StrutsTestCaseTest extends StrutsSpringTestCase {
34      public void testGetActionMapping() {
35          ActionMapping mapping = getActionMapping("/test/testAction.action");
36          assertNotNull(mapping);
37          assertEquals("/test", mapping.getNamespace());
38          assertEquals("testAction", mapping.getName());
39      }
40  
41      public void testGetActionProxy() throws Exception {
42          //set parameters before calling getActionProxy
43          request.setParameter("name", "FD");
44          
45          ActionProxy proxy = getActionProxy("/test/testAction.action");
46          assertNotNull(proxy);
47  
48          TestAction action = (TestAction) proxy.getAction();
49          assertNotNull(action);
50  
51          String result = proxy.execute();
52          assertEquals(Action.SUCCESS, result);
53          assertEquals("FD", action.getName());
54      }
55  
56      public void testExecuteAction() throws ServletException, UnsupportedEncodingException {
57          String output = executeAction("/test/testAction.action");
58          assertEquals("Hello", output);
59      }
60  
61      public void testGetValueFromStack() throws ServletException, UnsupportedEncodingException {
62          request.setParameter("name", "FD");
63          executeAction("/test/testAction.action");
64          String name = (String) findValueAfterExecute("name");
65          assertEquals("FD", name);
66      }
67  }