GUI acceptance tests using environment deployed from packages.

Build: #7 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 7 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
11 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Changes counter for oneprovider-3 - oneprovider-2 did not raise (['4022', '4022'] vs ['4022', '4022']
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-1085>:2: in compare_changes_counter
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

horizontal = 'oneprovider-3', vertical = 'oneprovider-2'
tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': ...84d696518>, 'changes_counter': {'oneprovider-3': {'oneprovider-1': ['5', '4254'], 'oneprovider-2': ['4022', '4022']}}})

    @wt(parsers.parse('user of {browser_id} sees that value of changes counter for '
                      '"{horizontal}" - "{vertical}" intersection is greater '
                      'than before'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def compare_changes_counter(horizontal, vertical, tmp_memory):
        popup = tmp_memory['popup']
        counter = popup.changes_counter.split('/')
        label = 'changes_counter'
        prev_counter = tmp_memory[label][horizontal][vertical]
    
        assert (int(prev_counter[1]) < int(counter[1]) or
                int(prev_counter[0]) < int(counter[0])), (
>           f'Changes counter for {horizontal} - {vertical} did not raise '
            f'({prev_counter} vs {counter}')
E       AssertionError: Changes counter for oneprovider-3 - oneprovider-2 did not raise (['4022', '4022'] vs ['4022', '4022']

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