Author: ekoneil
Date: Thu Apr 28 10:13:42 2005
New Revision: 165167
URL: http://svn.apache.org/viewcvs?rev=165167&view=rev
Log:
One more message fix related to field binding; a message about missing fields
was still displayed when a read failed.
Updated the related tests as well.
BB: self
DRT: NetUI pass
BVT: NetUI pass
Added:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf
(with props)
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp
(with props)
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataBindingDisabledFieldBinding.xml
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B15430.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError2.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeErrors.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Expression.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/HtmlExpression.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeaterErrors.xml
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeBindingError.xml
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/util/ParseUtils.java
Thu Apr 28 10:13:42 2005
@@ -122,7 +122,7 @@
}
}
- String msg = "Could not find property or field \"" + name + "\" on
object of type \"" + type + "\"";
+ String msg = "Could not find JavaBean property named \"" + name + "\"
on object of type \"" + type + "\"";
LOGGER.error(msg);
throw new RuntimeException(msg);
}
Added:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf?rev=165167&view=auto
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf
(added)
+++
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf
Thu Apr 28 10:13:42 2005
@@ -0,0 +1,38 @@
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ *
+ * $Header:$
+ */
+package databinding.expressions.disabledfieldbinding;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
[EMAIL PROTECTED] ()
+public class Controller
+ extends PageFlowController {
+
+ public String jpfMessage = "Hello from the JPF [note, this shouldn't
work]";
+
+ @Jpf.Action(
+ forwards = {
+ @Jpf.Forward(
+ name = "success", path = "index.jsp")
+ })
+ public Forward begin() {
+ return new Forward("success");
+ }
+}
\ No newline at end of file
Propchange:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf
------------------------------------------------------------------------------
svn:eol-style = native
Added:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp?rev=165167&view=auto
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp
(added)
+++
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp
Thu Apr 28 10:13:42 2005
@@ -0,0 +1,14 @@
+<%@ page language="java" contentType="text/html;charset=UTF-8"%>
+<%@ taglib prefix="netui" uri="http://beehive.apache.org/netui/tags-html-1.0"%>
+<%@ taglib prefix="netui-data"
uri="http://beehive.apache.org/netui/tags-databinding-1.0"%>
+<%@ taglib prefix="netui-template"
uri="http://beehive.apache.org/netui/tags-template-1.0"%>
+<netui:html>
+ <head>
+ <netui:base/>
+ </head>
+ <netui:body>
+ <br/>
+ textbox: <netui:textBox dataSource="pageFlow.jpfMessage"/>
+ <br/>
+ </netui:body>
+</netui:html>
Propchange:
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml
Thu Apr 28 10:13:42 2005
@@ -2655,6 +2655,21 @@
</features>
</test>
<test>
+ <name>DataBindingDisabledFieldBinding</name>
+ <description>DataBindingDisabledFieldBinding</description>
+ <webapp>coreWeb</webapp>
+ <categories>
+ <category>bvt</category>
+ <category>bvt.struts11</category>
+ <category>databinding</category>
+ <category>datagrid</category>
+ </categories>
+ <features>
+ <feature>Databinding</feature>
+ <feature>Data Grid</feature>
+ </features>
+ </test>
+ <test>
<name>DataGridCaptionAttributes</name>
<description>DataGridCaptionAttributes</description>
<webapp>coreWeb</webapp>
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B15430.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B15430.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B15430.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/B15430.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>B15430</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>11 Feb 2005, 06:15:57.435 PM MST</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:13:31.931 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>3B1389F34BE03E93E7116508D9E28135</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -40,7 +40,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=3B1389F34BE03E93E7116508D9E28135; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>f624cb5:102041cb937:-7dc1</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-7f39</ses:value>
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testnumber</ses:name>
@@ -88,7 +88,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{actionForm.bad}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{actionForm.bad}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "bad" on object of type "class
bugs.b15430.Controller$Form"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{actionForm.bad}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "bad" on object of type "class
bugs.b15430.Controller$Form"</td></tr>
</table></span>
<br />
True Checkbox from form: <input type="hidden"
name="wlw-checkbox_key:{actionForm.checkBox2}OldValue" value="false"><input
type="checkbox" name="wlw-checkbox_key:{actionForm.checkBox2}" checked><br />
@@ -99,7 +99,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.bad}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.bad}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "bad" on object of type "class
bugs.b15430.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.bad}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "bad" on object of type "class
bugs.b15430.Controller"</td></tr>
</table></span>
<br />
True Checkbox from page flow: <input type="hidden"
name="wlw-checkbox_key:{pageFlow.checkBox2}OldValue" value="false"><input
type="checkbox" name="wlw-checkbox_key:{pageFlow.checkBox2}" checked><br />
@@ -119,7 +119,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>11 Feb 2005, 06:15:57.506 PM MST</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:13:33.203 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>CellRepeaterError</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>29 Jun 2004, 06:31:35.729 PM MDT</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:15:38.233 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -11,60 +11,56 @@
<ses:protocol>HTTP</ses:protocol>
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
- <ses:port>7001</ses:port>
+ <ses:port>8080</ses:port>
<ses:uri>/coreWeb/errors/cellRepeaterError/Controller.jpf</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters/>
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
-
<ses:value>AiIdjSOQiQsWm2GhST2yJaIAsJIIMJ5Tm5erzo1dbxUPbXagn4uI!-1058694893</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
<ses:header>
- <ses:name>Accept</ses:name>
+ <ses:name>accept</ses:name>
<ses:value>image/gif, image/x-xbitmap, image/jpeg,
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel,
application/msword, */*</ses:value>
</ses:header>
<ses:header>
- <ses:name>Accept-Encoding</ses:name>
+ <ses:name>accept-encoding</ses:name>
<ses:value>gzip, deflate, x-gzip, compress,
x-compress</ses:value>
</ses:header>
<ses:header>
- <ses:name>Accept-Language</ses:name>
+ <ses:name>accept-language</ses:name>
<ses:value>en-us</ses:value>
</ses:header>
<ses:header>
- <ses:name>Connection</ses:name>
+ <ses:name>connection</ses:name>
<ses:value>Keep-Alive, TE</ses:value>
</ses:header>
<ses:header>
- <ses:name>Cookie</ses:name>
-
<ses:value>JSESSIONID=AiIdjSOQiQsWm2GhST2yJaIAsJIIMJ5Tm5erzo1dbxUPbXagn4uI!-1058694893</ses:value>
+ <ses:name>cookie</ses:name>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
- <ses:name>Cookie2</ses:name>
+ <ses:name>cookie2</ses:name>
<ses:value>$Version="1"</ses:value>
</ses:header>
<ses:header>
- <ses:name>Host</ses:name>
- <ses:value>localhost:7001</ses:value>
+ <ses:name>host</ses:name>
+ <ses:value>localhost:8080</ses:value>
</ses:header>
<ses:header>
- <ses:name>TE</ses:name>
+ <ses:name>te</ses:name>
<ses:value>trailers, deflate, gzip, compress</ses:value>
</ses:header>
<ses:header>
- <ses:name>User-Agent</ses:name>
- <ses:value>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
5.0) RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E</ses:value>
- </ses:header>
- <ses:header>
- <ses:name>testRecorder.playback.testID</ses:name>
- <ses:value>-44f110ce:fd72f07a02:-7d61</ses:value>
+ <ses:name>testrecorder.playback.testid</ses:name>
+ <ses:value>-68d4ba9b:103894858b6:-7e12</ses:value>
</ses:header>
<ses:header>
- <ses:name>testRecorder.playback.testNumber</ses:name>
- <ses:value>1</ses:value>
+ <ses:name>user-agent</ses:name>
+ <ses:value>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
5.0) RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E</ses:value>
</ses:header>
</ses:headers>
</ses:request>
@@ -102,7 +98,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.foo}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.foo}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "foo" on object of type "class
errors.cellRepeaterError.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.foo}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "foo" on object of type "class
errors.cellRepeaterError.Controller"</td></tr>
</table></span>
</body>
@@ -113,9 +109,9 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>29 Jun 2004, 06:31:37.765 PM MDT</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:15:39.064 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
<ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
+</ses:recorderSession>
\ No newline at end of file
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError2.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError2.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError2.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CellRepeaterError2.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>CellRepeaterError2</ses:sessionName>
<ses:tester>ekoneil</ses:tester>
- <ses:startDate>26 Sep 2004, 11:08:40.527 PM MDT</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:15:39.104 AM MDT</ses:startDate>
<ses:description>ekoneil</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>40EE4AB857D01F27143B322AA189183F</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -44,7 +44,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=40EE4AB857D01F27143B322AA189183F; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>host</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>-6c926bc5:ff3e1a193d:-6de6</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-7e10</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -124,7 +124,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{sharedFlow.root.noCellRepeaterProperty}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{sharedFlow.root.noCellRepeaterProperty}" with available
binding contexts [actionForm, pageFlow, globalApp, request, session,
application, pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find property or field
"noCellRepeaterProperty" on object of type "class
webappRoot.SharedFlow"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{sharedFlow.root.noCellRepeaterProperty}" with available
binding contexts [actionForm, pageFlow, globalApp, request, session,
application, pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find JavaBean property named
"noCellRepeaterProperty" on object of type "class
webappRoot.SharedFlow"</td></tr>
</table></span>
@@ -136,9 +136,9 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>26 Sep 2004, 11:08:41.228 PM MDT</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:15:40.086 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
<ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
+</ses:recorderSession>
\ No newline at end of file
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeErrors.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeErrors.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeErrors.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/CtTreeErrors.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>CtTreeErrors</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>27 Apr 2005, 08:40:14.667 PM MDT</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:16:50.427 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>ABC339AF443875DC69BC44B76E3E9769</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -40,7 +40,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=ABC339AF443875DC69BC44B76E3E9769; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>host</ses:name>
@@ -48,7 +48,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>-1515d2ce:10386a99667:-7d6d</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-7d64</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -95,7 +95,7 @@
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
<tr><th rowspan="2">1</th><th
rowspan="2">Tree</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.badTree}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.badTree}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "badTree" on object of type "class
coretags.tree.errors.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.badTree}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "badTree" on object of type "class
coretags.tree.errors.Controller"</td></tr>
<tr><th>2</th><th>Tree</th><th>Message</th><td>Action 'badAction' is not a
valid action.</td></tr>
<tr><th>3</th><th>Tree</th><th>Message</th><td>Action 'badAction' is not a
valid action.</td></tr>
<tr><th>4</th><th>Tree</th><th>Message</th><td>Unable to create the tree
instance identified by the expression 'pageFlow.readTree'. Error:<br>Exception
when attempting to update the expression "{pageFlow.readTree}" with available
binding contexts [actionForm, pageFlow, globalApp, request, session,
application]. Root cause: java.lang.RuntimeException: Could not update
expression because a public JavaBean setter for the property "readTree" could
not be found.</td></tr>
@@ -110,7 +110,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>27 Apr 2005, 08:40:15.318 PM MDT</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:16:51.298 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
Added:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataBindingDisabledFieldBinding.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataBindingDisabledFieldBinding.xml?rev=165167&view=auto
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataBindingDisabledFieldBinding.xml
(added)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataBindingDisabledFieldBinding.xml
Thu Apr 28 10:13:42 2005
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
+ <ses:sessionName>DataBindingDisabledFieldBinding</ses:sessionName>
+ <ses:tester>ekoneil</ses:tester>
+ <ses:startDate>28 Apr 2005, 09:08:49.735 AM MDT</ses:startDate>
+ <ses:description>Test to ensure that NetUI dataSource EL field binding
remains disabled.</ses:description>
+ <ses:tests>
+ <ses:test>
+ <ses:testNumber>1</ses:testNumber>
+ <ses:request>
+ <ses:protocol>HTTP</ses:protocol>
+ <ses:protocolVersion>1.1</ses:protocolVersion>
+ <ses:host>localhost</ses:host>
+ <ses:port>8080</ses:port>
+
<ses:uri>/coreWeb/databinding/expressions/disabledfieldbinding/Controller.jpf</ses:uri>
+ <ses:method>GET</ses:method>
+ <ses:parameters/>
+ <ses:cookies>
+ <ses:cookie>
+ <ses:name>JSESSIONID</ses:name>
+ <ses:value>0B90AAE83B54B87D6D0AC548420C2099</ses:value>
+ </ses:cookie>
+ </ses:cookies>
+ <ses:headers>
+ <ses:header>
+ <ses:name>accept</ses:name>
+
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>accept-charset</ses:name>
+ <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>accept-encoding</ses:name>
+ <ses:value>gzip,deflate</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>accept-language</ses:name>
+ <ses:value>en-us,en;q=0.5</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>connection</ses:name>
+ <ses:value>keep-alive</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>cookie</ses:name>
+
<ses:value>JSESSIONID=0B90AAE83B54B87D6D0AC548420C2099</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>host</ses:name>
+ <ses:value>localhost:8080</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>keep-alive</ses:name>
+ <ses:value>300</ses:value>
+ </ses:header>
+ <ses:header>
+ <ses:name>user-agent</ses:name>
+ <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
rv:1.7.7) Gecko/20050414 Firefox/1.0.3</ses:value>
+ </ses:header>
+ </ses:headers>
+ </ses:request>
+ <ses:response>
+ <ses:statusCode>200</ses:statusCode>
+ <ses:reason/>
+ <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01 Transitional//EN"
+ "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+
+ <head>
+ <base
href="http://localhost:8080/coreWeb/databinding/expressions/disabledfieldbinding/index.jsp">
+ </head>
+ <body>
+ <br/>
+ textbox: <span style="color:red;background-color:white">
+ [<b>Expression Error:1</b>, Found in tag <b>TextBox</b>]</span>
+ <br/>
+ <div> <hr /><table border="1" cellspacing="0"
style="color:red;background-color:white">
+ <tr><th colspan="6">Page Errors</th></tr>
+ <tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
+<tr><th rowspan="2">1</th><th
rowspan="2">TextBox</th><th>Attribute</th><td>dataSource</td>
+ <th>Expression</th><td>{pageFlow.jpfMessage}</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.jpfMessage}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "jpfMessage" on object of type "class
databinding.expressions.disabledfieldbinding.Controller"</td></tr>
+</table></div>
+</body>
+
+</html>]]></ses:responseBody>
+ </ses:response>
+ </ses:test>
+ </ses:tests>
+ <ses:endDate>28 Apr 2005, 09:08:54.242 AM MDT</ses:endDate>
+ <ses:testCount>1</ses:testCount>
+</ses:recorderSession>
\ No newline at end of file
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Expression.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Expression.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Expression.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/Expression.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>Expression</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>11 Feb 2005, 06:29:46.387 PM MST</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:19:16.887 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>D4E953FA0410A5376F1B9E5CC645441E</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -40,7 +40,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=D4E953FA0410A5376F1B9E5CC645441E; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>f624cb5:102041cb937:-7732</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-7beb</ses:value>
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testnumber</ses:name>
@@ -91,7 +91,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.hidden}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.hidden}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "hidden" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.hidden}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "hidden" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>TextBox</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -100,7 +100,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.tbDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.tbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "tbDataSource" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.tbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "tbDataSource" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>TextArea</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -109,7 +109,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.taDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.taDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "taDataSource" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.taDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "taDataSource" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>Checkbox</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -118,7 +118,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.cbDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.cbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "cbDataSource" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.cbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "cbDataSource" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>Checkbox Group</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -127,7 +127,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.cbgDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.cbgDataSource}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find property or field "cbgDataSource" on
object of type "class errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.cbgDataSource}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find JavaBean property named
"cbgDataSource" on object of type "class errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>Radio Group</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -136,7 +136,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.rgDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.rgDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "rgDataSource" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.rgDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "rgDataSource" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
<tr><td>Select</td><td><span> <table border="1" cellspacing="0"
style="color:red;background-color:white">
@@ -145,7 +145,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.sDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.sDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "sDataSource" on object of type "class
errors.expression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.sDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "sDataSource" on object of type "class
errors.expression.Controller"</td></tr>
</table></span>
</td></tr>
</table>
@@ -159,7 +159,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>11 Feb 2005, 06:29:49.211 PM MST</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:19:18.650 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/HtmlExpression.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/HtmlExpression.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/HtmlExpression.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/HtmlExpression.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>HtmlExpression</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>11 Feb 2005, 06:30:39.303 PM MST</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:19:46.971 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>D4E953FA0410A5376F1B9E5CC645441E</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -40,7 +40,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=D4E953FA0410A5376F1B9E5CC645441E; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>f624cb5:102041cb937:-76e4</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-7b9b</ses:value>
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testnumber</ses:name>
@@ -110,25 +110,25 @@
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
<tr><th rowspan="2">1</th><th
rowspan="2">Hidden</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.hidden}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.hidden}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "hidden" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.hidden}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "hidden" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">2</th><th
rowspan="2">TextBox</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.tbDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.tbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "tbDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.tbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "tbDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">3</th><th
rowspan="2">TextArea</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.taDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.taDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "taDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.taDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "taDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">4</th><th
rowspan="2">CheckBox</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.cbDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.cbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "cbDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.cbDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "cbDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">5</th><th
rowspan="2">CheckBoxGroup</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.cbgDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.cbgDataSource}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find property or field "cbgDataSource" on
object of type "class errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.cbgDataSource}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find JavaBean property named
"cbgDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">6</th><th
rowspan="2">RadioButtonGroup</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.rgDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.rgDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "rgDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.rgDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "rgDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
<tr><th rowspan="2">7</th><th
rowspan="2">Select</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.sDataSource}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.sDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "sDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.sDataSource}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "sDataSource" on object of type "class
errors.htmlExpression.Controller"</td></tr>
</table></div>
</body>
@@ -139,7 +139,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>11 Feb 2005, 06:30:41.386 PM MST</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:19:48.723 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeaterErrors.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeaterErrors.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeaterErrors.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RepeaterErrors.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RepeaterErrors</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>29 Jun 2004, 06:41:08.896 PM MDT</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:24:49.976 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -11,60 +11,56 @@
<ses:protocol>HTTP</ses:protocol>
<ses:protocolVersion>1.1</ses:protocolVersion>
<ses:host>localhost</ses:host>
- <ses:port>7001</ses:port>
+ <ses:port>8080</ses:port>
<ses:uri>/coreWeb/errors/repeaterErrors/Controller.jpf</ses:uri>
<ses:method>GET</ses:method>
<ses:parameters/>
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
-
<ses:value>AiIdjSOQiQsWm2GhST2yJaIAsJIIMJ5Tm5erzo1dbxUPbXagn4uI!-1058694893</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
<ses:header>
- <ses:name>Accept</ses:name>
+ <ses:name>accept</ses:name>
<ses:value>image/gif, image/x-xbitmap, image/jpeg,
image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel,
application/msword, */*</ses:value>
</ses:header>
<ses:header>
- <ses:name>Accept-Encoding</ses:name>
+ <ses:name>accept-encoding</ses:name>
<ses:value>gzip, deflate, x-gzip, compress,
x-compress</ses:value>
</ses:header>
<ses:header>
- <ses:name>Accept-Language</ses:name>
+ <ses:name>accept-language</ses:name>
<ses:value>en-us</ses:value>
</ses:header>
<ses:header>
- <ses:name>Connection</ses:name>
+ <ses:name>connection</ses:name>
<ses:value>Keep-Alive, TE</ses:value>
</ses:header>
<ses:header>
- <ses:name>Cookie</ses:name>
-
<ses:value>JSESSIONID=AiIdjSOQiQsWm2GhST2yJaIAsJIIMJ5Tm5erzo1dbxUPbXagn4uI!-1058694893</ses:value>
+ <ses:name>cookie</ses:name>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
- <ses:name>Cookie2</ses:name>
+ <ses:name>cookie2</ses:name>
<ses:value>$Version="1"</ses:value>
</ses:header>
<ses:header>
- <ses:name>Host</ses:name>
- <ses:value>localhost:7001</ses:value>
+ <ses:name>host</ses:name>
+ <ses:value>localhost:8080</ses:value>
</ses:header>
<ses:header>
- <ses:name>TE</ses:name>
+ <ses:name>te</ses:name>
<ses:value>trailers, deflate, gzip, compress</ses:value>
</ses:header>
<ses:header>
- <ses:name>User-Agent</ses:name>
- <ses:value>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
5.0) RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E</ses:value>
- </ses:header>
- <ses:header>
- <ses:name>testRecorder.playback.testID</ses:name>
- <ses:value>-44f110ce:fd72f07a02:-7861</ses:value>
+ <ses:name>testrecorder.playback.testid</ses:name>
+ <ses:value>-68d4ba9b:103894858b6:-7896</ses:value>
</ses:header>
<ses:header>
- <ses:name>testRecorder.playback.testNumber</ses:name>
- <ses:value>1</ses:value>
+ <ses:name>user-agent</ses:name>
+ <ses:value>Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
5.0) RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E
RPT-HTTPClient/0.3-3E RPT-HTTPClient/0.3-3E</ses:value>
</ses:header>
</ses:headers>
</ses:request>
@@ -112,7 +108,7 @@
<th>Errors</th><td colspan="2">1</td></tr>
<tr><th>Expression Error</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.foo}</td></tr>
- <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.foo}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find property or field "foo" on object of type "class
errors.repeaterErrors.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="4">Caught exception when
evaluating expression "{pageFlow.foo}" with available binding contexts
[actionForm, pageFlow, globalApp, request, session, application, pageContext,
bundle, container, url, pageInput]. Root cause: java.lang.RuntimeException:
Could not find JavaBean property named "foo" on object of type "class
errors.repeaterErrors.Controller"</td></tr>
</table></span>
<br />
@@ -124,9 +120,9 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>29 Jun 2004, 06:41:10.958 PM MDT</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:24:51.298 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>
<ses:failedCount>1</ses:failedCount>
-</ses:recorderSession>
+</ses:recorderSession>
\ No newline at end of file
Modified:
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeBindingError.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeBindingError.xml?rev=165167&r1=165166&r2=165167&view=diff
==============================================================================
---
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeBindingError.xml
(original)
+++
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/RichTreeBindingError.xml
Thu Apr 28 10:13:42 2005
@@ -2,7 +2,7 @@
<ses:recorderSession
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session">
<ses:sessionName>RichTreeBindingError</ses:sessionName>
<ses:tester>Daryl</ses:tester>
- <ses:startDate>18 Jan 2005, 06:53:31.546 PM MST</ses:startDate>
+ <ses:startDate>28 Apr 2005, 09:26:10.883 AM MDT</ses:startDate>
<ses:description>Daryl</ses:description>
<ses:tests>
<ses:test>
@@ -18,7 +18,7 @@
<ses:cookies>
<ses:cookie>
<ses:name>JSESSIONID</ses:name>
- <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+ <ses:value>E2DA6F1025691D9293A348B105B91352</ses:value>
</ses:cookie>
</ses:cookies>
<ses:headers>
@@ -40,7 +40,7 @@
</ses:header>
<ses:header>
<ses:name>cookie</ses:name>
- <ses:value>$Version=0;
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+ <ses:value>$Version=0;
JSESSIONID=E2DA6F1025691D9293A348B105B91352; $Path=/coreWeb</ses:value>
</ses:header>
<ses:header>
<ses:name>cookie2</ses:name>
@@ -56,7 +56,7 @@
</ses:header>
<ses:header>
<ses:name>testrecorder.playback.testid</ses:name>
- <ses:value>-54834ffa:101889e165b:-7991</ses:value>
+ <ses:value>-68d4ba9b:103894858b6:-77f6</ses:value>
</ses:header>
<ses:header>
<ses:name>user-agent</ses:name>
@@ -96,7 +96,7 @@
<tr><th>Error Number</th><th>Tag Type</th><th colspan="4">Error</th></tr>
<tr><th rowspan="2">1</th><th
rowspan="2">Tree</th><th>Attribute</th><td>dataSource</td>
<th>Expression</th><td>{pageFlow.badPageFlowTree}</td></tr>
- <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.badPageFlowTree}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find property or field "badPageFlowTree"
on object of type "class richTree.Controller"</td></tr>
+ <tr><th valign="top">Message</th><td colspan="3">Caught exception when
evaluating expression "{pageFlow.badPageFlowTree}" with available binding
contexts [actionForm, pageFlow, globalApp, request, session, application,
pageContext, bundle, container, url, pageInput]. Root cause:
java.lang.RuntimeException: Could not find JavaBean property named
"badPageFlowTree" on object of type "class richTree.Controller"</td></tr>
</table></div>
</body>
@@ -107,7 +107,7 @@
</ses:testResults>
</ses:test>
</ses:tests>
- <ses:endDate>18 Jan 2005, 06:53:32.718 PM MST</ses:endDate>
+ <ses:endDate>28 Apr 2005, 09:26:12.465 AM MDT</ses:endDate>
<ses:sessionStatus>fail</ses:sessionStatus>
<ses:testCount>1</ses:testCount>
<ses:passedCount>0</ses:passedCount>