use of com.axway.ats.rbv.rules.AndRuleOperation in project ats-framework by Axway.
the class Test_DbStringFieldRule method isMatchExpectedFalseMultipleRulesNegative.
@Test
public void isMatchExpectedFalseMultipleRulesNegative() throws RbvException {
DbMetaData metaData = new DbMetaData();
metaData.putProperty("test1", "test");
metaData.putProperty("test2", "test");
AndRuleOperation andRule = new AndRuleOperation();
andRule.addRule(ruleTest1ExpectFalse);
andRule.addRule(ruleTest2ExpectFalse);
assertFalse(andRule.isMatch(metaData));
}
use of com.axway.ats.rbv.rules.AndRuleOperation in project ats-framework by Axway.
the class Test_DbStringFieldRule method isMatchExpectedFalseMultipleRulesPositiveNoMetaData.
@Test
public void isMatchExpectedFalseMultipleRulesPositiveNoMetaData() throws RbvException {
DbMetaData metaData = new DbMetaData();
metaData.putProperty("test1", "test123");
AndRuleOperation andRule = new AndRuleOperation();
andRule.addRule(ruleTest1ExpectFalse);
andRule.addRule(ruleTest2ExpectFalse);
assertTrue(andRule.isMatch(metaData));
}
use of com.axway.ats.rbv.rules.AndRuleOperation in project ats-framework by Axway.
the class Test_DbStringFieldRule method isMatchExpectedTrueMultipleRulesPositive.
@Test
public void isMatchExpectedTrueMultipleRulesPositive() throws RbvException {
DbMetaData metaData = new DbMetaData();
metaData.putProperty("test1", "test");
metaData.putProperty("test2", "test");
AndRuleOperation andRule = new AndRuleOperation();
andRule.addRule(ruleTest1ExpectTrue);
andRule.addRule(ruleTest2ExpectTrue);
assertTrue(andRule.isMatch(metaData));
}
use of com.axway.ats.rbv.rules.AndRuleOperation in project ats-framework by Axway.
the class Test_DbBinaryFieldRule method isMatchExpectedFalseMultipleRulesPositiveDontMatch.
@Test
public void isMatchExpectedFalseMultipleRulesPositiveDontMatch() throws RbvException {
DbMetaData metaData = new DbMetaData();
metaData.putProperty("table.column", new byte[] { 0, 2 });
metaData.putProperty("table.column2", new byte[] { 0, 18 });
AndRuleOperation andRule = new AndRuleOperation();
andRule.addRule(ruleTest1ExpectFalse);
andRule.addRule(ruleTest2ExpectFalse);
assertFalse(andRule.isMatch(metaData));
}
use of com.axway.ats.rbv.rules.AndRuleOperation in project ats-framework by Axway.
the class Test_DbBinaryFieldRule method isMatchExpectedTrueMultipleRulesNegativeNoMetaData.
@Test(expected = NoSuchMetaDataKeyException.class)
public void isMatchExpectedTrueMultipleRulesNegativeNoMetaData() throws RbvException {
DbMetaData metaData = new DbMetaData();
metaData.putProperty("test1", new byte[] { 0, 3 });
AndRuleOperation andRule = new AndRuleOperation();
andRule.addRule(ruleTest1ExpectTrue);
andRule.addRule(ruleTest2ExpectTrue);
assertFalse(andRule.isMatch(metaData));
}
Aggregations