GUI acceptance tests using environment deployed from packages.

Build: #2765 failed

Job: Atm workflows status failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user resume workflow execution after pausing execution of created workflow while lane had preparing status[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user resume workflow execution after pausing execution of created workflow while lane had preparing status[1oz 1op openfaas]" in build 2,765 of Onedata Products - gui acceptance pkg - Atm workflows status.
Description
user resume workflow execution after pausing execution of created workflow while lane had preparing status[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_status
Method
test_user_resume_workflow_execution_after_pausing_execution_of_created_workflow_while_lane_had_preparing_status[1oz_1op_openfaas]
Jira Issue
Duration
5 mins
Status
Failed (New Failure)

Error Log

AssertionError: Actual "Task in ParallelBox in WorkflowLane in WorkflowVisualiser in WorkflowExecutionPage in Oneprovider page" status: "Finished" does not match expected: "Active"
request = <FixtureRequest for <Function 'test_user_resume_workflow_execution_after_pausing_execution_of_created_workflow_while_lane_had_preparing_status[1oz_1op_openfaas]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/automation/workflow_results.py:172: in assert_status_of_task
    assert_task_status_in_parallel_box(selenium, browser_id, op_container,
<decorator-gen-1335>:2: in assert_task_status_in_parallel_box
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/automation/automation_statuses.py:56: in assert_task_status_in_parallel_box
    assert_status(task, actual_status, expected_status)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

name = <tests.gui.utils.oneprovider.automation.Task object at 0x7fb7d4b4fe50>
actual_status = 'Finished', expected_status = 'Active'

    def assert_status(name, actual_status, expected_status):
        err_msg = (f'Actual "{name}" status: "{actual_status}" does not '
                   f'match expected: "{expected_status}"')
>       assert actual_status.lower() == expected_status.lower(), err_msg
E       AssertionError: Actual "Task in ParallelBox in WorkflowLane in WorkflowVisualiser in WorkflowExecutionPage in Oneprovider page" status: "Finished" does not match expected: "Active"

tests/gui/steps/oneprovider/automation/automation_statuses.py:120: AssertionError