GUI acceptance tests using environment deployed from packages.

Build: #2876 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 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,876 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 (Existing Failure)

Error Log

AssertionError: After awaiting for workflow "workflow-with-sleep-one-lane" its status is not Paused as expected
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)
<decorator-gen-1367>:2: in await_for_lane_workflow_status
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="eb4be1da814d50e8b93e4058911f7d5f")>}
browser_id = 'browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
expected_status = 'Paused', name = 'workflow-with-sleep-one-lane'
option = 'workflow'

    @wt(parsers.re('user of (?P<browser_id>.*) awaits for status of "(?P<name>.*)"'
                   ' (?P<option>lane|workflow) to be "(?P<expected_status>.*)"'))
    @repeat_failed(interval=1, timeout=120, exceptions=AssertionError)
    def await_for_lane_workflow_status(selenium, browser_id, op_container,
                                       expected_status, name, option):
        page = switch_to_automation_page(selenium, browser_id, op_container)
        actual_status = get_status(page, option, name)
        err_msg = (f'After awaiting for {option} "{name}" its'
                   f' status is not {expected_status} as expected')
>       assert actual_status.lower() == expected_status.lower(), err_msg
E       AssertionError: After awaiting for workflow "workflow-with-sleep-one-lane" its status is not Paused as expected

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