moto/tests/test_swf/responses/test_workflow_executions.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

387 lines
13 KiB
Python
Raw Permalink Normal View History

from datetime import timedelta
import boto3
2021-09-21 22:00:20 +00:00
import pytest
from botocore.exceptions import ClientError
2019-10-31 15:44:26 +00:00
2024-01-07 12:03:33 +00:00
from moto import mock_aws
from moto.core.utils import unix_time, utcnow
2021-09-21 22:00:20 +00:00
def setup_swf_environment_boto3():
client = boto3.client("swf", region_name="us-west-1")
client.register_domain(
name="test-domain",
workflowExecutionRetentionPeriodInDays="60",
description="A test domain",
)
client.register_workflow_type(
domain="test-domain",
name="test-workflow",
version="v1.0",
defaultTaskList={"name": "queue"},
defaultChildPolicy="TERMINATE",
defaultTaskStartToCloseTimeout="300",
defaultExecutionStartToCloseTimeout="300",
)
client.register_activity_type(
domain="test-domain", name="test-activity", version="v1.1"
)
return client
# StartWorkflowExecution endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_start_workflow_execution_boto3():
client = setup_swf_environment_boto3()
wf = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
assert "runId" in wf
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_signal_workflow_execution_boto3():
client = setup_swf_environment_boto3()
hsh = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
run_id = hsh["runId"]
wfe = client.signal_workflow_execution(
domain="test-domain",
signalName="my_signal",
workflowId="uid-abcd1234",
input="my_input",
runId=run_id,
)
wfe = client.describe_workflow_execution(
domain="test-domain", execution={"runId": run_id, "workflowId": "uid-abcd1234"}
)
assert wfe["openCounts"]["openDecisionTasks"] == 2
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2022-11-16 10:40:38 +00:00
def test_signal_workflow_execution_without_runId():
conn = setup_swf_environment_boto3()
hsh = conn.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
run_id = hsh["runId"]
conn.signal_workflow_execution(
domain="test-domain",
signalName="my_signal",
workflowId="uid-abcd1234",
input="my_input",
)
resp = conn.get_workflow_execution_history(
domain="test-domain", execution={"runId": run_id, "workflowId": "uid-abcd1234"}
)
types = [evt["eventType"] for evt in resp["events"]]
assert "WorkflowExecutionSignaled" in types
2022-11-16 10:40:38 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_start_already_started_workflow_execution_boto3():
client = setup_swf_environment_boto3()
client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
with pytest.raises(ClientError) as ex:
client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
assert ex.value.response["Error"]["Code"] == "WorkflowExecutionAlreadyStartedFault"
assert ex.value.response["Error"]["Message"] == "Already Started"
assert ex.value.response["ResponseMetadata"]["HTTPStatusCode"] == 400
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_start_workflow_execution_on_deprecated_type_boto3():
client = setup_swf_environment_boto3()
client.deprecate_workflow_type(
domain="test-domain", workflowType={"name": "test-workflow", "version": "v1.0"}
)
with pytest.raises(ClientError) as ex:
client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
assert ex.value.response["Error"]["Code"] == "TypeDeprecatedFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"WorkflowType=[name=test-workflow, version=v1.0]"
)
assert ex.value.response["ResponseMetadata"]["HTTPStatusCode"] == 400
2021-09-21 22:00:20 +00:00
# DescribeWorkflowExecution endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_describe_workflow_execution_boto3():
client = setup_swf_environment_boto3()
hsh = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
run_id = hsh["runId"]
wfe = client.describe_workflow_execution(
domain="test-domain", execution={"runId": run_id, "workflowId": "uid-abcd1234"}
)
assert wfe["executionInfo"]["execution"]["workflowId"] == "uid-abcd1234"
assert wfe["executionInfo"]["executionStatus"] == "OPEN"
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_describe_non_existent_workflow_execution_boto3():
client = setup_swf_environment_boto3()
with pytest.raises(ClientError) as ex:
client.describe_workflow_execution(
domain="test-domain",
execution={"runId": "wrong-run-id", "workflowId": "uid-abcd1234"},
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"Unknown execution: WorkflowExecution=[workflowId=uid-abcd1234, runId=wrong-run-id]"
)
assert ex.value.response["ResponseMetadata"]["HTTPStatusCode"] == 400
2021-09-21 22:00:20 +00:00
# GetWorkflowExecutionHistory endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_get_workflow_execution_history_boto3():
client = setup_swf_environment_boto3()
hsh = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
run_id = hsh["runId"]
resp = client.get_workflow_execution_history(
domain="test-domain", execution={"runId": run_id, "workflowId": "uid-abcd1234"}
)
types = [evt["eventType"] for evt in resp["events"]]
assert types == ["WorkflowExecutionStarted", "DecisionTaskScheduled"]
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_get_workflow_execution_history_with_reverse_order_boto3():
client = setup_swf_environment_boto3()
hsh = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
run_id = hsh["runId"]
resp = client.get_workflow_execution_history(
domain="test-domain",
execution={"runId": run_id, "workflowId": "uid-abcd1234"},
reverseOrder=True,
)
types = [evt["eventType"] for evt in resp["events"]]
assert types == ["DecisionTaskScheduled", "WorkflowExecutionStarted"]
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_get_workflow_execution_history_on_non_existent_workflow_execution_boto3():
client = setup_swf_environment_boto3()
with pytest.raises(ClientError) as ex:
client.get_workflow_execution_history(
domain="test-domain",
execution={"runId": "wrong-run-id", "workflowId": "wrong-workflow-id"},
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"Unknown execution: WorkflowExecution=[workflowId=wrong-workflow-id, runId=wrong-run-id]"
)
assert ex.value.response["ResponseMetadata"]["HTTPStatusCode"] == 400
2021-09-21 22:00:20 +00:00
# ListOpenWorkflowExecutions endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_list_open_workflow_executions_boto3():
client = setup_swf_environment_boto3()
# One open workflow execution
client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
# One closed workflow execution to make sure it isn't displayed
run_id = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd12345",
workflowType={"name": "test-workflow", "version": "v1.0"},
)["runId"]
client.terminate_workflow_execution(
domain="test-domain",
workflowId="uid-abcd12345",
details="some details",
reason="a more complete reason",
runId=run_id,
)
yesterday = utcnow() - timedelta(days=1)
2021-09-21 22:00:20 +00:00
oldest_date = unix_time(yesterday)
response = client.list_open_workflow_executions(
domain="test-domain",
startTimeFilter={"oldestDate": oldest_date},
executionFilter={"workflowId": "test-workflow"},
)
execution_infos = response["executionInfos"]
assert len(execution_infos) == 1
2021-09-21 22:00:20 +00:00
open_workflow = execution_infos[0]
assert open_workflow["workflowType"] == {"version": "v1.0", "name": "test-workflow"}
assert "startTimestamp" in open_workflow
assert open_workflow["execution"]["workflowId"] == "uid-abcd1234"
assert "runId" in open_workflow["execution"]
assert open_workflow["cancelRequested"] is False
assert open_workflow["executionStatus"] == "OPEN"
2021-09-21 22:00:20 +00:00
# ListClosedWorkflowExecutions endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_list_closed_workflow_executions_boto3():
client = setup_swf_environment_boto3()
# Leave one workflow execution open to make sure it isn't displayed
client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)
# One closed workflow execution
run_id = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd12345",
workflowType={"name": "test-workflow", "version": "v1.0"},
)["runId"]
client.terminate_workflow_execution(
domain="test-domain",
workflowId="uid-abcd12345",
details="some details",
reason="a more complete reason",
runId=run_id,
)
yesterday = utcnow() - timedelta(days=1)
2021-09-21 22:00:20 +00:00
oldest_date = unix_time(yesterday)
response = client.list_closed_workflow_executions(
domain="test-domain",
startTimeFilter={"oldestDate": oldest_date},
executionFilter={"workflowId": "test-workflow"},
)
execution_infos = response["executionInfos"]
assert len(execution_infos) == 1
2021-09-21 22:00:20 +00:00
open_workflow = execution_infos[0]
assert open_workflow["workflowType"] == {"version": "v1.0", "name": "test-workflow"}
assert "startTimestamp" in open_workflow
assert open_workflow["execution"]["workflowId"] == "uid-abcd12345"
assert "runId" in open_workflow["execution"]
assert open_workflow["cancelRequested"] is False
assert open_workflow["executionStatus"] == "CLOSED"
2021-09-21 22:00:20 +00:00
# TerminateWorkflowExecution endpoint
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_terminate_workflow_execution_boto3():
client = setup_swf_environment_boto3()
run_id = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)["runId"]
client.terminate_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
details="some details",
reason="a more complete reason",
runId=run_id,
)
resp = client.get_workflow_execution_history(
domain="test-domain", execution={"runId": run_id, "workflowId": "uid-abcd1234"}
)
evt = resp["events"][-1]
assert evt["eventType"] == "WorkflowExecutionTerminated"
2021-09-21 22:00:20 +00:00
attrs = evt["workflowExecutionTerminatedEventAttributes"]
assert attrs["details"] == "some details"
assert attrs["reason"] == "a more complete reason"
assert attrs["cause"] == "OPERATOR_INITIATED"
2021-09-21 22:00:20 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2021-09-21 22:00:20 +00:00
def test_terminate_workflow_execution_with_wrong_workflow_or_run_id_boto3():
client = setup_swf_environment_boto3()
run_id = client.start_workflow_execution(
domain="test-domain",
workflowId="uid-abcd1234",
workflowType={"name": "test-workflow", "version": "v1.0"},
)["runId"]
# terminate workflow execution
client.terminate_workflow_execution(domain="test-domain", workflowId="uid-abcd1234")
# already closed, with run_id
with pytest.raises(ClientError) as ex:
client.terminate_workflow_execution(
domain="test-domain", workflowId="uid-abcd1234", runId=run_id
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
f"Unknown execution: WorkflowExecution=[workflowId=uid-abcd1234, runId={run_id}]"
2021-09-21 22:00:20 +00:00
)
# already closed, without run_id
with pytest.raises(ClientError) as ex:
client.terminate_workflow_execution(
domain="test-domain", workflowId="uid-abcd1234"
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"Unknown execution, workflowId = uid-abcd1234"
)
# wrong workflow id
with pytest.raises(ClientError) as ex:
client.terminate_workflow_execution(
domain="test-domain", workflowId="uid-non-existent"
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"Unknown execution, workflowId = uid-non-existent"
)
# wrong run_id
with pytest.raises(ClientError) as ex:
client.terminate_workflow_execution(
domain="test-domain", workflowId="uid-abcd1234", runId="foo"
)
assert ex.value.response["Error"]["Code"] == "UnknownResourceFault"
assert ex.value.response["Error"]["Message"] == (
2021-09-21 22:00:20 +00:00
"Unknown execution: WorkflowExecution=[workflowId=uid-abcd1234, runId=foo]"
)