コード例 #1
0
 def test_flow_run_task_with_no_matching_flow(self, client, server_api):
     # verify a ValueError is raised if the client returns no flows
     task = FlowRunTask(flow_name="Test Flow")
     client.graphql = MagicMock(return_value=MagicMock(data=MagicMock(
         flow=[])))
     with pytest.raises(ValueError, match="Flow 'Test Flow' not found."):
         task.run()
コード例 #2
0
 def test_flow_run_task_with_no_matching_flow(self, client):
     # verify a ValueError is raised if the client returns no flows
     task = FlowRunTask(flow_name="Test Flow", project_name="Test Project")
     client.graphql = MagicMock(return_value=MagicMock(data=MagicMock(
         flow=[])))
     with pytest.raises(ValueError, match="No flow"):
         task.run()
コード例 #3
0
    def test_flow_run_task(self, client, server_api):
        # verify that create_flow_run was called
        task = FlowRunTask(
            flow_name="Test Flow",
            parameters={"test": "ing"},
        )
        # verify that run returns the new flow run ID
        assert task.run() == "xyz890"
        # verify the GraphQL query was called with the correct arguments
        query_args = list(
            client.graphql.call_args_list[0][0][0]["query"].keys())[0]
        assert "Test Flow" in query_args

        # verify create_flow_run was called with the correct arguments
        client.create_flow_run.assert_called_once_with(
            flow_id="abc123", parameters={"test": "ing"})
コード例 #4
0
 def test_initialization(self, server_api):
     # verify that the task is initialized as expected
     task = FlowRunTask(
         name="My Flow Run Task",
         checkpoint=False,
         flow_name="Test Flow",
         parameters={"test": "ing"},
     )
     assert task.name == "My Flow Run Task"
     assert task.checkpoint is False
     assert task.flow_name == "Test Flow"
     assert task.parameters == {"test": "ing"}
コード例 #5
0
 def test_flow_run_task_without_project_name(self):
     # verify that a ValueError is raised without a project name
     task = FlowRunTask(flow_name="Test Flow")
     with pytest.raises(ValueError, match="Must provide a project name."):
         task.run()
コード例 #6
0
 def test_flow_run_task_without_flow_name(self, cloud_api):
     # verify that a ValueError is raised without a flow name
     task = FlowRunTask(project_name="Test Project")
     with pytest.raises(ValueError, match="Must provide a flow name."):
         task.run()
コード例 #7
0
 def test_flow_run_task_without_flow_name(self, server_api):
     # verify that a ValueError is raised without a flow name
     task = FlowRunTask()
     with pytest.raises(ValueError, match="Must provide a flow name."):
         task.run()