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