Search in sources :

Example 1 with DefaultInterceptorChain

use of uk.gov.justice.services.core.interceptor.DefaultInterceptorChain in project microservice_framework by CJSCommonPlatform.

the class EventBufferInterceptorTest method ensureStreamCLosedIfExceptionOccurs.

@Test
public void ensureStreamCLosedIfExceptionOccurs() throws Exception {
    final Deque<Interceptor> interceptors = new LinkedList<>();
    interceptors.add(eventBufferInterceptor);
    interceptors.add(new ExceptionThrowingInterceptor());
    target = new TestTarget();
    interceptorChain = new DefaultInterceptorChain(interceptors, target);
    final InterceptorContext inputContext = interceptorContextWithInput(envelope_1);
    final StreamCloseSpy streamSpy = new StreamCloseSpy();
    final Stream<JsonEnvelope> envelopes = Stream.of(this.envelope_1, envelope_2).onClose(streamSpy);
    when(eventBufferService.currentOrderedEventsWith(this.envelope_1)).thenReturn(envelopes);
    try {
        interceptorChain.processNext(inputContext);
    } catch (TestException expected) {
    // do nothing
    }
    assertThat(streamSpy.streamClosed(), is(true));
}
Also used : StreamCloseSpy(uk.gov.justice.services.test.utils.common.stream.StreamCloseSpy) InterceptorContext(uk.gov.justice.services.core.interceptor.InterceptorContext) JsonEnvelope(uk.gov.justice.services.messaging.JsonEnvelope) Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) LinkedList(java.util.LinkedList) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) Test(org.junit.Test)

Example 2 with DefaultInterceptorChain

use of uk.gov.justice.services.core.interceptor.DefaultInterceptorChain in project microservice_framework by CJSCommonPlatform.

the class InputStreamFileInterceptorTest method setup.

@Before
public void setup() throws Exception {
    final Deque<Interceptor> interceptors = new LinkedList<>();
    interceptors.add(inputStreamFileInterceptor);
    interceptorChain = new DefaultInterceptorChain(interceptors, this::processResult);
}
Also used : Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) LinkedList(java.util.LinkedList) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) Before(org.junit.Before)

Example 3 with DefaultInterceptorChain

use of uk.gov.justice.services.core.interceptor.DefaultInterceptorChain in project microservice_framework by CJSCommonPlatform.

the class LocalAccessControlInterceptorTest method setup.

@Before
public void setup() throws Exception {
    final Deque<Interceptor> interceptors = new LinkedList<>();
    interceptors.add(localAccessControlInterceptor);
    final Target target = context -> context;
    interceptorChain = new DefaultInterceptorChain(interceptors, target);
}
Also used : InjectMocks(org.mockito.InjectMocks) Mock(org.mockito.Mock) RunWith(org.junit.runner.RunWith) Test(org.junit.Test) Mockito.when(org.mockito.Mockito.when) Deque(java.util.Deque) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) InterceptorContext.interceptorContextWithInput(uk.gov.justice.services.core.interceptor.InterceptorContext.interceptorContextWithInput) Mockito.verify(org.mockito.Mockito.verify) Inject(javax.inject.Inject) Rule(org.junit.Rule) MockitoJUnitRunner(org.mockito.runners.MockitoJUnitRunner) InterceptorChain(uk.gov.justice.services.core.interceptor.InterceptorChain) InterceptorContext(uk.gov.justice.services.core.interceptor.InterceptorContext) InterceptorChainProcessor(uk.gov.justice.services.core.interceptor.InterceptorChainProcessor) Target(uk.gov.justice.services.core.interceptor.Target) Optional(java.util.Optional) Adapter(uk.gov.justice.services.core.annotation.Adapter) LinkedList(java.util.LinkedList) COMMAND_API(uk.gov.justice.services.core.annotation.Component.COMMAND_API) ExpectedException(org.junit.rules.ExpectedException) Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) JsonEnvelope(uk.gov.justice.services.messaging.JsonEnvelope) Before(org.junit.Before) Target(uk.gov.justice.services.core.interceptor.Target) Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) LinkedList(java.util.LinkedList) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) Before(org.junit.Before)

Example 4 with DefaultInterceptorChain

use of uk.gov.justice.services.core.interceptor.DefaultInterceptorChain in project microservice_framework by CJSCommonPlatform.

the class LocalAuditInterceptorTest method setup.

@Before
public void setup() throws Exception {
    final Deque<Interceptor> interceptors = new LinkedList<>();
    interceptors.add(localAuditInterceptor);
    final Target target = context -> context.copyWithOutput(outputEnvelope);
    interceptorChain = new DefaultInterceptorChain(interceptors, target);
}
Also used : InjectMocks(org.mockito.InjectMocks) Mock(org.mockito.Mock) RunWith(org.junit.runner.RunWith) Test(org.junit.Test) Deque(java.util.Deque) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) InterceptorContext.interceptorContextWithInput(uk.gov.justice.services.core.interceptor.InterceptorContext.interceptorContextWithInput) Mockito.verify(org.mockito.Mockito.verify) Inject(javax.inject.Inject) MockitoJUnitRunner(org.mockito.runners.MockitoJUnitRunner) InterceptorChain(uk.gov.justice.services.core.interceptor.InterceptorChain) InterceptorContext(uk.gov.justice.services.core.interceptor.InterceptorContext) InterceptorChainProcessor(uk.gov.justice.services.core.interceptor.InterceptorChainProcessor) Target(uk.gov.justice.services.core.interceptor.Target) Adapter(uk.gov.justice.services.core.annotation.Adapter) LinkedList(java.util.LinkedList) COMMAND_API(uk.gov.justice.services.core.annotation.Component.COMMAND_API) Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) JsonEnvelope(uk.gov.justice.services.messaging.JsonEnvelope) Before(org.junit.Before) Target(uk.gov.justice.services.core.interceptor.Target) Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) LinkedList(java.util.LinkedList) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) Before(org.junit.Before)

Example 5 with DefaultInterceptorChain

use of uk.gov.justice.services.core.interceptor.DefaultInterceptorChain in project microservice_framework by CJSCommonPlatform.

the class EventBufferInterceptorTest method setup.

@Before
public void setup() throws Exception {
    final Deque<Interceptor> interceptors = new LinkedList<>();
    interceptors.add(eventBufferInterceptor);
    target = new TestTarget();
    interceptorChain = new DefaultInterceptorChain(interceptors, target);
}
Also used : Interceptor(uk.gov.justice.services.core.interceptor.Interceptor) LinkedList(java.util.LinkedList) DefaultInterceptorChain(uk.gov.justice.services.core.interceptor.DefaultInterceptorChain) Before(org.junit.Before)

Aggregations

LinkedList (java.util.LinkedList)5 DefaultInterceptorChain (uk.gov.justice.services.core.interceptor.DefaultInterceptorChain)5 Interceptor (uk.gov.justice.services.core.interceptor.Interceptor)5 Before (org.junit.Before)4 Test (org.junit.Test)3 InterceptorContext (uk.gov.justice.services.core.interceptor.InterceptorContext)3 JsonEnvelope (uk.gov.justice.services.messaging.JsonEnvelope)3 Deque (java.util.Deque)2 Inject (javax.inject.Inject)2 RunWith (org.junit.runner.RunWith)2 InjectMocks (org.mockito.InjectMocks)2 Mock (org.mockito.Mock)2 Mockito.verify (org.mockito.Mockito.verify)2 MockitoJUnitRunner (org.mockito.runners.MockitoJUnitRunner)2 Adapter (uk.gov.justice.services.core.annotation.Adapter)2 COMMAND_API (uk.gov.justice.services.core.annotation.Component.COMMAND_API)2 InterceptorChain (uk.gov.justice.services.core.interceptor.InterceptorChain)2 InterceptorChainProcessor (uk.gov.justice.services.core.interceptor.InterceptorChainProcessor)2 InterceptorContext.interceptorContextWithInput (uk.gov.justice.services.core.interceptor.InterceptorContext.interceptorContextWithInput)2 Target (uk.gov.justice.services.core.interceptor.Target)2