use of com.github.bordertech.wcomponents.SubordinateTarget in project wcomponents by BorderTech.
the class SubordinateBuilder_Test method testDisableIn.
@Test
public void testDisableIn() {
SubordinateBuilder builder = new SubordinateBuilder();
WCheckBox input1 = new WCheckBox();
WCheckBox input2 = new WCheckBox();
WCheckBox input3 = new WCheckBox();
WComponentGroup<SubordinateTarget> group = new WComponentGroup<>();
group.addToGroup(input1);
group.addToGroup(input2);
group.addToGroup(input3);
// True Condition
builder.condition().equals(new WCheckBox(), "false");
// DisableIn Action
builder.whenTrue().disableIn(input2, group);
setActiveContext(createUIContext());
// Set initial states (opposite to end state)
input1.setDisabled(true);
input2.setDisabled(false);
input3.setDisabled(true);
Assert.assertTrue("disableIn - Input1 Component should be disabled", input1.isDisabled());
Assert.assertFalse("disableIn - Input2 Component should be enabled", input2.isDisabled());
Assert.assertTrue("disableIn - Input3 Component should be disabled", input3.isDisabled());
builder.build().applyTheControls();
Assert.assertFalse("disableIn - Input1 Component should be enabled", input1.isDisabled());
Assert.assertTrue("disableIn - Input2 Component should be disabled", input2.isDisabled());
Assert.assertFalse("disableIn - Input3 Component should be enabled", input3.isDisabled());
}
use of com.github.bordertech.wcomponents.SubordinateTarget in project wcomponents by BorderTech.
the class WSubordinateControlRenderer_Test method testBasicCondition.
@Test
public void testBasicCondition() throws IOException, SAXException, XpathException {
SubordinateTrigger condTrigger = new WCheckBox();
SubordinateTarget actionTarget = new WTextField();
// Basic Condition
Rule rule = new Rule();
rule.setCondition(new Equal(condTrigger, Boolean.TRUE));
rule.addActionOnTrue(new Show(actionTarget));
rule.addActionOnFalse(new Hide(actionTarget));
// Setup Subordinate
WSubordinateControl control = new WSubordinateControl();
control.addRule(rule);
WContainer root = new WContainer();
root.add(condTrigger);
root.add(actionTarget);
root.add(control);
setActiveContext(createUIContext());
// Apply the controls
control.applyTheControls();
// Validate Schema
assertSchemaMatch(root);
// Check for basic elements
assertXpathEvaluatesTo("1", "count(//ui:subordinate)", root);
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:condition)", root);
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:onTrue)", root);
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:onFalse)", root);
// Check id
assertXpathEvaluatesTo(control.getId() + "-c0", "//ui:subordinate/@id", root);
// Check condition
assertXpathEvaluatesTo(condTrigger.getId(), "//ui:subordinate/ui:condition/@controller", root);
assertXpathEvaluatesTo("true", "//ui:subordinate/ui:condition/@value", root);
// Check onTrue
assertXpathEvaluatesTo("show", "//ui:subordinate/ui:onTrue/@action", root);
assertXpathEvaluatesTo(actionTarget.getId(), "//ui:subordinate/ui:onTrue/ui:target/@id", root);
// Check onFalse
assertXpathEvaluatesTo("hide", "//ui:subordinate/ui:onFalse/@action", root);
assertXpathEvaluatesTo(actionTarget.getId(), "//ui:subordinate/ui:onFalse/ui:target/@id", root);
// Check action target
assertXpathEvaluatesTo("true", "//ui:textfield/@hidden", root);
}
use of com.github.bordertech.wcomponents.SubordinateTarget in project wcomponents by BorderTech.
the class WSubordinateControlRenderer_Test method testGroupEnableInDisableInAction.
@Test
public void testGroupEnableInDisableInAction() throws IOException, SAXException, XpathException {
SubordinateTrigger condTrigger = new WCheckBox();
// Setup Group
SubordinateTarget actionTarget1 = new WTextField();
SubordinateTarget actionTarget2 = new WTextField();
SubordinateTarget actionTarget3 = new WTextField();
WComponentGroup<SubordinateTarget> group1 = new WComponentGroup<>();
group1.addToGroup(actionTarget1);
group1.addToGroup(actionTarget2);
group1.addToGroup(actionTarget3);
// Setup Rule with ShowInGroup/HideInGroup actions
Rule rule = new Rule();
rule.setCondition(new Equal(condTrigger, Boolean.TRUE));
// OnTrue - EnableInGroup
rule.addActionOnTrue(new EnableInGroup(actionTarget1, group1));
// OnFalse - DisableInGroup
rule.addActionOnFalse(new DisableInGroup(actionTarget1, group1));
// Setup Subordinate
WSubordinateControl control = new WSubordinateControl();
control.addRule(rule);
WContainer root = new WContainer();
root.add(condTrigger);
root.add(actionTarget1);
root.add(actionTarget2);
root.add(actionTarget3);
root.add(control);
root.add(group1);
setActiveContext(createUIContext());
// Apply the controls (False conditions)
control.applyTheControls();
// Validate Schema
assertSchemaMatch(root);
// Check onTrue
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:onTrue)", root);
assertXpathEvaluatesTo("enableIn", "//ui:subordinate/ui:onTrue/@action", root);
assertXpathEvaluatesTo(group1.getId(), "//ui:subordinate/ui:onTrue/ui:target/@groupId", root);
assertXpathEvaluatesTo(actionTarget1.getId(), "//ui:subordinate/ui:onTrue/ui:target/@id", root);
// Check onFalse
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:onFalse)", root);
assertXpathEvaluatesTo("disableIn", "//ui:subordinate/ui:onFalse/@action", root);
assertXpathEvaluatesTo(group1.getId(), "//ui:subordinate/ui:onFalse/ui:target/@groupId", root);
assertXpathEvaluatesTo(actionTarget1.getId(), "//ui:subordinate/ui:onFalse/ui:target/@id", root);
// Check action target (Target 1 should be disabled)
assertXpathEvaluatesTo("true", "//ui:textfield[@id='" + actionTarget1.getId() + "']/@disabled", root);
assertXpathEvaluatesTo("", "//ui:textfield[@id='" + actionTarget2.getId() + "']/@disabled", root);
assertXpathEvaluatesTo("", "//ui:textfield[@id='" + actionTarget3.getId() + "']/@disabled", root);
}
use of com.github.bordertech.wcomponents.SubordinateTarget in project wcomponents by BorderTech.
the class WSubordinateControlRenderer_Test method testConditionWithRadioButtonGroupTarget.
@Test
public void testConditionWithRadioButtonGroupTarget() throws IOException, SAXException, XpathException {
RadioButtonGroup rbg = new RadioButtonGroup();
WRadioButton button1 = rbg.addRadioButton("B1");
WRadioButton button2 = rbg.addRadioButton("B2");
SubordinateTarget actionTarget = new WTextField();
// Setup a rule with a condition using a Radio Button Group
Rule rule = new Rule();
rule.setCondition(new Equal(rbg, button2));
rule.addActionOnTrue(new Show(actionTarget));
rule.addActionOnFalse(new Hide(actionTarget));
// Setup Subordinate
WSubordinateControl control = new WSubordinateControl();
control.addRule(rule);
WContainer root = new WContainer();
root.add(rbg);
root.add(button1);
root.add(button2);
root.add(actionTarget);
root.add(control);
setActiveContext(createUIContext());
rbg.setSelectedValue("B1");
// Apply the controls
control.applyTheControls();
// Validate Schema
assertSchemaMatch(root);
// Check Condition Value is the Radio Button Value
assertXpathEvaluatesTo(button2.getValue(), "//ui:subordinate/ui:condition/@value", root);
// Check action target
assertXpathEvaluatesTo("true", "//ui:textfield/@hidden", root);
}
use of com.github.bordertech.wcomponents.SubordinateTarget in project wcomponents by BorderTech.
the class WSubordinateControlRenderer_Test method testOrCondition.
@Test
public void testOrCondition() throws IOException, SAXException, XpathException {
SubordinateTrigger condTrigger1 = new WCheckBox();
SubordinateTrigger condTrigger2 = new WCheckBox();
SubordinateTrigger condTrigger3 = new WCheckBox();
// Create OR condition
Condition cond1 = new Equal(condTrigger1, Boolean.TRUE);
Condition cond2 = new Equal(condTrigger2, Boolean.TRUE);
Condition cond3 = new Equal(condTrigger3, Boolean.TRUE);
Condition orTest = new Or(cond1, cond2, cond3);
SubordinateTarget actionTarget = new WTextField();
// Setup rule with OR condition
Rule rule = new Rule();
rule.setCondition(orTest);
rule.addActionOnTrue(new Show(actionTarget));
rule.addActionOnFalse(new Hide(actionTarget));
// Setup Subordinate
WSubordinateControl control = new WSubordinateControl();
control.addRule(rule);
WContainer root = new WContainer();
root.add(condTrigger1);
root.add(condTrigger2);
root.add(condTrigger3);
root.add(actionTarget);
root.add(control);
// Apply the controls
control.applyTheControls();
// Validate Schema
assertSchemaMatch(root);
// Check OR
assertXpathEvaluatesTo("1", "count(//ui:subordinate/ui:or)", root);
assertXpathEvaluatesTo("3", "count(//ui:subordinate/ui:or/ui:condition)", root);
assertXpathEvaluatesTo(condTrigger1.getId(), "//ui:subordinate/ui:or/ui:condition[position()=1]/@controller", root);
assertXpathEvaluatesTo(condTrigger2.getId(), "//ui:subordinate/ui:or/ui:condition[position()=2]/@controller", root);
assertXpathEvaluatesTo(condTrigger3.getId(), "//ui:subordinate/ui:or/ui:condition[position()=3]/@controller", root);
// Check action target
assertXpathEvaluatesTo("true", "//ui:textfield/@hidden", root);
}
Aggregations