Search in sources :

Example 1 with EventB

use of uk.gov.justice.services.core.aggregate.event.EventB in project microservice_framework by CJSCommonPlatform.

the class DefaultAggregateServiceTest method shouldCreateAggregateFromStreamOfThreeWithAFilteredOutSystemEvent.

@Test
public void shouldCreateAggregateFromStreamOfThreeWithAFilteredOutSystemEvent() {
    JsonObject eventPayloadA = mock(JsonObject.class);
    JsonObject eventPayloadB = mock(JsonObject.class);
    EventA eventA = mock(EventA.class);
    EventB eventB = mock(EventB.class);
    when(jsonObjectToObjectConverter.convert(eventPayloadA, EventA.class)).thenReturn(eventA);
    when(jsonObjectToObjectConverter.convert(eventPayloadB, EventB.class)).thenReturn(eventB);
    when(eventStream.read()).thenReturn(Stream.of(envelopeFrom(metadataWithRandomUUID("eventA"), eventPayloadA), envelopeFrom(metadataWithRandomUUID("eventB"), eventPayloadB), envelopeFrom(metadataWithRandomUUID("system.events.eventC"), eventPayloadB)));
    when(eventStream.getId()).thenReturn(STREAM_ID);
    aggregateService.register(new EventFoundEvent(EventA.class, "eventA"));
    aggregateService.register(new EventFoundEvent(EventB.class, "eventB"));
    TestAggregate aggregate = aggregateService.get(eventStream, TestAggregate.class);
    assertThat(aggregate, notNullValue());
    assertThat(aggregate.recordedEvents(), hasSize(2));
    assertThat(aggregate.recordedEvents().get(0), equalTo(eventA));
    assertThat(aggregate.recordedEvents().get(1), equalTo(eventB));
    verify(logger).info("Registering event {}, {} with DefaultAggregateService", "eventA", EventA.class);
    verify(logger).info("Registering event {}, {} with DefaultAggregateService", "eventB", EventB.class);
    verify(logger).trace("Recreating aggregate for instance {} of aggregate type {}", STREAM_ID, TestAggregate.class);
}
Also used : EventB(uk.gov.justice.services.core.aggregate.event.EventB) EventFoundEvent(uk.gov.justice.services.core.extension.EventFoundEvent) TestAggregate(uk.gov.justice.domain.aggregate.TestAggregate) JsonObject(javax.json.JsonObject) EventA(uk.gov.justice.services.core.aggregate.event.EventA) Test(org.junit.Test)

Example 2 with EventB

use of uk.gov.justice.services.core.aggregate.event.EventB in project microservice_framework by CJSCommonPlatform.

the class DefaultAggregateServiceTest method shouldCreateAggregateFromStreamOfTwo.

@Test
public void shouldCreateAggregateFromStreamOfTwo() {
    JsonObject eventPayloadA = mock(JsonObject.class);
    JsonObject eventPayloadB = mock(JsonObject.class);
    EventA eventA = mock(EventA.class);
    EventB eventB = mock(EventB.class);
    when(jsonObjectToObjectConverter.convert(eventPayloadA, EventA.class)).thenReturn(eventA);
    when(jsonObjectToObjectConverter.convert(eventPayloadB, EventB.class)).thenReturn(eventB);
    when(eventStream.read()).thenReturn(Stream.of(envelopeFrom(metadataWithRandomUUID("eventA"), eventPayloadA), envelopeFrom(metadataWithRandomUUID("eventB"), eventPayloadB)));
    when(eventStream.getId()).thenReturn(STREAM_ID);
    registerEvent(EventA.class, "eventA");
    registerEvent(EventB.class, "eventB");
    TestAggregate aggregate = aggregateService.get(eventStream, TestAggregate.class);
    assertThat(aggregate, notNullValue());
    assertThat(aggregate.recordedEvents(), hasSize(2));
    assertThat(aggregate.recordedEvents().get(0), equalTo(eventA));
    assertThat(aggregate.recordedEvents().get(1), equalTo(eventB));
    verify(logger).info("Registering event {}, {} with DefaultAggregateService", "eventA", EventA.class);
    verify(logger).info("Registering event {}, {} with DefaultAggregateService", "eventB", EventB.class);
    verify(logger).trace("Recreating aggregate for instance {} of aggregate type {}", STREAM_ID, TestAggregate.class);
}
Also used : EventB(uk.gov.justice.services.core.aggregate.event.EventB) TestAggregate(uk.gov.justice.domain.aggregate.TestAggregate) JsonObject(javax.json.JsonObject) EventA(uk.gov.justice.services.core.aggregate.event.EventA) Test(org.junit.Test)

Aggregations

JsonObject (javax.json.JsonObject)2 Test (org.junit.Test)2 TestAggregate (uk.gov.justice.domain.aggregate.TestAggregate)2 EventA (uk.gov.justice.services.core.aggregate.event.EventA)2 EventB (uk.gov.justice.services.core.aggregate.event.EventB)2 EventFoundEvent (uk.gov.justice.services.core.extension.EventFoundEvent)1