use of com.github.bordertech.wcomponents.WDecoratedLabel in project wcomponents by BorderTech.
the class WDecoratedLabelRenderer_Test method testRendererCorrectlyConfigured.
@Test
public void testRendererCorrectlyConfigured() {
WDecoratedLabel decoratedLabel = new WDecoratedLabel();
Assert.assertTrue("Incorrect renderer supplied", getWebXmlRenderer(decoratedLabel) instanceof WDecoratedLabelRenderer);
}
use of com.github.bordertech.wcomponents.WDecoratedLabel 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);
}
use of com.github.bordertech.wcomponents.WDecoratedLabel in project wcomponents by BorderTech.
the class WHeadingRenderer_Test method testXssEscaping.
@Test
public void testXssEscaping() throws IOException, SAXException, XpathException {
WHeading heading = new WHeading(WHeading.TITLE, new WDecoratedLabel(new WText("dummy")));
assertSafeContent(heading);
heading.setAccessibleText(getMaliciousAttribute("ui:heading"));
assertSafeContent(heading);
}
Aggregations