GUI acceptance tests using environment deployed from packages.

Build: #2530 failed

Job: Oneprovider archives recall failed

Stages & jobs

  1. Acceptance Test

user sees that recall has been cancelled after cancelling it on remote provider[1oz 2op slow file operations]: Test case result

The below summarizes the result of the test " user sees that recall has been cancelled after cancelling it on remote provider[1oz 2op slow file operations]" in build 2,530 of Onedata Products - gui acceptance pkg - Oneprovider archives recall.
Description
user sees that recall has been cancelled after cancelling it on remote provider[1oz 2op slow file operations]
Test class
gui.scenarios.test_oneprovider_archives_recall
Method
test_user_sees_that_recall_has_been_cancelled_after_cancelling_it_on_remote_provider[1oz_2op_slow_file_operations]
Duration
20 mins
Status
Failed (New Failure)

Error Log

AssertionError: Archive status:Finished successfully does not match expected
request = <FixtureRequest for <Function 'test_user_sees_that_recall_has_been_cancelled_after_cancelling_it_on_remote_provider[1oz_2op_slow_file_operations]'>>

    @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-1081>:2: in wait_for_status_in_archive_recall_information_modal
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="192e8c62a274af9d30c25305038119ac")>}
browser_id = 'browser', modals = <class 'tests.gui.utils.common.modals.Modals'>
status = 'Cancelled'

    @wt(parsers.parse('user of {browser_id} waits for status "{status}" in archive '
                      'recall information modal'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def wait_for_status_in_archive_recall_information_modal(selenium, browser_id,
                                                            modals, status):
        driver = selenium[browser_id]
        recall_status = modals(driver).archive_recall_information.status
        for i in range(100):
            if recall_status == status:
                break
            else:
                time.sleep(2)
                recall_status = modals(driver).archive_recall_information.status
        else:
            err_msg = f'Archive status:{recall_status} does not match expected'
>           assert recall_status == status, err_msg
E           AssertionError: Archive status:Finished successfully does not match expected

tests/gui/steps/oneprovider/archives_recall.py:67: AssertionError