use of com.netflix.conductor.common.metadata.workflow.WorkflowDef in project conductor by Netflix.
the class TestEvent method setup.
@Before
public void setup() {
Map<String, EventQueueProvider> providers = new HashMap<>();
providers.put("sqs", new MockQueueProvider("sqs"));
providers.put("conductor", new MockQueueProvider("conductor"));
parametersUtils = new ParametersUtils();
eventQueues = new EventQueues(providers, parametersUtils);
testWorkflowDefinition = new WorkflowDef();
testWorkflowDefinition.setName("testWorkflow");
testWorkflowDefinition.setVersion(2);
}
use of com.netflix.conductor.common.metadata.workflow.WorkflowDef in project conductor by Netflix.
the class TestEvent method testSinkParam.
@Test
public void testSinkParam() {
String sink = "sqs:queue_name";
WorkflowDef def = new WorkflowDef();
def.setName("wf0");
Workflow workflow = new Workflow();
workflow.setWorkflowDefinition(def);
Task task1 = new Task();
task1.setReferenceTaskName("t1");
task1.getOutputData().put("q", "t1_queue");
workflow.getTasks().add(task1);
Task task2 = new Task();
task2.setReferenceTaskName("t2");
task2.getOutputData().put("q", "task2_queue");
workflow.getTasks().add(task2);
Task task = new Task();
task.setReferenceTaskName("event");
task.getInputData().put("sink", sink);
task.setTaskType(TaskType.EVENT.name());
workflow.getTasks().add(task);
Event event = new Event(eventQueues, parametersUtils, objectMapper);
ObservableQueue queue = event.getQueue(workflow, task);
assertNotNull(task.getReasonForIncompletion(), queue);
assertEquals("queue_name", queue.getName());
assertEquals("sqs", queue.getType());
sink = "sqs:${t1.output.q}";
task.getInputData().put("sink", sink);
queue = event.getQueue(workflow, task);
assertNotNull(queue);
assertEquals("t1_queue", queue.getName());
assertEquals("sqs", queue.getType());
System.out.println(task.getOutputData().get("event_produced"));
sink = "sqs:${t2.output.q}";
task.getInputData().put("sink", sink);
queue = event.getQueue(workflow, task);
assertNotNull(queue);
assertEquals("task2_queue", queue.getName());
assertEquals("sqs", queue.getType());
System.out.println(task.getOutputData().get("event_produced"));
sink = "conductor";
task.getInputData().put("sink", sink);
queue = event.getQueue(workflow, task);
assertNotNull(queue);
assertEquals(workflow.getWorkflowName() + ":" + task.getReferenceTaskName(), queue.getName());
assertEquals("conductor", queue.getType());
System.out.println(task.getOutputData().get("event_produced"));
sink = "sqs:static_value";
task.getInputData().put("sink", sink);
queue = event.getQueue(workflow, task);
assertNotNull(queue);
assertEquals("static_value", queue.getName());
assertEquals("sqs", queue.getType());
assertEquals(sink, task.getOutputData().get("event_produced"));
System.out.println(task.getOutputData().get("event_produced"));
sink = "bad:queue";
task.getInputData().put("sink", sink);
queue = event.getQueue(workflow, task);
assertNull(queue);
assertEquals(Task.Status.FAILED, task.getStatus());
}
use of com.netflix.conductor.common.metadata.workflow.WorkflowDef in project conductor by Netflix.
the class TestWorkflowExecutor method testRerunWorkflowWithTaskId.
@Test
public void testRerunWorkflowWithTaskId() {
// setup
Workflow workflow = new Workflow();
workflow.setWorkflowId("testRerunWorkflowId");
workflow.setWorkflowType("testRerunWorkflowId");
workflow.setVersion(1);
workflow.setOwnerApp("junit_testRerunWorkflowId");
workflow.setStartTime(10L);
workflow.setEndTime(100L);
// noinspection unchecked
workflow.setOutput(Collections.EMPTY_MAP);
workflow.setStatus(Workflow.WorkflowStatus.FAILED);
workflow.setReasonForIncompletion("task1 failed");
workflow.setFailedReferenceTaskNames(new HashSet<String>() {
{
add("task1_ref1");
}
});
Task task_1_1 = new Task();
task_1_1.setTaskId(UUID.randomUUID().toString());
task_1_1.setSeq(20);
task_1_1.setRetryCount(1);
task_1_1.setTaskType(TaskType.SIMPLE.toString());
task_1_1.setStatus(Status.FAILED);
task_1_1.setRetried(true);
task_1_1.setTaskDefName("task1");
task_1_1.setWorkflowTask(new WorkflowTask());
task_1_1.setReferenceTaskName("task1_ref1");
Task task_2_1 = new Task();
task_2_1.setTaskId(UUID.randomUUID().toString());
task_2_1.setSeq(22);
task_2_1.setRetryCount(1);
task_2_1.setStatus(Status.CANCELED);
task_2_1.setTaskType(TaskType.SIMPLE.toString());
task_2_1.setTaskDefName("task2");
task_2_1.setWorkflowTask(new WorkflowTask());
task_2_1.setReferenceTaskName("task2_ref1");
workflow.getTasks().addAll(Arrays.asList(task_1_1, task_2_1));
// end of setup
// when:
when(executionDAOFacade.getWorkflowById(anyString(), anyBoolean())).thenReturn(workflow);
WorkflowDef workflowDef = new WorkflowDef();
when(metadataDAO.getWorkflowDef(anyString(), anyInt())).thenReturn(Optional.of(workflowDef));
RerunWorkflowRequest rerunWorkflowRequest = new RerunWorkflowRequest();
rerunWorkflowRequest.setReRunFromWorkflowId(workflow.getWorkflowId());
rerunWorkflowRequest.setReRunFromTaskId(task_1_1.getTaskId());
workflowExecutor.rerun(rerunWorkflowRequest);
// when:
when(executionDAOFacade.getWorkflowById(anyString(), anyBoolean())).thenReturn(workflow);
assertEquals(Workflow.WorkflowStatus.RUNNING, workflow.getStatus());
assertEquals(null, workflow.getReasonForIncompletion());
assertEquals(new HashSet<>(), workflow.getFailedReferenceTaskNames());
}
use of com.netflix.conductor.common.metadata.workflow.WorkflowDef in project conductor by Netflix.
the class TestWorkflowExecutor method testRestartWorkflow.
@Test
public void testRestartWorkflow() {
WorkflowTask workflowTask = new WorkflowTask();
workflowTask.setName("test_task");
workflowTask.setTaskReferenceName("task_ref");
WorkflowDef workflowDef = new WorkflowDef();
workflowDef.setName("testDef");
workflowDef.setVersion(1);
workflowDef.setRestartable(true);
workflowDef.getTasks().addAll(Collections.singletonList(workflowTask));
Task task_1 = new Task();
task_1.setTaskId(UUID.randomUUID().toString());
task_1.setSeq(1);
task_1.setStatus(Status.FAILED);
task_1.setTaskDefName(workflowTask.getName());
task_1.setReferenceTaskName(workflowTask.getTaskReferenceName());
Task task_2 = new Task();
task_2.setTaskId(UUID.randomUUID().toString());
task_2.setSeq(2);
task_2.setStatus(Status.FAILED);
task_2.setTaskDefName(workflowTask.getName());
task_2.setReferenceTaskName(workflowTask.getTaskReferenceName());
Workflow workflow = new Workflow();
workflow.setWorkflowDefinition(workflowDef);
workflow.setWorkflowId("test-workflow-id");
workflow.getTasks().addAll(Arrays.asList(task_1, task_2));
workflow.setStatus(Workflow.WorkflowStatus.FAILED);
when(executionDAOFacade.getWorkflowById(anyString(), anyBoolean())).thenReturn(workflow);
doNothing().when(executionDAOFacade).removeTask(any());
when(metadataDAO.getWorkflowDef(workflow.getWorkflowName(), workflow.getWorkflowVersion())).thenReturn(Optional.of(workflowDef));
when(metadataDAO.getTaskDef(workflowTask.getName())).thenReturn(new TaskDef());
when(executionDAOFacade.updateWorkflow(any())).thenReturn("");
workflowExecutor.rewind(workflow.getWorkflowId(), false);
assertEquals(Workflow.WorkflowStatus.RUNNING, workflow.getStatus());
verify(metadataDAO, never()).getLatestWorkflowDef(any());
ArgumentCaptor<Workflow> argumentCaptor = ArgumentCaptor.forClass(Workflow.class);
verify(executionDAOFacade, times(1)).createWorkflow(argumentCaptor.capture());
assertEquals(workflow.getWorkflowId(), argumentCaptor.getAllValues().get(0).getWorkflowId());
assertEquals(workflow.getWorkflowDefinition(), argumentCaptor.getAllValues().get(0).getWorkflowDefinition());
// add a new version of the workflow definition and restart with latest
workflow.setStatus(Workflow.WorkflowStatus.COMPLETED);
workflowDef = new WorkflowDef();
workflowDef.setName("testDef");
workflowDef.setVersion(2);
workflowDef.setRestartable(true);
workflowDef.getTasks().addAll(Collections.singletonList(workflowTask));
when(metadataDAO.getLatestWorkflowDef(workflow.getWorkflowName())).thenReturn(Optional.of(workflowDef));
workflowExecutor.rewind(workflow.getWorkflowId(), true);
assertEquals(Workflow.WorkflowStatus.RUNNING, workflow.getStatus());
verify(metadataDAO, times(1)).getLatestWorkflowDef(anyString());
argumentCaptor = ArgumentCaptor.forClass(Workflow.class);
verify(executionDAOFacade, times(2)).createWorkflow(argumentCaptor.capture());
assertEquals(workflow.getWorkflowId(), argumentCaptor.getAllValues().get(1).getWorkflowId());
assertEquals(workflowDef, argumentCaptor.getAllValues().get(1).getWorkflowDefinition());
}
use of com.netflix.conductor.common.metadata.workflow.WorkflowDef in project conductor by Netflix.
the class TestWorkflowExecutor method testRetryWorkflowNoFailedTasks.
@Test(expected = ApplicationException.class)
public void testRetryWorkflowNoFailedTasks() {
// setup
Workflow workflow = new Workflow();
workflow.setWorkflowId("testRetryWorkflowId");
workflow.setWorkflowType("testRetryWorkflowId");
workflow.setVersion(1);
workflow.setOwnerApp("junit_testRetryWorkflowId");
workflow.setStartTime(10L);
workflow.setEndTime(100L);
// noinspection unchecked
workflow.setOutput(Collections.EMPTY_MAP);
workflow.setStatus(Workflow.WorkflowStatus.FAILED);
// add 2 failed task in 2 forks and 1 cancelled in the 3rd fork
Task task_1_1 = new Task();
task_1_1.setTaskId(UUID.randomUUID().toString());
task_1_1.setSeq(1);
task_1_1.setRetryCount(0);
task_1_1.setTaskType(TaskType.SIMPLE.toString());
task_1_1.setStatus(Status.FAILED);
task_1_1.setTaskDefName("task1");
task_1_1.setReferenceTaskName("task1_ref1");
Task task_1_2 = new Task();
task_1_2.setTaskId(UUID.randomUUID().toString());
task_1_2.setSeq(2);
task_1_2.setRetryCount(1);
task_1_2.setTaskType(TaskType.SIMPLE.toString());
task_1_2.setStatus(Status.COMPLETED);
task_1_2.setTaskDefName("task1");
task_1_2.setReferenceTaskName("task1_ref1");
workflow.getTasks().addAll(Arrays.asList(task_1_1, task_1_2));
// end of setup
// when:
when(executionDAOFacade.getWorkflowById(anyString(), anyBoolean())).thenReturn(workflow);
WorkflowDef workflowDef = new WorkflowDef();
when(metadataDAO.getWorkflowDef(anyString(), anyInt())).thenReturn(Optional.of(workflowDef));
workflowExecutor.retry(workflow.getWorkflowId(), false);
}
Aggregations