GUI acceptance tests using environment deployed from packages.

Build: #2897 failed

Job: Onepanel different storages failed

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

user sees files content after modifying storage backend by setting new s3 bucket with copied content from the previous bucket[1oz 1op storages]: Test case result

The below summarizes the result of the test " user sees files content after modifying storage backend by setting new s3 bucket with copied content from the previous bucket[1oz 1op storages]" in build 2,897 of Onedata Products - gui acceptance pkg - Onepanel different storages.
Description
user sees files content after modifying storage backend by setting new s3 bucket with copied content from the previous bucket[1oz 1op storages]
Test class
gui.scenarios.test_onepanel_different_storages
Method
test_user_sees_files_content_after_modifying_storage_backend_by_setting_new_s3_bucket_with_copied_content_from_the_previous_bucket[1oz_1op_storages]
Jira Issue
Duration
2 mins
Status
Failed (Existing Failure)

Error Log

RuntimeError: no "space1" found in DataPage in Onezone page
request = <FixtureRequest for <Function 'test_user_sees_files_content_after_modifying_storage_backend_by_setting_new_s3_bucket_with_copied_content_from_the_previous_bucket[1oz_1op_storages]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/data.py:461: in go_to_filebrowser
    _click_on_option_of_space_on_left_sidebar_menu(
<decorator-gen-581>:2: in _click_on_option_of_space_on_left_sidebar_menu
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:306: in _click_on_option_of_space_on_left_sidebar_menu
    page = click_on_space_in_menu_list(oz_page, driver, space_name, force=force)
tests/gui/steps/onezone/spaces.py:40: in click_on_space_in_menu_list
    if not page.spaces_header_list[name].is_active():
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.core.web_objects.PageObjectsSequence object at 0x7f05dd831580>
sel = 'space1'

    def __getitem__(self, sel):
        if isinstance(sel, int):
            item = self._getitem_by_idx(sel)
            if item:
                return self.cls(self.driver, item, self.parent)
            else:
                raise RuntimeError('Index out of bound. Requested item at '
                                   '{idx} while limit is {limit} in '
                                   '{parent}'.format(idx=sel, limit=len(self),
                                                     parent=self.parent))
        elif isinstance(sel, str):
            item = self._getitem_by_id(sel)
            if item:
                return item
            else:
>               raise RuntimeError('no "{id}" found in '
                                   '{parent}'.format(id=sel,
                                                     parent=self.parent))
E               RuntimeError: no "space1" found in DataPage in Onezone page

tests/gui/utils/core/web_objects.py:83: RuntimeError