GUI acceptance tests using environment deployed from packages.

Build: #27 failed

Job: Chrome onezone providers sync test failed

provider with stopped workers is offline and resynchronises with others after restart[1oz 3op providers sync]: Test case result

The below summarizes the result of the test " provider with stopped workers is offline and resynchronises with others after restart[1oz 3op providers sync]" in build 27 of Onedata Products - gui acceptance pkg - release-22.02.0-alpha1 - Chrome onezone providers sync test.
Description
provider with stopped workers is offline and resynchronises with others after restart[1oz 3op providers sync]
Test class
gui.scenarios.test_onezone_providers_sync
Method
test_provider_with_stopped_workers_is_offline_and_resynchronises_with_others_after_restart[1oz_3op_providers_sync]
Duration
15 mins
Status
Failed (New Failure)

Error Log

AssertionError: Provider is not up
request = <FixtureRequest for <Function 'test_provider_with_stopped_workers_is_offline_and_resynchronises_with_others_after_restart[1oz_3op_providers_sync]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-1099>:2: in assert_provider_state_in_sync_table
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="6f68165d68da9b5861116f3b42e3f099")>}
browser_id = 'browser', oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'>
provider = 'oneprovider-3', state = 'up'
hosts = {'oneprovider-1': {'container-id': '78edc85070af7b1ab6a6aa474029d697224a119439b312f501ae2040c60c325b', 'hostname': 'de...c7480c9776a28c', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.15', 'name': 'dev-onezone', ...}}

    @wt(parsers.parse('user of {browser_id} waits until "{provider}" provider '
                      'is {state} in synchronization table'))
    @repeat_failed(timeout=WAIT_BACKEND*5)
    def assert_provider_state_in_sync_table(selenium, browser_id, oz_page,
                                            provider, state, hosts):
        driver = selenium[browser_id]
        page = oz_page(driver)['providers']
        provider_name = hosts[provider]['name']
        index = get_table_index(provider_name, page)
    
        cell = page.sync_table.status_cells[index]
>       assert getattr(cell, f'is_{state}')(), f'Provider is not {state}'
E       AssertionError: Provider is not up

tests/gui/steps/onezone/providers_sync.py:202: AssertionError