Build: #4 failed

Job: Transfers multi browser failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user migrates file from remote provider to current provider[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user migrates file from remote provider to current provider[1oz 2op deployed]" in build 4 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Transfers multi browser.
Description
user migrates file from remote provider to current provider[1oz 2op deployed]
Test class
gui.scenarios.test_oneprovider_transfers_multi
Method
test_user_migrates_file_from_remote_provider_to_current_provider[1oz_2op_deployed]
Duration
17 mins
Status
Failed (New Failure)

Error Log

AssertionError: Waiting transfers did not start
fixturefunc = <function wait_for_waiting_transfer_to_start at 0x7f5bdff17f60>
request = <FixtureRequest for <Function test_user_migrates_file_from_remote_provider_to_current_provider[1oz_2op_deployed]>>
kwargs = {'browser_id': 'browser1', 'op_container': <class 'tests.gui.utils.oneprovider.OPLoggedIn'>, 'selenium': {'browser1': ...Request 'selenium' for <Function test_user_migrates_file_from_remote_provider_to_current_provider[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)
/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="9c83ce3a90a8d2aea7163cf2431c6294")>, 'browser2': <tests.conft...bRequest 'selenium' for <Function test_user_migrates_file_from_remote_provider_to_current_provider[1oz_2op_deployed]>>}
browser_id = 'browser1'
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