use of com.netflix.conductor.common.run.Workflow 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);
}
use of com.netflix.conductor.common.run.Workflow in project conductor by Netflix.
the class TestWorkflowExecutor method testQueueExceptionsIgnoredDuringTerminateWorkflow.
@Test
@SuppressWarnings("unchecked")
public void testQueueExceptionsIgnoredDuringTerminateWorkflow() {
WorkflowDef def = new WorkflowDef();
def.setName("test");
def.setWorkflowStatusListenerEnabled(true);
Workflow workflow = new Workflow();
workflow.setWorkflowDefinition(def);
workflow.setWorkflowId("1");
workflow.setStatus(Workflow.WorkflowStatus.RUNNING);
workflow.setOwnerApp("junit_test");
workflow.setStartTime(10L);
workflow.setEndTime(100L);
workflow.setOutput(Collections.EMPTY_MAP);
when(executionDAOFacade.getWorkflowById(anyString(), anyBoolean())).thenReturn(workflow);
AtomicInteger updateWorkflowCalledCounter = new AtomicInteger(0);
doAnswer(invocation -> {
updateWorkflowCalledCounter.incrementAndGet();
return null;
}).when(executionDAOFacade).updateWorkflow(any());
AtomicInteger updateTasksCalledCounter = new AtomicInteger(0);
doAnswer(invocation -> {
updateTasksCalledCounter.incrementAndGet();
return null;
}).when(executionDAOFacade).updateTasks(any());
doThrow(new RuntimeException()).when(queueDAO).remove(anyString(), anyString());
workflowExecutor.terminateWorkflow("workflowId", "reason");
assertEquals(Workflow.WorkflowStatus.TERMINATED, workflow.getStatus());
assertEquals(1, updateWorkflowCalledCounter.get());
verify(workflowStatusListener, times(1)).onWorkflowTerminatedIfEnabled(any(Workflow.class));
}
use of com.netflix.conductor.common.run.Workflow in project conductor by Netflix.
the class TestWorkflowExecutor method testCancelNonTerminalTasks.
@Test
public void testCancelNonTerminalTasks() {
WorkflowDef def = new WorkflowDef();
def.setWorkflowStatusListenerEnabled(true);
Workflow workflow = generateSampleWorkflow();
workflow.setWorkflowDefinition(def);
Task subWorkflowTask = new Task();
subWorkflowTask.setTaskId(UUID.randomUUID().toString());
subWorkflowTask.setTaskType(TaskType.SUB_WORKFLOW.name());
subWorkflowTask.setStatus(Status.IN_PROGRESS);
Task lambdaTask = new Task();
lambdaTask.setTaskId(UUID.randomUUID().toString());
lambdaTask.setTaskType(TaskType.LAMBDA.name());
lambdaTask.setStatus(Status.SCHEDULED);
Task simpleTask = new Task();
simpleTask.setTaskId(UUID.randomUUID().toString());
simpleTask.setTaskType(TaskType.SIMPLE.name());
simpleTask.setStatus(Status.COMPLETED);
workflow.getTasks().addAll(Arrays.asList(subWorkflowTask, lambdaTask, simpleTask));
List<String> erroredTasks = workflowExecutor.cancelNonTerminalTasks(workflow);
assertTrue(erroredTasks.isEmpty());
ArgumentCaptor<Task> argumentCaptor = ArgumentCaptor.forClass(Task.class);
verify(executionDAOFacade, times(2)).updateTask(argumentCaptor.capture());
assertEquals(2, argumentCaptor.getAllValues().size());
assertEquals(TaskType.SUB_WORKFLOW.name(), argumentCaptor.getAllValues().get(0).getTaskType());
assertEquals(Status.CANCELED, argumentCaptor.getAllValues().get(0).getStatus());
assertEquals(TaskType.LAMBDA.name(), argumentCaptor.getAllValues().get(1).getTaskType());
assertEquals(Status.CANCELED, argumentCaptor.getAllValues().get(1).getStatus());
verify(workflowStatusListener, times(1)).onWorkflowFinalizedIfEnabled(any(Workflow.class));
}
use of com.netflix.conductor.common.run.Workflow in project conductor by Netflix.
the class TestWorkflowExecutor method testScheduleTaskFailure.
@Test(expected = TerminateWorkflowException.class)
public void testScheduleTaskFailure() {
Workflow workflow = new Workflow();
workflow.setWorkflowId("wid_01");
List<Task> tasks = new LinkedList<>();
Task task1 = new Task();
task1.setTaskType(TaskType.TASK_TYPE_SIMPLE);
task1.setTaskDefName("task_1");
task1.setReferenceTaskName("task_1");
task1.setWorkflowInstanceId(workflow.getWorkflowId());
task1.setTaskId("tid_01");
task1.setStatus(Status.SCHEDULED);
task1.setRetryCount(0);
tasks.add(task1);
when(executionDAOFacade.createTasks(tasks)).thenThrow(new RuntimeException());
workflowExecutor.scheduleTask(workflow, tasks);
}
use of com.netflix.conductor.common.run.Workflow in project conductor by Netflix.
the class TestWorkflowExecutor method generateSampleWorkflow.
private Workflow generateSampleWorkflow() {
// 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);
return workflow;
}
Aggregations