use of com.nextdoor.bender.operation.BaseOperation in project bender by Nextdoor.
the class BaseHandlerTest method testOperationException.
@Test
public void testOperationException() 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);
List<OperationProcessor> operationProcessors = handler.sources.get(0).getOperationProcessors();
for (OperationProcessor operationProcessor : operationProcessors) {
BaseOperation operation = spy(operationProcessor.getOperation());
doThrow(new OperationException("expected")).when(operation).perform(any());
operationProcessor.setOperation(operation);
}
handler.handler(events, context);
assertEquals(1, operationProcessors.get(0).getErrorCountStat().getValue());
}
Aggregations