[ 
https://issues.apache.org/jira/browse/WW-4017?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13604558#comment-13604558
 ] 

Hudson commented on WW-4017:
----------------------------

Integrated in Struts2-JDK6 #657 (See 
[https://builds.apache.org/job/Struts2-JDK6/657/])
    WW-4017: Support multiple Action executions and Session values (Revision 
1457393)
WW-4017: Support multiple Action executions and Session values (Revision 
1457392)

     Result = FAILURE
grobmeier : 
Files : 
* /struts/struts2/trunk/plugins/junit/src/test/java/org/apache/struts2/session
* 
/struts/struts2/trunk/plugins/junit/src/test/java/org/apache/struts2/session/SessionGetAction.java
* 
/struts/struts2/trunk/plugins/junit/src/test/java/org/apache/struts2/session/SessionSetAction.java
* 
/struts/struts2/trunk/plugins/junit/src/test/java/org/apache/struts2/session/StrutsJUnit4SessionTestCaseTest.java
* 
/struts/struts2/trunk/plugins/junit/src/test/resources/struts-session-values-test.xml
* /struts/struts2/trunk/plugins/junit/src/test/resources/template-session.ftl

grobmeier : 
Files : 
* 
/struts/struts2/trunk/plugins/junit/src/main/java/org/apache/struts2/StrutsJUnit4TestCase.java

                
> Support multiple Action executions and Session values
> -----------------------------------------------------
>
>                 Key: WW-4017
>                 URL: https://issues.apache.org/jira/browse/WW-4017
>             Project: Struts 2
>          Issue Type: Improvement
>          Components: Plugin - JUnit
>    Affects Versions: 2.3.12
>            Reporter: Christian Grobmeier
>             Fix For: 2.3.13
>
>
> Assuming the following scenario:
> String output = executeAction("/sessiontest/sessionSet.action");
> Assert.assertEquals("sessionValue", output);
> String output2 = executeAction("/sessiontest/sessionGet.action");
> Assert.assertEquals("sessionValue", output2);
> where the first action would set "sessionValue" into the http session and the 
> template would only output this value, output2 equals 
> "sessionValuesessionValue".
> The solution is to finish the execution and clean up the necessary mock 
> resources. Besides, the new mock session need to get the session attributes.
> This test case should then work:
> String output = executeAction("/sessiontest/sessionSet.action");
> Assert.assertEquals("sessionValue", output);
> this.finishExecution();
> String output2 = executeAction("/sessiontest/sessionGet.action");
> Assert.assertEquals("sessionValue", output2);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to