Example #1
0
def test_from_step_workflow_execution(multiple_named_steps_workflow):
    """Test workflow execution from certain step."""
    num_steps, step_prefix, workflow_spec = multiple_named_steps_workflow
    for step_num in range(num_steps):
        steps_by_name = get_targeted_workflow_steps(
            workflow_spec, None, f"{step_prefix}{step_num}")
        assert len(steps_by_name) == num_steps - step_num
    # from 2nd to 3d step
    second_third_step_workflow = get_targeted_workflow_steps(
        workflow_spec, f"{step_prefix}{3}", f"{step_prefix}{2}")
    assert len(second_third_step_workflow) == 2
    assert second_third_step_workflow[0]["name"] == f"{step_prefix}{2}"
    assert second_third_step_workflow[1]["name"] == f"{step_prefix}{3}"
Example #2
0
def test_partial_workflow(caplog, multiple_named_steps_workflow):
    """Test that the produced workflow has only the specified steps."""
    caplog.set_level(logging.INFO)
    num_steps, step_prefix, workflow_spec = multiple_named_steps_workflow
    # Test that all subsets of the workflow steps are targetable and respected
    for step_num in range(num_steps):
        steps_by_name = get_targeted_workflow_steps(
            workflow_spec, f"{step_prefix}{step_num}")
        assert len(steps_by_name) == step_num + 1
    # User does not specify a target
    assert len(get_targeted_workflow_steps(workflow_spec)) == len(
        workflow_spec["steps"])
    # User specifies a no existing target
    wrong_step_name = "wrong_name"
    wrong_step_name_workflow = get_targeted_workflow_steps(
        workflow_spec, wrong_step_name)
    assert len(wrong_step_name_workflow) == num_steps
def test_partial_workflow(caplog, multiple_named_steps_workflow):
    """Test that the produced workflow has only the specified steps."""
    caplog.set_level(logging.INFO)
    num_steps, step_prefix, workflow_spec = multiple_named_steps_workflow
    # Test that all subsets of the workflow steps are targetable and respected
    for step_num in range(num_steps):
        steps_by_name = \
            get_targeted_workflow_steps(
                workflow_spec, f'{step_prefix}{step_num}')
        assert len(steps_by_name) == step_num + 1
    # User does not specify a target
    assert len(get_targeted_workflow_steps(workflow_spec, None)) == \
        len(workflow_spec['steps'])
    # User specifies a no existing target
    wrong_step_name = 'wrong_name'
    get_targeted_workflow_steps(workflow_spec, wrong_step_name)
    assert f'{wrong_step_name} was not found' in caplog.text