Update tests and organize them into packages
parent
b44b1777ee
commit
dd167ed24f
@ -1,81 +0,0 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
|
||||||
|
|
||||||
import io.github.benas.easyrules.api.RulesEngine;
|
|
||||||
import io.github.benas.easyrules.core.PriorityRulesEngine;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test class for composite priority rule execution.
|
|
||||||
*
|
|
||||||
* @author Mahmoud Ben Hassine (md.benhassine@gmail.com)
|
|
||||||
*/
|
|
||||||
public class CompositePriorityRuleTest {
|
|
||||||
|
|
||||||
private SimplePriorityRule rule1, rule2;
|
|
||||||
|
|
||||||
private SimpleCompositePriorityRule compositeRule;
|
|
||||||
|
|
||||||
private RulesEngine rulesEngine;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setup(){
|
|
||||||
|
|
||||||
rule1 = new SimplePriorityRule("r1","d1",1);
|
|
||||||
rule2 = new SimplePriorityRule("r2","d2",2);
|
|
||||||
|
|
||||||
compositeRule = new SimpleCompositePriorityRule("cp", "crd");
|
|
||||||
|
|
||||||
rulesEngine = new PriorityRulesEngine();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testCompositeRule() {
|
|
||||||
|
|
||||||
compositeRule.addRule(rule1);
|
|
||||||
compositeRule.addRule(rule2);
|
|
||||||
|
|
||||||
rulesEngine.registerRule(compositeRule);
|
|
||||||
|
|
||||||
rulesEngine.fireRules();
|
|
||||||
|
|
||||||
//Rule 1 should be executed
|
|
||||||
assertEquals(true, rule1.isExecuted());
|
|
||||||
|
|
||||||
//Rule 2 should be executed
|
|
||||||
assertEquals(true, rule2.isExecuted());
|
|
||||||
|
|
||||||
//The composite Rule should be executed
|
|
||||||
assertEquals(true, compositeRule.isExecuted());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testCompositeRuleWithARuleThatEvaluateToFalse() {
|
|
||||||
|
|
||||||
compositeRule.addRule(rule1);
|
|
||||||
|
|
||||||
rule2 = new SimplePriorityRuleThatEvaluateToFalse("r2","d2",2);
|
|
||||||
|
|
||||||
compositeRule.addRule(rule2);
|
|
||||||
|
|
||||||
rulesEngine.registerRule(compositeRule);
|
|
||||||
|
|
||||||
rulesEngine.fireRules();
|
|
||||||
|
|
||||||
//The composite rule and composing rules should not be executed since not all rules conditions evaluate to TRUE
|
|
||||||
|
|
||||||
//Rule 1 should not be executed
|
|
||||||
assertEquals(false, rule1.isExecuted());
|
|
||||||
|
|
||||||
//Rule 2 should not be executed
|
|
||||||
assertEquals(false, rule2.isExecuted());
|
|
||||||
|
|
||||||
//The composite Rule not should be executed
|
|
||||||
assertEquals(false, compositeRule.isExecuted());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
|
||||||
|
|
||||||
import io.github.benas.easyrules.core.CompositePriorityRule;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Simple composite rule class used for tests.
|
|
||||||
*
|
|
||||||
* @author Mahmoud Ben Hassine (md.benhassine@gmail.com)
|
|
||||||
*/
|
|
||||||
public class SimpleCompositePriorityRule extends CompositePriorityRule {
|
|
||||||
|
|
||||||
protected boolean executed;
|
|
||||||
|
|
||||||
public SimpleCompositePriorityRule(String name, String description) {
|
|
||||||
super(name, description);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void performActions() throws Exception {
|
|
||||||
super.performActions();
|
|
||||||
executed = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isExecuted() {
|
|
||||||
return executed;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
|
||||||
|
|
||||||
import io.github.benas.easyrules.core.BasicPriorityRule;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Simple priority rule class used for tests.
|
|
||||||
*
|
|
||||||
* @author Mahmoud Ben Hassine (md.benhassine@gmail.com)
|
|
||||||
*/
|
|
||||||
public class SimplePriorityRule extends BasicPriorityRule {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Has the rule been executed? .
|
|
||||||
*/
|
|
||||||
protected boolean executed;
|
|
||||||
|
|
||||||
public SimplePriorityRule(String name, String description, int priority) {
|
|
||||||
super(name, description, priority);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean evaluateConditions() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void performActions() throws Exception {
|
|
||||||
executed = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isExecuted() {
|
|
||||||
return executed;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Simple priority rule class used for tests.
|
|
||||||
*
|
|
||||||
* @author Mahmoud Ben Hassine (md.benhassine@gmail.com)
|
|
||||||
*/
|
|
||||||
public class SimplePriorityRuleThatEvaluateToFalse extends SimplePriorityRule {
|
|
||||||
|
|
||||||
public SimplePriorityRuleThatEvaluateToFalse(String name, String description, int priority) {
|
|
||||||
super(name, description, priority);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean evaluateConditions() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Simple priority rule class used for tests.
|
|
||||||
*
|
|
||||||
* @author Mahmoud Ben Hassine (md.benhassine@gmail.com)
|
|
||||||
*/
|
|
||||||
public class SimplePriorityRuleThatThrowsException extends SimplePriorityRule {
|
|
||||||
|
|
||||||
public SimplePriorityRuleThatThrowsException(String name, String description, int priority) {
|
|
||||||
super(name, description, priority);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void performActions() throws Exception {
|
|
||||||
throw new Exception("An exception occurred in SimplePriorityRuleThatThrowsException.performActions");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,4 +1,4 @@
|
|||||||
package io.github.benas.easyrules.core.test;
|
package io.github.benas.easyrules.core.test.composite;
|
||||||
|
|
||||||
import io.github.benas.easyrules.core.CompositeRule;
|
import io.github.benas.easyrules.core.CompositeRule;
|
||||||
|
|
Loading…
Reference in New Issue