GUI acceptance tests using environment deployed from packages.

Build: #13 failed

Job: Chrome onezone providers sync test failed

user sees right capacity sizes for each provider in capacity allocation bar in space providers view[1oz 3op providers sync]: Test case result

The below summarizes the result of the test " user sees right capacity sizes for each provider in capacity allocation bar in space providers view[1oz 3op providers sync]" in build 13 of Onedata Products - gui acceptance pkg - release-22.02.0-alpha1 - Chrome onezone providers sync test.
Description
user sees right capacity sizes for each provider in capacity allocation bar in space providers view[1oz 3op providers sync]
Test class
gui.scenarios.test_onezone_providers_sync
Method
test_user_sees_right_capacity_sizes_for_each_provider_in_capacity_allocation_bar_in_space_providers_view[1oz_3op_providers_sync]
Duration
3 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Expected provider size: 5 GiB, actual: 5 GIB FREE OF 5 GIB
request = <FixtureRequest for <Function 'test_user_sees_right_capacity_sizes_for_each_provider_in_capacity_allocation_bar_in_space_providers_view[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)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="6c7d30dc0f25712ba15c01468633a723")>}
browser_id = 'browser', size = '5 GiB', provider = 'oneprovider-1'
oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'>
hosts = {'oneprovider-1': {'container-id': '91b599aa3d7a4d785716783bedf7619ee6b757619c8fa4c2e0f3a4045459dcf2', 'hostname': 'de...4ae150605402ce1', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.7', 'name': 'dev-onezone', ...}}

    @wt(parsers.parse('user of {browser_id} sees that "{provider}" capacity is '
                      '{size}'))
    def assert_provider_size(selenium, browser_id, size, provider, oz_page, hosts):
        driver = selenium[browser_id]
        page = oz_page(driver)['providers']
        provider_name = hosts[provider]['name'].upper()
        actual = page.capacity_alloc.space_bars[provider_name].capacity
>       assert actual == size.upper(), (f'Expected provider size: {size}, actual: '
                                        f'{actual}')
E       AssertionError: Expected provider size: 5 GiB, actual: 5 GIB FREE OF 5 GIB

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