GUI acceptance tests using environment deployed from packages.

Build: #2475 failed

Job: Atm workflow execution failed

Stages & jobs

  1. Acceptance Test

user sees status cancelled in lane1 and unscheduled in lane2 after cancelling execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees status cancelled in lane1 and unscheduled in lane2 after cancelling execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas]" in build 2,475 of Onedata Products - gui acceptance pkg - Chrome oneprovider atm workflow execution tests.
Description
user sees status cancelled in lane1 and unscheduled in lane2 after cancelling execution of uploaded temporaryworkflowwithsleep workflow[1oz 1op openfaas]
Test class
gui.scenarios.test_oneprovider_atm_workflows_execution
Method
test_user_sees_status_cancelled_in_lane1_and_unscheduled_in_lane2_after_cancelling_execution_of_uploaded_temporaryworkflowwithsleep_workflow[1oz_1op_openfaas]
Duration
3 mins
Status
Failed (New Failure)

Error Log

Exception: After awaiting for task "1s sleep" for 15 seconds its status is not Finished as expected
request = <FixtureRequest for <Function 'test_user_sees_status_cancelled_in_lane1_and_unscheduled_in_lane2_after_cancelling_execution_of_uploaded_temporaryworkflowwithsleep_workflow[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.py:442: in await_for_task_status
    await_for_task_status_in_parallel_box(selenium, browser_id, op_container,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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

    def await_for_task_status_in_parallel_box(selenium, browser_id, op_container,
                                              lane, task, ordinal, expected_status,
                                              seconds):
        box = get_parallel_box(selenium, browser_id, op_container, ordinal, lane)
        t_end = time.time() + int(seconds)
        while time.time() < t_end:
            actual_status = box.task_list[task].status
            if actual_status.lower() == expected_status.lower():
                break
        else:
>           raise Exception(f'After awaiting for task "{task}" for {seconds} '
                            f'seconds its status is not {expected_status} as '
                            f'expected')
E           Exception: After awaiting for task "1s sleep" for 15 seconds its status is not Finished as expected

tests/gui/steps/oneprovider/automation.py:131: Exception