use of org.jeasy.rules.api.RulesEngine in project easy-rules by j-easy.
the class AnnotationInheritanceTest method annotationsShouldBeInherited.
@Test
public void annotationsShouldBeInherited() throws Exception {
// Given
MyChildRule myChildRule = new MyChildRule();
rules.register(myChildRule);
// When
RulesEngine rulesEngine = new DefaultRulesEngine();
rulesEngine.fire(rules, facts);
// Then
assertThat(myChildRule.isExecuted()).isTrue();
}
use of org.jeasy.rules.api.RulesEngine in project easy-rules by j-easy.
the class FactInjectionTest method whenFactTypeDoesNotMatchParameterType_thenShouldThrowRuntimeException.
@Test(expected = RuntimeException.class)
public void whenFactTypeDoesNotMatchParameterType_thenShouldThrowRuntimeException() throws Exception {
// Given
Facts facts = new Facts();
facts.put("age", "foo");
Rules rules = new Rules(new AgeRule());
RulesEngine rulesEngine = new DefaultRulesEngine();
// When
rulesEngine.fire(rules, facts);
// Then
// expected exception
}
use of org.jeasy.rules.api.RulesEngine in project easy-rules by j-easy.
the class FactInjectionTest method whenADeclaredFactIsMissingInEvaluateMethod_thenTheRuleShouldNotBeExecuted.
@Test
public void whenADeclaredFactIsMissingInEvaluateMethod_thenTheRuleShouldNotBeExecuted() throws Exception {
// Given
Facts facts = new Facts();
AgeRule ageRule = new AgeRule();
Rules rules = new Rules(ageRule);
RulesEngine rulesEngine = new DefaultRulesEngine();
// When
rulesEngine.fire(rules, facts);
// Then
assertThat(ageRule.isExecuted()).isFalse();
}
use of org.jeasy.rules.api.RulesEngine in project easy-rules by j-easy.
the class FactInjectionTest method rulesShouldBeExecutedWhenFactsAreCorrectlyInjected.
@Test
public void rulesShouldBeExecutedWhenFactsAreCorrectlyInjected() throws Exception {
// Given
Facts facts = new Facts();
facts.put("rain", true);
facts.put("age", 18);
WeatherRule weatherRule = new WeatherRule();
AgeRule ageRule = new AgeRule();
Rules rules = new Rules(weatherRule, ageRule);
// When
RulesEngine rulesEngine = new DefaultRulesEngine();
rulesEngine.fire(rules, facts);
// Then
assertThat(ageRule.isExecuted()).isTrue();
assertThat(weatherRule.isExecuted()).isTrue();
}
use of org.jeasy.rules.api.RulesEngine in project easy-rules by j-easy.
the class Launcher method main.
public static void main(String[] args) {
// define facts
Facts facts = new Facts();
facts.put("rain", true);
// define rules
WeatherRule weatherRule = new WeatherRule();
Rules rules = new Rules();
rules.register(weatherRule);
// fire rules on known facts
RulesEngine rulesEngine = new DefaultRulesEngine();
rulesEngine.fire(rules, facts);
}
Aggregations