-
Bug
-
Resolution: Done
-
Major
-
7.39.0.Final
-
None
-
2020 Week 28-30 (from Jul 6), 2020 Week 31-33 (from Jul 27), 2020 Week 34-36 (from Aug 17), 2020 Week 37-39 (from Sep 7)
-
5
-
NEW
-
NEW
With the below test, standard-drl fires but executable-model doesn't.
@Test
public void testAfterOnLongFields2() throws Exception {
String str =
"import " + StockTick.class.getCanonicalName() + ";\n" +
"declare StockTick @timestamp(timeFieldAsLong) end\n" +
"rule R when\n" +
" $a : StockTick( company == \"DROO\" )\n" +
" $b : StockTick( company == \"ACME\", $a.timeFieldAsLong after[5,8] timeFieldAsLong )\n" +
"then\n" +
" System.out.println(\"fired\");\n" +
"end\n";
KieSession ksession = getKieSession(getCepKieModuleModel(), str);
SessionPseudoClock clock = ksession.getSessionClock();
ReteDumper.dumpRete(ksession);
ksession.insert( new StockTick( "ACME" ).setTimeField( 0 ) );
ksession.insert( new StockTick( "DROO" ).setTimeField( 6 ) );
assertEquals( 1, ksession.fireAllRules() );
}