[
https://issues.apache.org/jira/browse/WICKET-4507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Carsten Behring updated WICKET-4507:
------------------------------------
Description:
> This following test :
@Test
public void test() throws Exception {
WicketTester tester=new WicketTester();
tester.startComponentInPage(new Label("lableId", "content") {
@Override
protected void onComponentTag(ComponentTag tag) {
super.onComponentTag(tag);
tag.put("test","123");
}
});
tester.assertResultPage("icket:id=\"lableId\" test=\"123\">content");
assertEquals("icket:id=\"lableId\" test=\"123
\">content",tester.getLastResponseAsString());
assertEquals("",tester.getResponse().getDocument());
}
exposes the wrong behaviour of test.getLastResponseAsString() after starting a
component.
It should return something such as "<span> .... </span>", bit it returns a
string "cut in the middle" : cket:id=\"lableId\" test=\"123\">content
see attached quickstart
was:
> This following test :
@Test
public void test() throws Exception {
WicketTester tester=new WicketTester();
tester.startComponentInPage(new Label("lableId", "content") {
@Override
protected void onComponentTag(ComponentTag tag) {
super.onComponentTag(tag);
tag.put("test","123");
}
});
tester.assertResultPage("icket:id=\"lableId\" test=\"123\">content");
assertEquals("icket:id=\"lableId\" test=\"123
\">content",tester.getLastResponseAsString());
assertEquals("",tester.getResponse().getDocument());
}
see attached quickstart
> wicktTester.getLastResponseAsString() returns wrong result after starting a
> Component
> -------------------------------------------------------------------------------------
>
> Key: WICKET-4507
> URL: https://issues.apache.org/jira/browse/WICKET-4507
> Project: Wicket
> Issue Type: Bug
> Components: wicket
> Affects Versions: 1.5.5
> Reporter: Carsten Behring
> Attachments: quickstart.tgz
>
>
> > This following test :
> @Test
> public void test() throws Exception {
> WicketTester tester=new WicketTester();
> tester.startComponentInPage(new Label("lableId", "content") {
> @Override
> protected void onComponentTag(ComponentTag tag) {
> super.onComponentTag(tag);
> tag.put("test","123");
> }
> });
> tester.assertResultPage("icket:id=\"lableId\" test=\"123\">content");
> assertEquals("icket:id=\"lableId\" test=\"123
> \">content",tester.getLastResponseAsString());
> assertEquals("",tester.getResponse().getDocument());
> }
> exposes the wrong behaviour of test.getLastResponseAsString() after starting
> a component.
> It should return something such as "<span> .... </span>", bit it returns a
> string "cut in the middle" : cket:id=\"lableId\" test=\"123\">content
> see attached quickstart
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira