Build: #4 failed

Job: Multiprovider multiuser failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]" in build 4 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Multiprovider multiuser.
Description
user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_multiuser
Method
test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_deployed]
Duration
18 mins
Status
Failed (New Failure)

Error Log

AssertionError: Waiting transfers did not start
fixturefunc = <function wait_for_waiting_transfer_to_start at 0x7fa5a3cd65c0>
request = <FixtureRequest for <Function test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_deployed]>>
kwargs = {'browser_id': 'space_owner_browser', 'op_container': <class 'tests.gui.utils.oneprovider.OPLoggedIn'>, 'selenium': {'...p_deployed]>>, 'space_owner_browser': <tests.conftest.ChromeWithAllLogs (session="0cd968a8f9d2a6cf020cc20272f6c783")>}}

    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)
/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 = {'browser1': <tests.conftest.ChromeWithAllLogs (session="982c6ccc42ac73330aed61515ea5c7c9")>, 'request': <SubRequest '...op_deployed]>>, 'space_owner_browser': <tests.conftest.ChromeWithAllLogs (session="0cd968a8f9d2a6cf020cc20272f6c783")>}
browser_id = 'space_owner_browser'
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>

    @wt(parsers.re('user of (?P<browser_id>.*) waits for all transfers to start'))
    @repeat_failed(interval=1, timeout=420,
                   exceptions=(AssertionError, StaleElementReferenceException))
    def wait_for_waiting_transfer_to_start(selenium, browser_id, op_container):
>       assert len(op_container(selenium[browser_id]).transfers.waiting) == 0, \
            'Waiting transfers did not start'
E       AssertionError: Waiting transfers did not start

tests/gui/steps/oneprovider/transfers.py:114: AssertionError