Build: #9 failed

Job: Multiprovider archives failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees that archives data is placed on the provider creating the archive via size statistics[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user sees that archives data is placed on the provider creating the archive via size statistics[1oz 2op deployed]" in build 9 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Multiprovider archives.
Description
user sees that archives data is placed on the provider creating the archive via size statistics[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_archives
Method
test_user_sees_that_archives_data_is_placed_on_the_provider_creating_the_archive_via_size_statistics[1oz_2op_deployed]
Duration
10 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: logical size is 0 B instead of 15 B!
fixturefunc = <function check_size_stats_for_archive at 0x7f6c99941580>
request = <FixtureRequest for <Function test_user_sees_that_archives_data_is_placed_on_the_provider_creating_the_archive_via_size_statistics[1oz_2op_deployed]>>
kwargs = {'browser_id': 'browser', 'config': 'logical size: 15 B\ntotal physical size: 15 B\ncontain counter: 1 file, 1 directo...t_user_sees_that_archives_data_is_placed_on_the_provider_creating_the_archive_via_size_statistics[1oz_2op_deployed]>>}}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/archives.py:655: in check_size_stats_for_archive
    check_size_statistic_in_dir_details(
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser': <tests.conftest.ChromeWithAllLogs (session="ab26110e1f8ae9782cf7cb3440c77e11")>, 'request': <SubRequest 's...st_user_sees_that_archives_data_is_placed_on_the_provider_creating_the_archive_via_size_statistics[1oz_2op_deployed]>>}
modals = <class 'tests.gui.utils.common.modals.Modals'>, browser_id = 'browser'
elem_type = 'logical size', expected = '15 B'

    @repeat_failed(interval=1, timeout=40, exceptions=AssertionError)
    def check_size_statistic_in_dir_details(
        selenium, modals, browser_id, elem_type, expected
    ):
        driver = selenium[browser_id]
        size = getattr(modals(driver).details_modal.size_statistics, transform(elem_type))
    
>       assert size == expected, f"{elem_type} is {size} instead of {expected}!"
E       AssertionError: logical size is 0 B instead of 15 B!

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