Author: craigmcc
Date: Tue Jun 13 16:52:15 2006
New Revision: 414006

URL: http://svn.apache.org/viewvc?rev=414006&view=rev
Log:
Add a system integration test to validate the token processing behavior.
There is a section of this test that is commented out until SHALE-182 is
fixed in the token processing implementation.
This integration mirrors r410909 on the trunk, which was integrated after
the "mvn_reorg" branch was created.

Added:
    
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/test/java/org/apache/shale/usecases/systest/TokenTestCase.java
      - copied unchanged from r411962, 
struts/shale/trunk/use-cases/src/systest/org/apache/shale/usecases/systest/TokenTestCase.java
Modified:
    
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp

Modified: 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp?rev=414006&r1=414005&r2=414006&view=diff
==============================================================================
--- 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
 (original)
+++ 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
 Tue Jun 13 16:52:15 2006
@@ -33,7 +33,8 @@
 
   <h:form                  id="form">
 
-    <h:messages    globalOnly="false"/>
+    <h:messages            id="messages"
+                   globalOnly="false"/>
 
     <h:panelGrid           id="grid"
                       columns="3">
@@ -43,15 +44,18 @@
       <h:inputText         id="value"
                       required="true"
                         value="#{token$test.value}"/>
-      <h:message          for="value"/>
+      <h:message           id="valueMessage"
+                          for="value"/>
 
       <h:outputLabel      for="token"
                         value=""/>
       <s:token             id="token"/>
-      <h:message          for="token"/>
+      <h:message           id="tokenMessage"
+                          for="token"/>
 
       <h:outputText     value=""/>
-      <h:commandButton  value="Submit"
+      <h:commandButton     id="submit"
+                         value="Submit"
                        action="usecases$toplevel"/>
       <h:outputText     value=""/>
 


Reply via email to