Search in sources :

Example 1 with Action

use of com.netflix.conductor.common.metadata.events.EventHandler.Action in project conductor by Netflix.

the class TestSimpleEventProcessor method testEventProcessorWithRetriableError.

@Test
public void testEventProcessorWithRetriableError() {
    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(queue.rePublishIfNoAck()).thenReturn(false);
    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.BACKEND_ERROR, "some 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, never()).ack(any());
    verify(queue, never()).publish(any());
}
Also used : Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) ApplicationException(com.netflix.conductor.core.execution.ApplicationException) TaskDetails(com.netflix.conductor.common.metadata.events.EventHandler.TaskDetails) TestConfiguration(com.netflix.conductor.core.execution.TestConfiguration) EventHandler(com.netflix.conductor.common.metadata.events.EventHandler) Test(org.junit.Test)

Example 2 with Action

use of com.netflix.conductor.common.metadata.events.EventHandler.Action in project conductor by Netflix.

the class TestSimpleEventProcessor method testEventHandlerWithCondition.

@Test
public void testEventHandlerWithCondition() {
    EventHandler eventHandler = new EventHandler();
    eventHandler.setName("cms_intermediate_video_ingest_handler");
    eventHandler.setActive(true);
    eventHandler.setEvent("sqs:dev_cms_asset_ingest_queue");
    eventHandler.setCondition("$.Message.testKey1 == 'level1' && $.Message.metadata.testKey2 == 123456");
    Map<String, Object> startWorkflowInput = new LinkedHashMap<>();
    startWorkflowInput.put("param1", "${Message.metadata.testKey2}");
    startWorkflowInput.put("param2", "SQS-${MessageId}");
    Action startWorkflowAction = new Action();
    startWorkflowAction.setAction(Type.start_workflow);
    startWorkflowAction.setStart_workflow(new StartWorkflow());
    startWorkflowAction.getStart_workflow().setName("cms_artwork_automation");
    startWorkflowAction.getStart_workflow().setVersion(1);
    startWorkflowAction.getStart_workflow().setInput(startWorkflowInput);
    startWorkflowAction.setExpandInlineJSON(true);
    eventHandler.getActions().add(startWorkflowAction);
    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), eq(null));
    WorkflowDef workflowDef = new WorkflowDef();
    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());
    Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);
    assertTrue(started.get());
}
Also used : ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) MetadataService(com.netflix.conductor.service.MetadataService) TestConfiguration(com.netflix.conductor.core.execution.TestConfiguration) ArgumentMatchers.eq(org.mockito.ArgumentMatchers.eq) Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) ArgumentMatchers.anyMap(org.mockito.ArgumentMatchers.anyMap) HashMap(java.util.HashMap) Task(com.netflix.conductor.common.metadata.tasks.Task) StartWorkflow(com.netflix.conductor.common.metadata.events.EventHandler.StartWorkflow) Observable(rx.Observable) ParametersUtils(com.netflix.conductor.core.execution.ParametersUtils) JsonUtils(com.netflix.conductor.core.utils.JsonUtils) LinkedHashMap(java.util.LinkedHashMap) Answer(org.mockito.stubbing.Answer) AtomicInteger(java.util.concurrent.atomic.AtomicInteger) Workflow(com.netflix.conductor.common.run.Workflow) Mockito.doAnswer(org.mockito.Mockito.doAnswer) Map(java.util.Map) WorkflowExecutor(com.netflix.conductor.core.execution.WorkflowExecutor) EventExecution(com.netflix.conductor.common.metadata.events.EventExecution) Before(org.junit.Before) ApplicationException(com.netflix.conductor.core.execution.ApplicationException) Message(com.netflix.conductor.core.events.queue.Message) Uninterruptibles(com.google.common.util.concurrent.Uninterruptibles) Assert.assertNotNull(org.junit.Assert.assertNotNull) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) Assert.assertTrue(org.junit.Assert.assertTrue) WorkflowDef(com.netflix.conductor.common.metadata.workflow.WorkflowDef) Test(org.junit.Test) Mockito.when(org.mockito.Mockito.when) EventHandler(com.netflix.conductor.common.metadata.events.EventHandler) UUID(java.util.UUID) Type(com.netflix.conductor.common.metadata.events.EventHandler.Action.Type) Mockito.verify(org.mockito.Mockito.verify) TimeUnit(java.util.concurrent.TimeUnit) Mockito.never(org.mockito.Mockito.never) Assert.assertNull(org.junit.Assert.assertNull) Mockito.atMost(org.mockito.Mockito.atMost) TaskDetails(com.netflix.conductor.common.metadata.events.EventHandler.TaskDetails) ExecutionService(com.netflix.conductor.service.ExecutionService) JsonMapperProvider(com.netflix.conductor.common.utils.JsonMapperProvider) ObservableQueue(com.netflix.conductor.core.events.queue.ObservableQueue) Collections(java.util.Collections) Assert.assertEquals(org.junit.Assert.assertEquals) Mockito.mock(org.mockito.Mockito.mock) Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) WorkflowDef(com.netflix.conductor.common.metadata.workflow.WorkflowDef) TestConfiguration(com.netflix.conductor.core.execution.TestConfiguration) EventHandler(com.netflix.conductor.common.metadata.events.EventHandler) LinkedHashMap(java.util.LinkedHashMap) StartWorkflow(com.netflix.conductor.common.metadata.events.EventHandler.StartWorkflow) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) Test(org.junit.Test)

Example 3 with Action

use of com.netflix.conductor.common.metadata.events.EventHandler.Action in project conductor by Netflix.

the class TestSimpleActionProcessor method testCompleteTaskByTaskId.

@Test
public void testCompleteTaskByTaskId() throws Exception {
    TaskDetails taskDetails = new TaskDetails();
    taskDetails.setWorkflowId("${workflowId}");
    taskDetails.setTaskId("${taskId}");
    Action action = new Action();
    action.setAction(Type.complete_task);
    action.setComplete_task(taskDetails);
    Object payload = objectMapper.readValue("{\"workflowId\":\"workflow_1\", \"taskId\":\"task_1\"}", Object.class);
    Task task = new Task();
    task.setTaskId("task_1");
    task.setReferenceTaskName("testTask");
    when(workflowExecutor.getTask(eq("task_1"))).thenReturn(task);
    actionProcessor.execute(action, payload, "testEvent", "testMessage");
    ArgumentCaptor<TaskResult> argumentCaptor = ArgumentCaptor.forClass(TaskResult.class);
    verify(workflowExecutor).updateTask(argumentCaptor.capture());
    assertEquals(Status.COMPLETED, argumentCaptor.getValue().getStatus());
    assertEquals("testMessage", argumentCaptor.getValue().getOutputData().get("conductor.event.messageId"));
    assertEquals("testEvent", argumentCaptor.getValue().getOutputData().get("conductor.event.name"));
    assertEquals("workflow_1", argumentCaptor.getValue().getOutputData().get("workflowId"));
    assertEquals("task_1", argumentCaptor.getValue().getOutputData().get("taskId"));
}
Also used : Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) Task(com.netflix.conductor.common.metadata.tasks.Task) TaskDetails(com.netflix.conductor.common.metadata.events.EventHandler.TaskDetails) TaskResult(com.netflix.conductor.common.metadata.tasks.TaskResult) Test(org.junit.Test)

Example 4 with Action

use of com.netflix.conductor.common.metadata.events.EventHandler.Action 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());
}
Also used : Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) EventHandler(com.netflix.conductor.common.metadata.events.EventHandler) StartWorkflow(com.netflix.conductor.common.metadata.events.EventHandler.StartWorkflow) Test(org.junit.Test)

Example 5 with Action

use of com.netflix.conductor.common.metadata.events.EventHandler.Action in project conductor by Netflix.

the class TestSimpleActionProcessor method testStartWorkflow_correlationId.

@SuppressWarnings("unchecked")
@Test
public void testStartWorkflow_correlationId() throws Exception {
    StartWorkflow startWorkflow = new StartWorkflow();
    startWorkflow.setName("testWorkflow");
    startWorkflow.getInput().put("testInput", "${testId}");
    startWorkflow.setCorrelationId("${correlationId}");
    Map<String, String> taskToDomain = new HashMap<>();
    taskToDomain.put("*", "dev");
    startWorkflow.setTaskToDomain(taskToDomain);
    Action action = new Action();
    action.setAction(Type.start_workflow);
    action.setStart_workflow(startWorkflow);
    Object payload = objectMapper.readValue("{\"correlationId\":\"test-id\", \"testId\":\"test_1\"}", Object.class);
    WorkflowDef workflowDef = new WorkflowDef();
    workflowDef.setName("testWorkflow");
    workflowDef.setVersion(1);
    when(workflowExecutor.startWorkflow(eq("testWorkflow"), eq(null), any(), any(), any(), eq("testEvent"), anyMap())).thenReturn("workflow_1");
    Map<String, Object> output = actionProcessor.execute(action, payload, "testEvent", "testMessage");
    assertNotNull(output);
    assertEquals("workflow_1", output.get("workflowId"));
    ArgumentCaptor<String> correlationIdCaptor = ArgumentCaptor.forClass(String.class);
    ArgumentCaptor<Map> inputParamCaptor = ArgumentCaptor.forClass(Map.class);
    ArgumentCaptor<Map> taskToDomainCaptor = ArgumentCaptor.forClass(Map.class);
    verify(workflowExecutor).startWorkflow(eq("testWorkflow"), eq(null), correlationIdCaptor.capture(), inputParamCaptor.capture(), any(), eq("testEvent"), taskToDomainCaptor.capture());
    assertEquals("test_1", inputParamCaptor.getValue().get("testInput"));
    assertEquals("test-id", correlationIdCaptor.getValue());
    assertEquals("testMessage", inputParamCaptor.getValue().get("conductor.event.messageId"));
    assertEquals("testEvent", inputParamCaptor.getValue().get("conductor.event.name"));
    assertEquals(taskToDomain, taskToDomainCaptor.getValue());
}
Also used : Action(com.netflix.conductor.common.metadata.events.EventHandler.Action) WorkflowDef(com.netflix.conductor.common.metadata.workflow.WorkflowDef) HashMap(java.util.HashMap) HashMap(java.util.HashMap) ArgumentMatchers.anyMap(org.mockito.ArgumentMatchers.anyMap) Map(java.util.Map) StartWorkflow(com.netflix.conductor.common.metadata.events.EventHandler.StartWorkflow) Test(org.junit.Test)

Aggregations

Action (com.netflix.conductor.common.metadata.events.EventHandler.Action)13 Test (org.junit.Test)12 StartWorkflow (com.netflix.conductor.common.metadata.events.EventHandler.StartWorkflow)9 TaskDetails (com.netflix.conductor.common.metadata.events.EventHandler.TaskDetails)9 EventHandler (com.netflix.conductor.common.metadata.events.EventHandler)8 Task (com.netflix.conductor.common.metadata.tasks.Task)7 WorkflowDef (com.netflix.conductor.common.metadata.workflow.WorkflowDef)7 ApplicationException (com.netflix.conductor.core.execution.ApplicationException)7 TestConfiguration (com.netflix.conductor.core.execution.TestConfiguration)7 HashMap (java.util.HashMap)7 Map (java.util.Map)7 ArgumentMatchers.anyMap (org.mockito.ArgumentMatchers.anyMap)7 EventExecution (com.netflix.conductor.common.metadata.events.EventExecution)6 Workflow (com.netflix.conductor.common.run.Workflow)6 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)5 Uninterruptibles (com.google.common.util.concurrent.Uninterruptibles)5 Type (com.netflix.conductor.common.metadata.events.EventHandler.Action.Type)5 JsonMapperProvider (com.netflix.conductor.common.utils.JsonMapperProvider)5 Message (com.netflix.conductor.core.events.queue.Message)5 ObservableQueue (com.netflix.conductor.core.events.queue.ObservableQueue)5