GUI acceptance tests using environment deployed from packages.

Build: #2953 failed

Job: Atm workflows pausing and cancelling failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees status cancelled in lane1 and unscheduled in lane2 after cancelling execution of uploaded workflowwithsleeptwolanes 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 workflowwithsleeptwolanes workflow[1oz 1op openfaas]" in build 2,953 of Onedata Products - gui acceptance pkg - Atm workflows pausing and cancelling.
Description
user sees status cancelled in lane1 and unscheduled in lane2 after cancelling execution of uploaded workflowwithsleeptwolanes workflow[1oz 1op openfaas]
Test class
gui.scenarios.test_atm_workflows_pausing_and_cancelling
Method
test_user_sees_status_cancelled_in_lane1_and_unscheduled_in_lane2_after_cancelling_execution_of_uploaded_workflowwithsleeptwolanes_workflow[1oz_1op_openfaas]
Duration
55 secs
Status
Failed (New Failure)

Error Log

AssertionError: Actual "workflow-with-sleep-two-lanes" status: "Cancelled" does not match expected: "Stopping"
fixturefunc = <function assert_status_of_workflow_if_needed_wait_for_stopping_status at 0x7f0a200db060>
request = <FixtureRequest for <Function test_user_sees_status_cancelled_in_lane1_and_unscheduled_in_lane2_after_cancelling_execution_of_uploaded_workflowwithsleeptwolanes_workflow[1oz_1op_openfaas]>>
kwargs = {'browser_id': 'browser', 'expected_status': 'Stopping', 'op_container': <class 'tests.gui.utils.oneprovider.OPLoggedI...scheduled_in_lane2_after_cancelling_execution_of_uploaded_workflowwithsleeptwolanes_workflow[1oz_1op_openfaas]>>}, ...}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/automation/automation_statuses.py:147: in assert_status_of_workflow_if_needed_wait_for_stopping_status
    assert_status(workflow, actual_status, expected_status)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

name = 'workflow-with-sleep-two-lanes', actual_status = 'Cancelled'
expected_status = 'Stopping'

    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-two-lanes" status: "Cancelled" does not match expected: "Stopping"

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