GUI acceptance tests using environment deployed from packages.

Build: #2625 failed

Job: Atm workflows pausing and cancelling failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user sees that workflow is cancelled after cancelling workflow that is paused[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees that workflow is cancelled after cancelling workflow that is paused[1oz 1op openfaas]" in build 2,625 of Onedata Products - gui acceptance pkg - Atm workflows pausing and cancelling.
Description
user sees that workflow is cancelled after cancelling workflow that is paused[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_pausing_and_cancelling
Method
test_user_sees_that_workflow_is_cancelled_after_cancelling_workflow_that_is_paused[1oz_1op_openfaas]
Duration
3 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Workflow: workflow-with-one-box is not on workflow executions list
request = <FixtureRequest for <Function 'test_user_sees_that_workflow_is_cancelled_after_cancelling_workflow_that_is_paused[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-1235>:2: in assert_workflow_on_executed_workflows_list
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="0dd55dc1a6852c43fdfea7710ad61de9")>}
browser_id = 'browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
workflow = 'workflow-with-one-box', option = 'sees'

    @wt(parsers.re('user of (?P<browser_id>.*) (?P<option>does not see|sees)'
                   ' "(?P<workflow>.*)" on workflow executions list'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_workflow_on_executed_workflows_list(selenium, browser_id,
                                                   op_container, workflow, option):
    
        page = switch_to_automation_page(selenium, browser_id, op_container)
    
        workflow_executions_list = page.workflow_executions_list
        if option == 'does not see':
            err_msg = f'Workflow: {workflow} is on workflow executions list'
            assert not workflow in workflow_executions_list, err_msg
        else:
            err_msg = f'Workflow: {workflow} is not on workflow executions list'
>           assert workflow in workflow_executions_list, err_msg
E           AssertionError: Workflow: workflow-with-one-box is not on workflow executions list

tests/gui/steps/oneprovider/automation/automation_basic.py:158: AssertionError