use of com.nextdoor.bender.aws.TestContext in project bender by Nextdoor.
the class BaseHandlerTest method testDeserializationException.
@Test
public void testDeserializationException() throws HandlerException {
BaseHandler.CONFIG_FILE = "/config/handler_config.json";
handler.skipWriteStats = true;
List<DummyEvent> events = new ArrayList<DummyEvent>(1);
events.add(new DummyEvent("foo", 0));
TestContext context = new TestContext();
context.setInvokedFunctionArn("arn:aws:lambda:us-east-1:123:function:test:tag");
handler.init(context);
DeserializerProcessor proc = handler.sources.get(0).getDeserProcessor();
Deserializer deserSpy = spy(proc.getDeserializer());
doThrow(new DeserializationException("expected")).when(deserSpy).deserialize(anyString());
proc.setDeserializer(deserSpy);
handler.handler(events, context);
assertEquals(1, proc.getErrorCountStat().getValue());
}
use of com.nextdoor.bender.aws.TestContext in project bender by Nextdoor.
the class BaseHandlerTest method testMissingConfig.
@Test(expected = HandlerException.class)
public void testMissingConfig() throws HandlerException {
BaseHandler.CONFIG_FILE = "/config/missing.json";
List<DummyEvent> events = new ArrayList<DummyEvent>(1);
TestContext context = new TestContext();
context.setInvokedFunctionArn("arn:aws:lambda:us-east-1:123:function:test:tag");
handler.handler(events, context);
}
use of com.nextdoor.bender.aws.TestContext 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();
}
}
use of com.nextdoor.bender.aws.TestContext in project bender by Nextdoor.
the class BaseHandlerTest method testInterruptedExceptionOnShutdown.
@Test(expected = InterruptedException.class)
public void testInterruptedExceptionOnShutdown() throws Throwable {
BaseHandler.CONFIG_FILE = "/config/handler_config.json";
List<DummyEvent> events = new ArrayList<DummyEvent>(1);
events.add(new DummyEvent("foo", 0));
TestContext context = new TestContext();
context.setInvokedFunctionArn("arn:aws:lambda:us-east-1:123:function:test:tag");
handler.init(context);
IpcSenderService spy = spy(handler.getIpcService());
handler.setIpcService(spy);
doThrow(new InterruptedException("expected")).when(spy).shutdown();
try {
handler.handler(events, context);
} catch (Exception e) {
throw e.getCause().getCause();
}
}
use of com.nextdoor.bender.aws.TestContext in project bender by Nextdoor.
the class BaseHandlerTest method testBadConfig.
@Test(expected = HandlerException.class)
public void testBadConfig() throws HandlerException {
BaseHandler.CONFIG_FILE = "/config/handler_config_bad.json";
List<DummyEvent> events = new ArrayList<DummyEvent>(1);
TestContext context = new TestContext();
context.setInvokedFunctionArn("arn:aws:lambda:us-east-1:123:function:test:tag");
handler.handler(events, context);
}
Aggregations