GUI acceptance tests using environment deployed from packages.

Build: #2692 failed

Job: Multiprovider basic failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]" in build 2,692 of Onedata Products - gui acceptance pkg - Multiprovider basic.
Description
user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_uploads_file_sees_its_size_writes_to_it_using_cdmi_and_sees_that_size_has_grown[1oz_2op_deployed]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

AssertionError: displayed chunk size 0 B in datadistribution modal does not match expected 20 B
request = <FixtureRequest for <Function 'test_user_uploads_file_sees_its_size_writes_to_it_using_cdmi_and_sees_that_size_has_grown[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)
<decorator-gen-749>:2: in assert_provider_chunk_in_data_distribution_size
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="6a6ebee4e09d09a612548f65780f5a3d")>}
browser_id = 'browser', size = '20 B', provider = 'dev-oneprovider-krakow'
modals = <class 'tests.gui.utils.common.modals.Modals'>
hosts = {'oneprovider-1': {'container-id': '6922b705a09ee1e10a75113e2b72002773177fb268faacd24cda808b84028534', 'hostname': 'de...5b270b07a79d8', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.1.235', 'name': 'dev-onezone', ...}}

    @wt(parsers.parse('user of {browser_id} sees that chunk bar for provider '
                      '"{provider}" is of {size} size'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_provider_chunk_in_data_distribution_size(selenium, browser_id, size,
                                                        provider, modals, hosts):
        driver = selenium[browser_id]
        provider = hosts[provider]['name']
        prov_rec = modals(driver).details_modal.data_distribution.providers[
            provider]
        distribution = prov_rec.distribution
        displayed_size = distribution.end
>       assert displayed_size == size, 'displayed chunk size {} in data' \
                                       'distribution modal does not match ' \
                                       'expected ' \
                                       '{}'.format(displayed_size, size)
E       AssertionError: displayed chunk size 0 B in datadistribution modal does not match expected 20 B

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