GUI acceptance tests using environment deployed from packages.

Build: #2682 failed

Job: Atm workflows pausing and cancelling failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user sees status status in lane1 after stopping execution of uploaded workflowwithsleep workflow while lane1 had preparing status[1oz 1op openfaas-cancelled-cancel]: Test case result

The below summarizes the result of the test " user sees status status in lane1 after stopping execution of uploaded workflowwithsleep workflow while lane1 had preparing status[1oz 1op openfaas-cancelled-cancel]" in build 2,682 of Onedata Products - gui acceptance pkg - Atm workflows pausing and cancelling.
Description
user sees status status in lane1 after stopping execution of uploaded workflowwithsleep workflow while lane1 had preparing status[1oz 1op openfaas-cancelled-cancel]
Test class
gui.scenarios.test_atm_workflows_pausing_and_cancelling
Method
test_user_sees_status_status_in_lane1_after_stopping_execution_of_uploaded_workflowwithsleep_workflow_while_lane1_had_preparing_status[1oz_1op_openfaas-Cancelled-Cancel]
Duration
4 mins
Status
Failed (New Failure)

Error Log

AssertionError: Actual "workflow-with-sleep" status: "Stopping" does not match expected: "cancelled"
request = <FixtureRequest for <Function 'test_user_sees_status_status_in_lane1_after_stopping_execution_of_uploaded_workflowwithsleep_workflow_while_lane1_had_preparing_status[1oz_1op_openfaas-Cancelled-Cancel]'>>

    @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-1287>:2: in assert_status_of_workflow_if_needed_wait_for_stopping_status
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/automation/automation_statuses.py:106: in assert_status_of_workflow_if_needed_wait_for_stopping_status
    assert_status(workflow, actual_status, expected_status)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

name = 'workflow-with-sleep', actual_status = 'Stopping'
expected_status = 'cancelled'

    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 "workflow-with-sleep" status: "Stopping" does not match expected: "cancelled"

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