use of com.github.bordertech.wcomponents.WCheckBox in project wcomponents by BorderTech.
the class WCheckBoxRenderer_Test method testXssEscaping.
@Test
public void testXssEscaping() throws IOException, SAXException, XpathException {
WCheckBox checkBox = new WCheckBox();
assertSafeContent(checkBox);
checkBox.setToolTip(getMaliciousAttribute());
assertSafeContent(checkBox);
checkBox.setAccessibleText(getMaliciousAttribute());
assertSafeContent(checkBox);
}
use of com.github.bordertech.wcomponents.WCheckBox in project wcomponents by BorderTech.
the class WDecoratedLabelRenderer_Test method testDoPaint.
@Test
public void testDoPaint() throws IOException, SAXException, XpathException {
final String bodyText = "WDecoratedLabelRenderer_Test.testDoPaint.bodyText";
final String headText = "WDecoratedLabelRenderer_Test.testDoPaint.headText";
final String tailText = "WDecoratedLabelRenderer_Test.testDoPaint.tailText";
// Test minimal text content
WDecoratedLabel decoratedLabel = new WDecoratedLabel(bodyText);
assertSchemaMatch(decoratedLabel);
assertXpathEvaluatesTo(bodyText, "normalize-space(//ui:decoratedlabel/ui:labelbody)", decoratedLabel);
assertXpathNotExists("//ui:decoratedlabel/@labelFocus", decoratedLabel);
decoratedLabel.setHead(new WText(headText));
decoratedLabel.setTail(new WText(tailText));
// Test all text content
assertSchemaMatch(decoratedLabel);
assertXpathEvaluatesTo(headText, "normalize-space(//ui:decoratedlabel/ui:labelhead)", decoratedLabel);
assertXpathEvaluatesTo(bodyText, "normalize-space(//ui:decoratedlabel/ui:labelbody)", decoratedLabel);
assertXpathEvaluatesTo(tailText, "normalize-space(//ui:decoratedlabel/ui:labeltail)", decoratedLabel);
assertXpathNotExists("//ui:decoratedlabel/@labelFocus", decoratedLabel);
// Test complex content
WContainer complexContent = new WContainer();
complexContent.add(new WLabel("Select"));
complexContent.add(new WCheckBox());
decoratedLabel.setBody(complexContent);
assertXpathExists("//ui:decoratedlabel/ui:labelbody/ui:label/following-sibling::ui:checkbox", decoratedLabel);
}
Aggregations