GUI acceptance tests using environment deployed from packages.

Build: #2954 failed

Job: Multiprovider basic failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user successfully uploads different files to two oneproviders and sees that they are accessible[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user successfully uploads different files to two oneproviders and sees that they are accessible[1oz 2op deployed]" in build 2,954 of Onedata Products - gui acceptance pkg - Multiprovider basic.
Description
user successfully uploads different files to two oneproviders and sees that they are accessible[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_successfully_uploads_different_files_to_two_oneproviders_and_sees_that_they_are_accessible[1oz_2op_deployed]
Duration
1 min
Status
Failed (Existing Failure)

Error Log

AssertionError: number of files uploaded 0 is not equal 2
fixturefunc = <function assert_number_of_files_in_uploaded_files_list at 0x7f787cf7e200>
request = <FixtureRequest for <Function test_user_successfully_uploads_different_files_to_two_oneproviders_and_sees_that_they_are_accessible[1oz_2op_deployed]>>
kwargs = {'browser_id': 'browser', 'number': '2', 'oz_page': <class 'tests.gui.utils.onezone.OZLoggedIn'>, 'selenium': {'browse...t_user_successfully_uploads_different_files_to_two_oneproviders_and_sees_that_they_are_accessible[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 = {'browser': <tests.conftest.ChromeWithAllLogs (session="77b10ce39b4753fb142b60bff409e8e4")>, 'request': <SubRequest 's...st_user_successfully_uploads_different_files_to_two_oneproviders_and_sees_that_they_are_accessible[1oz_2op_deployed]>>}
browser_id = 'browser', oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'>
number = 2

    @wt(parsers.parse("user of {browser_id} sees that number of uploads is equal {number}"))
    @repeat_failed(timeout=2 * WAIT_BACKEND)
    def assert_number_of_files_in_uploaded_files_list(
        selenium, browser_id, oz_page, number: int
    ):
        driver = selenium[browser_id]
        driver.switch_to.default_content()
        uploaded_files_list = oz_page(driver)[
            "uploads"
        ].uploaded_content_page.uploaded_items_list
>       assert number == len(
            uploaded_files_list
        ), f"number of files uploaded {len(uploaded_files_list)} is not equal {number}"
E       AssertionError: number of files uploaded 0 is not equal 2

tests/gui/steps/oneprovider/uploads.py:44: AssertionError