use of org.drools.core.common.DefaultFactHandle in project drools by kiegroup.
the class CommandSerializationTest method batchExecutionImplSerializationTest.
@Test
@Ignore
public void batchExecutionImplSerializationTest() throws Exception {
DefaultFactHandle factHandle = new DefaultFactHandle(13, "entry-point-id", 42, 84, 400l, "fact");
BatchExecutionCommandImpl batchCmd = new BatchExecutionCommandImpl();
batchCmd.setLookup("lookup");
{
AbortWorkItemCommand cmd = new AbortWorkItemCommand(23l);
batchCmd.addCommand(cmd);
}
{
String externalForm = factHandle.toExternalForm();
assertEquals("FactHandle string", externalForm, DisconnectedFactHandle.newFrom(factHandle).toExternalForm());
DeleteCommand cmd = new DeleteCommand(factHandle);
batchCmd.addCommand(cmd);
}
{
GetGlobalCommand cmd = new GetGlobalCommand("global-id");
cmd.setOutIdentifier("out-id");
batchCmd.addCommand(cmd);
}
{
SetGlobalCommand cmd = new SetGlobalCommand("global-id", new Integer(23));
cmd.setOutIdentifier("out-id");
batchCmd.addCommand(cmd);
}
{
InsertElementsCommand cmd = new InsertElementsCommand();
cmd.setEntryPoint("entry-point");
cmd.setOutIdentifier("out-id");
cmd.setReturnObject(true);
Map<String, Object> mapObj = new HashMap<String, Object>();
mapObj.put("key", "value");
List<Object> objects = new ArrayList<Object>(1);
objects.add(mapObj);
cmd.setObjects(objects);
batchCmd.addCommand(cmd);
}
{
QueryCommand cmd = new QueryCommand();
List<Object> args = new ArrayList<Object>(3);
args.add("this");
args.add(42);
args.add("other");
cmd.setArguments(args);
cmd.setName("query-name");
cmd.setOutIdentifier("out-id");
batchCmd.addCommand(cmd);
}
{
InsertObjectCommand cmd = new InsertObjectCommand();
cmd.setEntryPoint("entry-point");
cmd.setOutIdentifier("out-id");
cmd.setReturnObject(true);
cmd.setObject("object");
batchCmd.addCommand(cmd);
}
{
ModifyCommand cmd = new ModifyCommand();
cmd.setFactHandle(DisconnectedFactHandle.newFrom(factHandle));
List<Setter> setters = new ArrayList<Setter>(2);
Setter setter = new Setter() {
@Override
public String getValue() {
return "blue";
}
@Override
public String getAccessor() {
return "heart";
}
};
setters.add(setter);
setter = new Setter() {
@Override
public String getValue() {
return "hot";
}
@Override
public String getAccessor() {
return "fingers";
}
};
setters.add(setter);
cmd.setSetters(setters);
batchCmd.addCommand(cmd);
}
{
GetObjectCommand cmd = new GetObjectCommand(factHandle, "out-id");
batchCmd.addCommand(cmd);
}
// TODO: implement serialization for agenda filters
{
AgendaFilter[] filters = new AgendaFilter[4];
filters[0] = new RuleNameEndsWithAgendaFilter("suffix", false);
filters[1] = new RuleNameEqualsAgendaFilter("name", true);
filters[2] = new RuleNameMatchesAgendaFilter("regexp", false);
filters[3] = new RuleNameStartsWithAgendaFilter("prefix", false);
for (AgendaFilter filter : filters) {
FireAllRulesCommand cmd = new FireAllRulesCommand(randomString(), random.nextInt(1000), filter);
batchCmd.addCommand(cmd);
}
}
{
AgendaFilter[] filters = new AgendaFilter[4];
filters[0] = new RuleNameEndsWithAgendaFilter("suffix", false);
filters[1] = new RuleNameEqualsAgendaFilter("name", true);
filters[2] = new RuleNameMatchesAgendaFilter("regexp", false);
filters[3] = new RuleNameStartsWithAgendaFilter("prefix", false);
for (AgendaFilter filter : filters) {
FireUntilHaltCommand cmd = new FireUntilHaltCommand(filter);
batchCmd.addCommand(cmd);
}
}
{
Map<String, Object> results = new HashMap<String, Object>(1);
List<String> resultValList = new ArrayList<String>(2);
resultValList.add("yellow");
resultValList.add("chances");
results.put("list", resultValList);
CompleteWorkItemCommand cmd = new CompleteWorkItemCommand(random.nextInt(1000), results);
batchCmd.addCommand(cmd);
}
{
ClassObjectFilter filter = new ClassObjectFilter(String.class);
GetObjectsCommand cmd = new GetObjectsCommand(filter, "out-id");
batchCmd.addCommand(cmd);
}
{
AgendaGroupSetFocusCommand cmd = new AgendaGroupSetFocusCommand(randomString());
batchCmd.addCommand(cmd);
}
{
ClearActivationGroupCommand cmd = new ClearActivationGroupCommand(randomString());
batchCmd.addCommand(cmd);
}
{
ClearAgendaCommand cmd = new ClearAgendaCommand();
batchCmd.addCommand(cmd);
}
{
ClearAgendaGroupCommand cmd = new ClearAgendaGroupCommand(randomString());
batchCmd.addCommand(cmd);
}
{
ClearRuleFlowGroupCommand cmd = new ClearRuleFlowGroupCommand(randomString());
batchCmd.addCommand(cmd);
}
BatchExecutionCommandImpl batchCmdCopy = roundTrip(batchCmd);
assertEquals("Batch cmd lookup", batchCmd.getLookup(), batchCmdCopy.getLookup());
assertEquals("Batch cmd num commands", batchCmd.getCommands().size(), batchCmdCopy.getCommands().size());
// This code should use the utility in kie-test-util when it finally gets moved there..
for (Command copyCmd : batchCmdCopy.getCommands()) {
for (Command origCmd : batchCmd.getCommands()) {
Class cmdClass = origCmd.getClass();
if (copyCmd.getClass().equals(cmdClass)) {
if (cmdClass.equals(DeleteCommand.class)) {
compareFactHandles(((DeleteCommand) origCmd).getFactHandle(), ((DeleteCommand) copyCmd).getFactHandle(), DeleteCommand.class);
} else if (cmdClass.equals(FireAllRulesCommand.class)) {
AgendaFilter origFilter = ((FireAllRulesCommand) origCmd).getAgendaFilter();
AgendaFilter copyFilter = ((FireAllRulesCommand) copyCmd).getAgendaFilter();
if (!origFilter.getClass().equals(copyFilter.getClass())) {
continue;
}
Class agendaFilterClass = origFilter.getClass();
for (Field agendaFilterField : agendaFilterClass.getDeclaredFields()) {
agendaFilterField.setAccessible(true);
Object afFieldOrigVal = agendaFilterField.get(origFilter);
Object afFieldCopyVal = agendaFilterField.get(copyFilter);
if (afFieldOrigVal instanceof Pattern) {
afFieldOrigVal = ((Pattern) afFieldOrigVal).pattern();
afFieldCopyVal = ((Pattern) afFieldCopyVal).pattern();
}
assertEquals(agendaFilterClass.getSimpleName() + "." + agendaFilterField.getName(), afFieldOrigVal, afFieldCopyVal);
}
assertEquals(FireAllRulesCommand.class.getSimpleName() + ".max", ((FireAllRulesCommand) origCmd).getMax(), ((FireAllRulesCommand) copyCmd).getMax());
assertEquals(FireAllRulesCommand.class.getSimpleName() + ".outIdentifier", ((FireAllRulesCommand) origCmd).getOutIdentifier(), ((FireAllRulesCommand) copyCmd).getOutIdentifier());
} else if (cmdClass.equals(FireUntilHaltCommand.class)) {
AgendaFilter origFilter = ((FireUntilHaltCommand) origCmd).getAgendaFilter();
AgendaFilter copyFilter = ((FireUntilHaltCommand) copyCmd).getAgendaFilter();
if (!origFilter.getClass().equals(copyFilter.getClass())) {
continue;
}
Class agendaFilterClass = origFilter.getClass();
for (Field agendaFilterField : agendaFilterClass.getDeclaredFields()) {
agendaFilterField.setAccessible(true);
Object afFieldOrigVal = agendaFilterField.get(origFilter);
Object afFieldCopyVal = agendaFilterField.get(copyFilter);
if (afFieldOrigVal instanceof Pattern) {
afFieldOrigVal = ((Pattern) afFieldOrigVal).pattern();
afFieldCopyVal = ((Pattern) afFieldCopyVal).pattern();
}
assertEquals(agendaFilterClass.getSimpleName() + "." + agendaFilterField.getName(), afFieldOrigVal, afFieldCopyVal);
}
} else {
for (Field cmdField : cmdClass.getDeclaredFields()) {
cmdField.setAccessible(true);
if (Modifier.isTransient(cmdField.getModifiers())) {
continue;
}
Object origVal = cmdField.get(origCmd);
assertNotNull(cmdClass.getSimpleName() + "." + cmdField.getName(), origVal);
Object copyVal = cmdField.get(copyCmd);
assertNotNull("Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), copyVal);
if (origVal instanceof FactHandle) {
compareFactHandles((FactHandle) origVal, (FactHandle) copyVal, cmdClass);
} else if (origVal instanceof ClassObjectSerializationFilter) {
assertEquals("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), ((ClassObjectSerializationFilter) origVal).getClass(), ((ClassObjectSerializationFilter) copyVal).getClass());
} else if (origVal instanceof List) {
List origList = (List) origVal;
if (((List) copyVal).isEmpty()) {
assertTrue("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), origList.isEmpty());
} else {
if (origList.get(0) instanceof Setter) {
for (Object obj : (List) origVal) {
assertTrue("Expected a " + Setter.class.getSimpleName() + " instance (not " + obj.getClass().getSimpleName() + " in " + cmdClass.getSimpleName() + "." + cmdField.getName(), obj instanceof Setter);
Iterator<Object> iter = ((List) copyVal).iterator();
while (iter.hasNext()) {
Setter copySetter = (Setter) iter.next();
if (((Setter) obj).getAccessor().equals(copySetter.getAccessor())) {
assertEquals("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), ((Setter) obj).getValue(), copySetter.getValue());
iter.remove();
}
}
}
assertTrue("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), ((List) copyVal).isEmpty());
} else if (origList.get(0) instanceof Map) {
Map copyMap = (Map) ((List) copyVal).get(0);
for (Object entry : ((Map) origList.get(0)).entrySet()) {
assertTrue("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), (copyMap).containsKey(((Entry) entry).getKey()));
}
}
}
} else {
assertTrue("Original compared to Round-tripped " + cmdClass.getSimpleName() + "." + cmdField.getName(), origVal.equals(copyVal));
}
}
}
}
}
}
// verify that BatchExecutionCommandImpl.commands has been filled with all
// of the different types
Field commandsField = BatchExecutionCommandImpl.class.getDeclaredField("commands");
XmlElements xmlElemsAnno = commandsField.getAnnotation(XmlElements.class);
List<Class> cmdTypes = new ArrayList<Class>(xmlElemsAnno.value().length);
for (XmlElement xmlElem : xmlElemsAnno.value()) {
cmdTypes.add(xmlElem.type());
}
// already thoroughly tested..
cmdTypes.remove(SignalEventCommand.class);
// already thoroughly tested..
cmdTypes.remove(StartProcessCommand.class);
for (Command cmd : batchCmd.getCommands()) {
cmdTypes.remove(cmd.getClass());
}
String cmdInstName = cmdTypes.isEmpty() ? "null" : cmdTypes.get(0).getSimpleName();
assertTrue("Please add a " + cmdInstName + " instance to the " + BatchExecutionCommandImpl.class.getSimpleName() + " commands!", cmdTypes.isEmpty());
// other tests for this as part of the REST integration tests..
}
use of org.drools.core.common.DefaultFactHandle in project drools by kiegroup.
the class MarshallerTest method testOrderFacts.
@Test
public void testOrderFacts() throws Exception {
List<InternalFactHandle> list = new ArrayList<InternalFactHandle>();
List<Integer> ids = Arrays.asList(0, 1, 2, 3, 4, 5, 6, 30, 31, 32, -2147483640, 7, 8, 9, 10, 11, 12, 13, 14, 15, 28, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27);
for (Integer i : ids) {
list.add(new DefaultFactHandle(i.intValue(), i));
}
InternalFactHandle first = ProtobufOutputMarshaller.orderFacts(list)[0];
assertEquals(-2147483640, first.getId());
}
use of org.drools.core.common.DefaultFactHandle in project drools by kiegroup.
the class AlphaNodeTest method testReturnValueConstraintAssertObject.
/*
* This just test AlphaNode With a different Constraint type.
*/
@Test
public void testReturnValueConstraintAssertObject() throws Exception {
InternalKnowledgeBase kBase = (InternalKnowledgeBase) KnowledgeBaseFactory.newKnowledgeBase();
BuildContext buildContext = new BuildContext(kBase);
buildContext.setRule(new RuleImpl("test"));
StatefulKnowledgeSessionImpl ksession = (StatefulKnowledgeSessionImpl) kBase.newKieSession();
final RuleImpl rule = new RuleImpl("test-rule");
PropagationContextFactory pctxFactory = kBase.getConfiguration().getComponentFactory().getPropagationContextFactory();
final PropagationContext context = pctxFactory.createPropagationContext(0, PropagationContext.Type.INSERTION, null, null, null);
final MockObjectSource source = new MockObjectSource(buildContext.getNextId());
final InternalReadAccessor extractor = store.getReader(Cheese.class, "type");
final FieldValue field = FieldFactory.getInstance().getFieldValue("cheddar");
final MvelConstraint constraint = new MvelConstraintTestUtil("type == \"cheddar\"", field, extractor);
final AlphaNode alphaNode = new AlphaNode(buildContext.getNextId(), constraint, source, buildContext);
final MockObjectSink sink = new MockObjectSink();
alphaNode.addObjectSink(sink);
final Cheese cheddar = new Cheese("cheddar", 5);
final DefaultFactHandle f0 = (DefaultFactHandle) ksession.insert(cheddar);
assertLength(0, sink.getAsserted());
// object should assert as it passes text
alphaNode.assertObject(f0, context, ksession);
assertLength(1, sink.getAsserted());
final Object[] list = (Object[]) sink.getAsserted().get(0);
assertSame(cheddar, ksession.getObject((DefaultFactHandle) list[0]));
final Cheese stilton = new Cheese("stilton", 6);
f0.setObject(stilton);
sink.getAsserted().clear();
// object should not assert as it does not pass text
alphaNode.assertObject(f0, context, ksession);
assertLength(0, sink.getAsserted());
}
use of org.drools.core.common.DefaultFactHandle in project drools by kiegroup.
the class AlphaNodeTest method testUpdateSinkWithoutMemory.
@Test
public void testUpdateSinkWithoutMemory() {
// An AlphaNode should try and repropagate from its source
InternalKnowledgeBase kBase = (InternalKnowledgeBase) KnowledgeBaseFactory.newKnowledgeBase();
BuildContext buildContext = new BuildContext(kBase);
buildContext.setRule(new RuleImpl("test"));
StatefulKnowledgeSessionImpl ksession = (StatefulKnowledgeSessionImpl) kBase.newKieSession();
final RuleImpl rule = new RuleImpl("test-rule");
PropagationContextFactory pctxFactory = kBase.getConfiguration().getComponentFactory().getPropagationContextFactory();
final PropagationContext context = pctxFactory.createPropagationContext(0, PropagationContext.Type.INSERTION, null, null, null);
final MockObjectSource source = new MockObjectSource(buildContext.getNextId());
final InternalReadAccessor extractor = store.getReader(Cheese.class, "type");
final FieldValue field = FieldFactory.getInstance().getFieldValue("cheddar");
final MvelConstraint constraint = new MvelConstraintTestUtil("type == \"cheddar\"", field, extractor);
final AlphaNode alphaNode = new AlphaNode(buildContext.getNextId(), constraint, source, // no memory
buildContext);
alphaNode.attach(buildContext);
final MockObjectSink sink1 = new MockObjectSink();
alphaNode.addObjectSink(sink1);
// Assert a single fact which should be in the AlphaNode memory and also
// propagated to the
// the tuple sink
final Cheese cheese = new Cheese("cheddar", 0);
final DefaultFactHandle handle1 = new DefaultFactHandle(1, cheese);
// adding handle to the mock source
source.addFact(handle1);
alphaNode.assertObject(handle1, context, ksession);
// Create a fact that should not be propagated, since the alpha node restriction will filter it out
final Cheese stilton = new Cheese("stilton", 10);
final DefaultFactHandle handle2 = new DefaultFactHandle(2, stilton);
// adding handle to the mock source
source.addFact(handle2);
alphaNode.assertObject(handle2, context, ksession);
assertLength(1, sink1.getAsserted());
// Attach a new tuple sink
final MockObjectSink sink2 = new MockObjectSink();
// Tell the alphanode to update the new node. Make sure the first sink1
// is not updated
// likewise the source should not do anything
alphaNode.updateSink(sink2, context, ksession);
assertLength(1, sink1.getAsserted());
assertLength(1, sink2.getAsserted());
assertEquals(1, source.getUdated());
}
use of org.drools.core.common.DefaultFactHandle in project drools by kiegroup.
the class FactHandleTest method testFactHandleImpllonglong.
/*
* Class under test for void FactHandleImpl(long, long)
*/
@Test
public void testFactHandleImpllonglong() {
final DefaultFactHandle f0 = new DefaultFactHandle(134, "cheese", 678, new DisconnectedWorkingMemoryEntryPoint("DEFAULT"));
assertEquals(134, f0.getId());
assertEquals(678, f0.getRecency());
}
Aggregations