Build: #9 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 9 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
25 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Waiting transfers did not start
fixturefunc = <function wait_for_waiting_transfer_to_start at 0x7f2f508f9da0>
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="f2fff15457a4f6bcc234239be71e861a")>}}

    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="86655748816085983997160b830a5d04")>, 'request': <SubRequest '...op_deployed]>>, 'space_owner_browser': <tests.conftest.ChromeWithAllLogs (session="f2fff15457a4f6bcc234239be71e861a")>}
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:167: AssertionError