use of io.zeebe.test.broker.protocol.clientapi.ExecuteCommandResponse in project zeebe by zeebe-io.
the class IncidentTest method createStandaloneTask.
private void createStandaloneTask() {
final ExecuteCommandResponse response = apiRule.createCmdRequest().eventTypeTask().command().put("state", "CREATE").put("type", "test").put("retries", 3).done().sendAndAwait();
assertThat(response.getEvent()).containsEntry("state", "CREATED");
}
use of io.zeebe.test.broker.protocol.clientapi.ExecuteCommandResponse in project zeebe by zeebe-io.
the class CompleteTaskTest method shouldCompleteTask.
@Test
public void shouldCompleteTask() {
// given
createTask(TASK_TYPE);
apiRule.openTaskSubscription(TASK_TYPE).await();
final SubscribedEvent subscribedEvent = receiveSingleSubscribedEvent();
// when
final ExecuteCommandResponse response = completeTask(subscribedEvent.key(), subscribedEvent.event());
// then
final Map<String, Object> expectedEvent = new HashMap<>(subscribedEvent.event());
expectedEvent.put("state", "COMPLETED");
assertThat(response.getEvent()).containsAllEntriesOf(expectedEvent);
}
use of io.zeebe.test.broker.protocol.clientapi.ExecuteCommandResponse in project zeebe by zeebe-io.
the class CompleteTaskTest method shouldRejectCompletionIfTaskNotLocked.
@Test
public void shouldRejectCompletionIfTaskNotLocked() {
// given
final ExecuteCommandResponse task = createTask(TASK_TYPE);
// when
final ExecuteCommandResponse response = completeTask(task.key(), task.getEvent());
// then
assertThat(response.getEvent()).containsEntry("state", "COMPLETE_REJECTED");
}
use of io.zeebe.test.broker.protocol.clientapi.ExecuteCommandResponse in project zeebe by zeebe-io.
the class CompleteTaskTest method shouldRejectCompletionIfPayloadIsInvalid.
@Test
public void shouldRejectCompletionIfPayloadIsInvalid() {
// given
createTask(TASK_TYPE);
apiRule.openTaskSubscription(TASK_TYPE).await();
final SubscribedEvent subscribedEvent = receiveSingleSubscribedEvent();
final Map<String, Object> event = subscribedEvent.event();
// positive fixnum, i.e. no object
event.put("payload", new byte[] { 1 });
// when
final ExecuteCommandResponse response = completeTask(subscribedEvent.key(), event);
// then
assertThat(response.getEvent()).containsEntry("state", "COMPLETE_REJECTED");
}
use of io.zeebe.test.broker.protocol.clientapi.ExecuteCommandResponse in project zeebe by zeebe-io.
the class CreateDeploymentTest method shouldCreateDeploymentWithYamlWorfklow.
@Test
public void shouldCreateDeploymentWithYamlWorfklow() throws Exception {
// given
final File yamlFile = new File(getClass().getResource("/workflows/simple-workflow.yaml").toURI());
final String yamlWorkflow = Files.contentOf(yamlFile, UTF_8);
// when
final ExecuteCommandResponse resp = apiRule.topic().deployWithResponse(ClientApiRule.DEFAULT_TOPIC_NAME, yamlWorkflow.getBytes(UTF_8), ResourceType.YAML_WORKFLOW.name(), "simple-workflow.yaml");
// then
assertThat(resp.getEvent()).containsEntry(PROP_STATE, "CREATED");
final SubscribedEvent workflowEvent = apiRule.topic().receiveSingleEvent(workflowEvents("CREATED"));
assertThat(workflowEvent.event()).containsEntry(PROP_WORKFLOW_BPMN_PROCESS_ID, "yaml-workflow").containsEntry("deploymentKey", resp.key()).containsEntry("bpmnXml", bpmnXml(Bpmn.readFromYamlFile(yamlFile)));
}
Aggregations