GUI acceptance tests using environment deployed from packages.

Build: #2691 failed

Job: Multiprovider multiuser failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]" in build 2,691 of Onedata Products - gui acceptance pkg - Multiprovider multiuser.
Description
user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_multiuser
Method
test_user_uploads_file_on_one_provider_sees_its_distribution_downloads_on_other_provider_and_again_sees_its_distribution[1oz_2op_deployed]
Duration
6 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: distribution for dev-oneprovider-krakow is not entirely filled
request = <FixtureRequest for <Function 'test_user_uploads_file_on_one_provider_sees_its_distribution_downloads_on_other_provider_and_again_sees_its_distribution[1oz_2op_deployed]'>>

    @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)
tests/gui/meta_steps/oneprovider/common.py:103: in wt_assert_file_chunks
    _assert_file_chunks(selenium, browser_id, hosts, desc, modals)
<decorator-gen-995>:2: in _assert_file_chunks
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/oneprovider/common.py:118: in _assert_file_chunks
    assert_provider_chunk_in_data_distribution_filled(selenium,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-715>:2: in assert_provider_chunk_in_data_distribution_filled
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="92c23181c37ac8845409d312723049f8")>, 'space_owner_browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="15c780a45ee24c83c2319d8b9993f4c5")>}
browser_id = 'space_owner_browser', provider = 'dev-oneprovider-krakow'
modals = <class 'tests.gui.utils.common.modals.Modals'>
hosts = {'oneprovider-1': {'container-id': 'bf2e5ed5d508e103b858e3261176d682a937b390fc6ce431fb62b28973856945', 'hostname': 'de...20ab2e96ab5bd6', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.2.57', 'name': 'dev-onezone', ...}}

    @wt(parsers.parse('user of {browser_id} sees that chunk bar for provider '
                      '"{provider}" is entirely filled'))
    @repeat_failed(timeout=WAIT_BACKEND*2)
    def assert_provider_chunk_in_data_distribution_filled(selenium, browser_id,
                                                          provider, modals, hosts):
        driver = selenium[browser_id]
        provider = hosts[provider]['name']
        data_distribution = modals(driver).details_modal.data_distribution
        distribution = data_distribution.providers[provider].distribution
        size = data_distribution.size()
        chunks = distribution.chunks(size)
>       assert len(chunks) == 1, (f'distribution for {provider} is not '
                                  f'entirely filled')
E       AssertionError: distribution for dev-oneprovider-krakow is not entirely filled

tests/gui/steps/oneprovider/data_tab.py:420: AssertionError