Methods Summary |
---|
protected java.util.Map | initializedGenericTagTestProperties()Initialize a map of {@link org.apache.struts2.views.jsp.AbstractUITagTest.PropertyHolder} for generic tag
property testing. Will be used when calling {@link #verifyGenericProperties(org.apache.struts2.views.jsp.ui.AbstractUITag,
String, String[])} as properties to verify. This implementation extends testdata from AbstractUITag.
Map result = new HashMap();
new PropertyHolder("title", "someTitle").addToMap(result);
new PropertyHolder("cssClass", "cssClass1", "class=\"cssClass1\"").addToMap(result);
new PropertyHolder("cssStyle", "cssStyle1", "style=\"cssStyle1\"").addToMap(result);
new PropertyHolder("id", "someId").addToMap(result);
new PropertyHolder("for", "someFor").addToMap(result);
return result;
|
public void | testGenericAjax()
LabelTag tag = new LabelTag();
verifyGenericProperties(tag, "ajax", null);
|
public void | testGenericSimple()
LabelTag tag = new LabelTag();
verifyGenericProperties(tag, "simple", null);
|
public void | testGenericXhtml()
LabelTag tag = new LabelTag();
verifyGenericProperties(tag, "xhtml", null);
|
public void | testSimple()
TestAction testAction = (TestAction) action;
testAction.setFoo("bar");
LabelTag tag = new LabelTag();
tag.setPageContext(pageContext);
tag.setLabel("mylabel");
tag.setName("myname");
tag.setTitle("mytitle");
tag.setValue("%{foo}");
tag.doStartTag();
tag.doEndTag();
verify(LabelTest.class.getResource("Label-1.txt"));
|
public void | testSimpleWithLabelposition()
TestAction testAction = (TestAction) action;
testAction.setFoo("bar");
LabelTag tag = new LabelTag();
tag.setPageContext(pageContext);
tag.setLabel("mylabel");
tag.setName("myname");
tag.setValue("%{foo}");
tag.setLabelposition("top");
tag.doStartTag();
tag.doEndTag();
verify(LabelTest.class.getResource("Label-3.txt"));
|
public void | testWithNoValue()
TestAction testAction = (TestAction) action;
testAction.setFoo("baz");
LabelTag tag = new LabelTag();
tag.setPageContext(pageContext);
tag.setLabel("mylabel");
tag.setName("foo");
tag.setFor("for");
tag.doStartTag();
tag.doEndTag();
verify(LabelTest.class.getResource("Label-2.txt"));
|