GUI acceptance tests using environment deployed from packages.

Build: #2953 failed

Job: Onezone harvesters privileges add and remove failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user successfully removes space from harvester with remove space privilege[1oz 1op elasticsearch]: Test case result

The below summarizes the result of the test " user successfully removes space from harvester with remove space privilege[1oz 1op elasticsearch]" in build 2,953 of Onedata Products - gui acceptance pkg - Onezone harvesters privileges add and remove.
Description
user successfully removes space from harvester with remove space privilege[1oz 1op elasticsearch]
Test class
gui.scenarios.test_onezone_harvesters_privileges_add_remove
Method
test_user_successfully_removes_space_from_harvester_with_remove_space_privilege[1oz_1op_elasticsearch]
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: did not manage to expand main panel
fixturefunc = <function join_space_to_harvester at 0x7f25d0f73240>
request = <FixtureRequest for <Function test_user_successfully_removes_space_from_harvester_with_remove_space_privilege[1oz_1op_elasticsearch]>>
kwargs = {'browser_id': 'browser1', 'harvester_name': 'harvester21', 'modals': <class 'tests.gui.utils.common.modals.Modals'>, 'oz_page': <class 'tests.gui.utils.onezone.OZLoggedIn'>, ...}

    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)
tests/gui/meta_steps/onezone/harvesters.py:180: in join_space_to_harvester
    click_on_option_in_the_sidebar(selenium, browser_id, option2, oz_page)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/steps/onezone/spaces.py:170: in click_on_option_in_the_sidebar
    _click_on_option_in_the_sidebar(selenium, browser_id, option, oz_page, force=True)
/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)
tests/gui/steps/onezone/spaces.py:180: in _click_on_option_in_the_sidebar
    page = oz_page(driver).get_page_and_click(name)
tests/gui/utils/onezone/__init__.py:69: in get_page_and_click
    return get_page(self, item)
tests/gui/utils/onezone/__init__.py:96: in get_page
    wait_for_panel_to_expand(oz_page)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

oz_page = <tests.gui.utils.onezone.OZLoggedIn object at 0x7f25d1b70ef0>

    def wait_for_panel_to_expand(oz_page):
        for _ in range(20):
            if oz_page.get_panels()[0].text == "DATA":
                return
            time.sleep(0.1)
>       raise RuntimeError("did not manage to expand main panel")
E       RuntimeError: did not manage to expand main panel

tests/gui/utils/onezone/__init__.py:110: RuntimeError