Build: #4 failed

Job: Transfers multi browser failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user replicates directory with 2 files on different providers to current provider[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user replicates directory with 2 files on different providers 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 replicates directory with 2 files on different providers to current provider[1oz 2op deployed]
Test class
gui.scenarios.test_oneprovider_transfers_multi
Method
test_user_replicates_directory_with_2_files_on_different_providers_to_current_provider[1oz_2op_deployed]
Duration
12 mins
Status
Failed (New Failure)

Error Log

AssertionError: Ongoing transfers did not finish
fixturefunc = <function wait_for_ongoing_tranfers_to_finish at 0x7f5bdff4c5e0>
request = <FixtureRequest for <Function test_user_replicates_directory_with_2_files_on_different_providers_to_current_provider[1oz_2op_deployed]>>
kwargs = {'browser_id': 'browser1', 'op_container': <class 'tests.gui.utils.oneprovider.OPLoggedIn'>, 'selenium': {'browser1': ... <Function test_user_replicates_directory_with_2_files_on_different_providers_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="7f5eb34bd7474d546d06799426a8a374")>, 'browser2': <tests.conft...r <Function test_user_replicates_directory_with_2_files_on_different_providers_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 finish'))
    @repeat_failed(interval=1, timeout=240,
                   exceptions=(AssertionError, StaleElementReferenceException))
    def wait_for_ongoing_tranfers_to_finish(selenium, browser_id, op_container):
>       assert len(op_container(selenium[browser_id]).transfers.ongoing) == 0, \
            'Ongoing transfers did not finish'
E       AssertionError: Ongoing transfers did not finish

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