use of com.nextdoor.bender.testutils.DummyTransportHelper.BufferedTransporter in project bender by Nextdoor.
the class BaseHandlerTest method testTransportOnSendFailure.
@Test(expected = TransportException.class)
public void testTransportOnSendFailure() throws Throwable {
BaseHandler.CONFIG_FILE = "/config/handler_config.json";
List<DummyEvent> events = new ArrayList<DummyEvent>(2);
events.add(new DummyEvent("foo", 0));
events.add(new DummyEvent("bar", 0));
TestContext context = new TestContext();
context.setInvokedFunctionArn("arn:aws:lambda:us-east-1:123:function:test:tag");
handler.init(context);
IpcSenderService spyIpc = spy(handler.getIpcService());
TransportFactory tf = spy(handler.getIpcService().getTransportFactory());
BufferedTransporter mockTransport = mock(BufferedTransporter.class);
doThrow(new TransportException("expected")).when(mockTransport).sendBatch(any());
when(tf.newInstance()).thenReturn(mockTransport);
spyIpc.setTransportFactory(tf);
handler.setIpcService(spyIpc);
try {
handler.handler(events, context);
} catch (Exception e) {
throw e.getCause().getCause();
}
}
Aggregations