use of com.netflix.conductor.common.metadata.events.EventHandler in project conductor by Netflix.
the class RedisEventHandlerDAO method getEventHandler.
private EventHandler getEventHandler(String name) {
EventHandler eventHandler = null;
String json = dynoClient.hget(nsKey(EVENT_HANDLERS), name);
if (json != null) {
eventHandler = readValue(json, EventHandler.class);
}
return eventHandler;
}
use of com.netflix.conductor.common.metadata.events.EventHandler in project conductor by Netflix.
the class RedisEventHandlerDAOTest method testEventHandlers.
@Test
public void testEventHandlers() {
String event1 = "SQS::arn:account090:sqstest1";
String event2 = "SQS::arn:account090:sqstest2";
EventHandler eventHandler = new EventHandler();
eventHandler.setName(UUID.randomUUID().toString());
eventHandler.setActive(false);
Action action = new Action();
action.setAction(Type.start_workflow);
action.setStart_workflow(new StartWorkflow());
action.getStart_workflow().setName("test_workflow");
eventHandler.getActions().add(action);
eventHandler.setEvent(event1);
redisEventHandlerDAO.addEventHandler(eventHandler);
List<EventHandler> allEventHandlers = redisEventHandlerDAO.getAllEventHandlers();
assertNotNull(allEventHandlers);
assertEquals(1, allEventHandlers.size());
assertEquals(eventHandler.getName(), allEventHandlers.get(0).getName());
assertEquals(eventHandler.getEvent(), allEventHandlers.get(0).getEvent());
List<EventHandler> byEvents = redisEventHandlerDAO.getEventHandlersForEvent(event1, true);
assertNotNull(byEvents);
// event is marked as in-active
assertEquals(0, byEvents.size());
eventHandler.setActive(true);
eventHandler.setEvent(event2);
redisEventHandlerDAO.updateEventHandler(eventHandler);
allEventHandlers = redisEventHandlerDAO.getAllEventHandlers();
assertNotNull(allEventHandlers);
assertEquals(1, allEventHandlers.size());
byEvents = redisEventHandlerDAO.getEventHandlersForEvent(event1, true);
assertNotNull(byEvents);
assertEquals(0, byEvents.size());
byEvents = redisEventHandlerDAO.getEventHandlersForEvent(event2, true);
assertNotNull(byEvents);
assertEquals(1, byEvents.size());
}
use of com.netflix.conductor.common.metadata.events.EventHandler in project conductor by Netflix.
the class TestSimpleEventProcessor method testEventProcessor.
@Test
public void testEventProcessor() {
// setup event handler
EventHandler eventHandler = new EventHandler();
eventHandler.setName(UUID.randomUUID().toString());
eventHandler.setActive(true);
Map<String, String> taskToDomain = new HashMap<>();
taskToDomain.put("*", "dev");
Action startWorkflowAction = new Action();
startWorkflowAction.setAction(Type.start_workflow);
startWorkflowAction.setStart_workflow(new StartWorkflow());
startWorkflowAction.getStart_workflow().setName("workflow_x");
startWorkflowAction.getStart_workflow().setVersion(1);
startWorkflowAction.getStart_workflow().setTaskToDomain(taskToDomain);
eventHandler.getActions().add(startWorkflowAction);
Action completeTaskAction = new Action();
completeTaskAction.setAction(Type.complete_task);
completeTaskAction.setComplete_task(new TaskDetails());
completeTaskAction.getComplete_task().setTaskRefName("task_x");
completeTaskAction.getComplete_task().setWorkflowId(UUID.randomUUID().toString());
completeTaskAction.getComplete_task().setOutput(new HashMap<>());
eventHandler.getActions().add(completeTaskAction);
eventHandler.setEvent(event);
when(metadataService.getAllEventHandlers()).thenReturn(Collections.singletonList(eventHandler));
when(metadataService.getEventHandlersForEvent(event, true)).thenReturn(Collections.singletonList(eventHandler));
when(executionService.addEventExecution(any())).thenReturn(true);
when(queue.rePublishIfNoAck()).thenReturn(false);
String id = UUID.randomUUID().toString();
AtomicBoolean started = new AtomicBoolean(false);
doAnswer((Answer<String>) invocation -> {
started.set(true);
return id;
}).when(workflowExecutor).startWorkflow(eq(startWorkflowAction.getStart_workflow().getName()), eq(startWorkflowAction.getStart_workflow().getVersion()), eq(startWorkflowAction.getStart_workflow().getCorrelationId()), anyMap(), eq(null), eq(event), anyMap());
AtomicBoolean completed = new AtomicBoolean(false);
doAnswer((Answer<String>) invocation -> {
completed.set(true);
return null;
}).when(workflowExecutor).updateTask(any());
Task task = new Task();
task.setReferenceTaskName(completeTaskAction.getComplete_task().getTaskRefName());
Workflow workflow = new Workflow();
workflow.setTasks(Collections.singletonList(task));
when(workflowExecutor.getWorkflow(completeTaskAction.getComplete_task().getWorkflowId(), true)).thenReturn(workflow);
WorkflowDef workflowDef = new WorkflowDef();
workflowDef.setVersion(startWorkflowAction.getStart_workflow().getVersion());
workflowDef.setName(startWorkflowAction.getStart_workflow().getName());
when(metadataService.getWorkflowDef(any(), any())).thenReturn(workflowDef);
SimpleActionProcessor actionProcessor = new SimpleActionProcessor(workflowExecutor, parametersUtils, jsonUtils);
SimpleEventProcessor eventProcessor = new SimpleEventProcessor(executionService, metadataService, actionProcessor, eventQueues, jsonUtils, new TestConfiguration(), objectMapper);
assertNotNull(eventProcessor.getQueues());
assertEquals(1, eventProcessor.getQueues().size());
String queueEvent = eventProcessor.getQueues().keySet().iterator().next();
assertEquals(eventHandler.getEvent(), queueEvent);
String eventProcessorQueue = eventProcessor.getQueues().values().iterator().next();
assertEquals(queueURI, eventProcessorQueue);
Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);
assertTrue(started.get());
assertTrue(completed.get());
verify(queue, atMost(1)).ack(any());
verify(queue, never()).publish(any());
}
use of com.netflix.conductor.common.metadata.events.EventHandler in project conductor by Netflix.
the class TestSimpleEventProcessor method testEventProcessorWithNonRetriableError.
@Test
public void testEventProcessorWithNonRetriableError() {
EventHandler eventHandler = new EventHandler();
eventHandler.setName(UUID.randomUUID().toString());
eventHandler.setActive(true);
eventHandler.setEvent(event);
Action completeTaskAction = new Action();
completeTaskAction.setAction(Type.complete_task);
completeTaskAction.setComplete_task(new TaskDetails());
completeTaskAction.getComplete_task().setTaskRefName("task_x");
completeTaskAction.getComplete_task().setWorkflowId(UUID.randomUUID().toString());
completeTaskAction.getComplete_task().setOutput(new HashMap<>());
eventHandler.getActions().add(completeTaskAction);
when(metadataService.getAllEventHandlers()).thenReturn(Collections.singletonList(eventHandler));
when(metadataService.getEventHandlersForEvent(event, true)).thenReturn(Collections.singletonList(eventHandler));
when(executionService.addEventExecution(any())).thenReturn(true);
when(actionProcessor.execute(any(), any(), any(), any())).thenThrow(new ApplicationException(ApplicationException.Code.INVALID_INPUT, "some non-retriable error"));
SimpleEventProcessor eventProcessor = new SimpleEventProcessor(executionService, metadataService, actionProcessor, eventQueues, jsonUtils, new TestConfiguration(), objectMapper);
assertNotNull(eventProcessor.getQueues());
assertEquals(1, eventProcessor.getQueues().size());
Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);
verify(queue, atMost(1)).ack(any());
verify(queue, never()).publish(any());
}
use of com.netflix.conductor.common.metadata.events.EventHandler in project conductor by Netflix.
the class MySQLMetadataDAOTest method testEventHandlers.
@Test
public void testEventHandlers() {
String event1 = "SQS::arn:account090:sqstest1";
String event2 = "SQS::arn:account090:sqstest2";
EventHandler eh = new EventHandler();
eh.setName(UUID.randomUUID().toString());
eh.setActive(false);
EventHandler.Action action = new EventHandler.Action();
action.setAction(EventHandler.Action.Type.start_workflow);
action.setStart_workflow(new EventHandler.StartWorkflow());
action.getStart_workflow().setName("workflow_x");
eh.getActions().add(action);
eh.setEvent(event1);
dao.addEventHandler(eh);
List<EventHandler> all = dao.getAllEventHandlers();
assertNotNull(all);
assertEquals(1, all.size());
assertEquals(eh.getName(), all.get(0).getName());
assertEquals(eh.getEvent(), all.get(0).getEvent());
List<EventHandler> byEvents = dao.getEventHandlersForEvent(event1, true);
assertNotNull(byEvents);
// event is marked as in-active
assertEquals(0, byEvents.size());
eh.setActive(true);
eh.setEvent(event2);
dao.updateEventHandler(eh);
all = dao.getAllEventHandlers();
assertNotNull(all);
assertEquals(1, all.size());
byEvents = dao.getEventHandlersForEvent(event1, true);
assertNotNull(byEvents);
assertEquals(0, byEvents.size());
byEvents = dao.getEventHandlersForEvent(event2, true);
assertNotNull(byEvents);
assertEquals(1, byEvents.size());
}
Aggregations