GUI acceptance tests using environment deployed from packages.

Build: #2875 failed

Job: Atm workflows status failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user resume workflow execution after pausing execution of uploaded workflow while first task had active status[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user resume workflow execution after pausing execution of uploaded workflow while first task had active status[1oz 1op openfaas]" in build 2,875 of Onedata Products - gui acceptance pkg - Atm workflows status.
Description
user resume workflow execution after pausing execution of uploaded workflow while first task had active status[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_status
Method
test_user_resume_workflow_execution_after_pausing_execution_of_uploaded_workflow_while_first_task_had_active_status[1oz_1op_openfaas]
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: After awaiting for task "20s sleep" its status (Failed) is not Active as expected
request = <FixtureRequest for <Function 'test_user_resume_workflow_execution_after_pausing_execution_of_uploaded_workflow_while_first_task_had_active_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/run_workflow.py:186: in await_for_task_status
    await_for_task_status_in_parallel_box(selenium, browser_id, op_container,
<decorator-gen-1361>:2: in await_for_task_status_in_parallel_box
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="e78e3a3627fb4f6d369a9ec02cd73571")>}
browser_id = 'browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>, lane = 'Lane1'
task = '20s sleep', ordinal = '1st', expected_status = 'Active'

    @repeat_failed(interval=1, timeout=90, exceptions=AssertionError)
    def await_for_task_status_in_parallel_box(selenium, browser_id, op_container,
                                              lane, task, ordinal, expected_status):
        box = get_parallel_box(selenium, browser_id, op_container, ordinal, lane)
        actual_status = box.task_list[task].status
        err_msg = (f'After awaiting for task "{task}" its status ({actual_status})'
                   f' is not {expected_status} as expected')
>       assert actual_status.lower() == expected_status.lower(), err_msg
E       AssertionError: After awaiting for task "20s sleep" its status (Failed) is not Active as expected

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