Search in sources :

Example 31 with InternalEvent

use of org.mule.runtime.core.internal.message.InternalEvent in project mule by mulesoft.

the class DefaultRouterResultsHandlerTestCase method aggregateSingleEvent.

@Test
public void aggregateSingleEvent() {
    Message message1 = Message.of("test event A");
    InternalEvent event1 = InternalEvent.builder(context).message(message1).addVariable("key1", "value1").build();
    event1.getSession().setProperty("key", "value");
    Message message2 = Message.of("test event B");
    InternalEvent event2 = InternalEvent.builder(context).message(message2).addVariable("key2", "value2").build();
    event2.getSession().setProperty("key", "valueNEW");
    event2.getSession().setProperty("key1", "value1");
    CoreEvent result = resultsHandler.aggregateResults(singletonList(event2), event1);
    assertSame(event2, result);
    // Because same event instance is returned rather than MessageCollection
    // don't copy invocation properties
    assertThat(result.getVariables().keySet(), not(hasItem("key1")));
    assertThat(result.getVariables().get("key2").getValue(), equalTo("value2"));
    PrivilegedEvent privilegedResult = (PrivilegedEvent) result;
    assertThat(privilegedResult.getSession().getProperty("key"), equalTo("valueNEW"));
    assertThat(privilegedResult.getSession().getProperty("key1"), equalTo("value1"));
}
Also used : PrivilegedEvent(org.mule.runtime.core.privileged.event.PrivilegedEvent) Message(org.mule.runtime.api.message.Message) InternalMessage(org.mule.runtime.core.internal.message.InternalMessage) CoreEvent(org.mule.runtime.core.api.event.CoreEvent) InternalEvent(org.mule.runtime.core.internal.message.InternalEvent) Test(org.junit.Test)

Example 32 with InternalEvent

use of org.mule.runtime.core.internal.message.InternalEvent in project mule by mulesoft.

the class DefaultRouterResultsHandlerTestCase method aggregateMultipleEvents.

@Test
public void aggregateMultipleEvents() throws Exception {
    DataType simpleDateType1 = DataType.builder().type(String.class).mediaType("text/plain").build();
    Message message1 = Message.of("test event A");
    Message message2 = Message.of("test event B");
    Message message3 = Message.of("test event C");
    PrivilegedEvent event1 = InternalEvent.builder(context).message(message1).addVariable("key1", "value1", simpleDateType1).build();
    MuleSession session = event1.getSession();
    PrivilegedEvent event2 = InternalEvent.builder(context).message(message2).session(session).addVariable("key2", "value2", simpleDateType1).build();
    InternalEvent event3 = InternalEvent.builder(context).message(message3).session(session).addVariable("key3", "value3", simpleDateType1).build();
    event1.getSession().setProperty("key", "value");
    event2.getSession().setProperty("key1", "value1");
    event2.getSession().setProperty("key2", "value2");
    event3.getSession().setProperty("KEY2", "value2NEW");
    event3.getSession().setProperty("key3", "value3");
    List<CoreEvent> events = new ArrayList<>();
    events.add(event2);
    events.add(event3);
    PrivilegedEvent result = (PrivilegedEvent) resultsHandler.aggregateResults(events, event1);
    assertThat(result, notNullValue());
    assertThat((List<InternalMessage>) result.getMessage().getPayload().getValue(), hasSize(2));
    assertThat(result.getMessage().getPayload().getValue(), instanceOf(List.class));
    assertThat(((List<InternalMessage>) result.getMessage().getPayload().getValue()).get(0), is(message2));
    assertThat(((List<InternalMessage>) result.getMessage().getPayload().getValue()).get(1), is(message3));
    // Because a new MuleMessageCollection is created, propagate properties from
    // original event
    assertThat(result.getVariables().get("key1").getValue(), equalTo("value1"));
    assertThat(result.getVariables().get("key1").getDataType(), equalTo(simpleDateType1));
    assertThat(result.getVariables().get("key2").getValue(), equalTo("value2"));
    assertThat(result.getVariables().get("key3").getValue(), equalTo("value3"));
    // Root id
    assertThat(result.getCorrelationId(), equalTo(event1.getCorrelationId()));
    assertThat(result.getSession().getProperty("key"), is("value"));
    assertThat(result.getSession().getProperty("key1"), is("value1"));
    assertThat(result.getSession().getProperty("key2"), is("value2NEW"));
    assertThat(result.getSession().getProperty("key3"), is("value3"));
    assertThat(result.getSession().getProperty("key4"), nullValue());
}
Also used : PrivilegedEvent(org.mule.runtime.core.privileged.event.PrivilegedEvent) InternalMessage(org.mule.runtime.core.internal.message.InternalMessage) Message(org.mule.runtime.api.message.Message) InternalMessage(org.mule.runtime.core.internal.message.InternalMessage) CoreEvent(org.mule.runtime.core.api.event.CoreEvent) ArrayList(java.util.ArrayList) DataType(org.mule.runtime.api.metadata.DataType) Collections.singletonList(java.util.Collections.singletonList) ArrayList(java.util.ArrayList) List(java.util.List) MuleSession(org.mule.runtime.core.privileged.event.MuleSession) InternalEvent(org.mule.runtime.core.internal.message.InternalEvent) Test(org.junit.Test)

Aggregations

InternalEvent (org.mule.runtime.core.internal.message.InternalEvent)32 Test (org.junit.Test)30 CoreEvent (org.mule.runtime.core.api.event.CoreEvent)24 ProcessorInterceptor (org.mule.runtime.api.interception.ProcessorInterceptor)23 InOrder (org.mockito.InOrder)22 ComponentLocation (org.mule.runtime.api.component.location.ComponentLocation)22 SmallTest (org.mule.tck.size.SmallTest)22 DefaultComponentLocation (org.mule.runtime.dsl.api.component.config.DefaultComponentLocation)21 InterceptionEvent (org.mule.runtime.api.interception.InterceptionEvent)20 ProcessorParameterValue (org.mule.runtime.api.interception.ProcessorParameterValue)16 CompletableFuture (java.util.concurrent.CompletableFuture)14 InterceptionAction (org.mule.runtime.api.interception.InterceptionAction)14 DefaultInterceptionEvent (org.mule.runtime.core.internal.interception.DefaultInterceptionEvent)7 ProcessorInterceptorFactory (org.mule.runtime.api.interception.ProcessorInterceptorFactory)5 Component (org.mule.runtime.api.component.Component)4 Message (org.mule.runtime.api.message.Message)4 MuleSession (org.mule.runtime.core.privileged.event.MuleSession)4 Collections.singletonList (java.util.Collections.singletonList)3 Map (java.util.Map)3 AbstractComponent (org.mule.runtime.api.component.AbstractComponent)3