Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #1554 failed

Job: Chrome files metadata tests failed

user sets metadata[1oz 1op 1oc-web GUi-RESt-basic-attr=val]: Test case result

The below summarizes the result of the test " user sets metadata[1oz 1op 1oc-web GUi-RESt-basic-attr=val]" in build 1,554 of Onedata Products - mixed acceptance pkg - Chrome files metadata tests.
Description
user sets metadata[1oz 1op 1oc-web GUi-RESt-basic-attr=val]
Test class
mixed.scenarios.test_files_metadata
Method
test_user_sets_metadata[1oz_1op_1oc-web GUI-REST-basic-attr=val]
Duration
1 min
Status
Failed (New Failure)

Error Log

RuntimeError: no  with "Files" text found in Space in DataPage in Onezone page
selenium = {'browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="2e1579ddd68eb01601dcd4a6729a047d")>, 'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="2e1579ddd68eb01601dcd4a6729a047d")>}
browser_id = 'user1', path = 'file1', space = 'space1'
tmp_memory = defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'...l': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}})
oz_page = <class 'tests.gui.utils.onezone.OZLoggedIn'>
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>

    def _click_menu_for_elem_somewhere_in_file_browser(selenium, browser_id, path,
                                                       space, tmp_memory, oz_page,
                                                       op_container):
        item_name, _ = get_item_name_and_containing_dir_path(path)
    
        try:
            go_to_path_without_last_elem(browser_id, tmp_memory, path)
>           click_menu_for_elem_in_file_browser(browser_id, item_name, tmp_memory)

tests/gui/meta_steps/oneprovider/data.py:37: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

args = ('user1', 'file1', defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz...': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}}))
kwargs = {}
ba = <BoundArguments (browser_id='user1', item_name='file1', tmp_memory=defaultdict(<class 'dict'>, {'user1': {'shares': {}...: None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}}))>
param = <Parameter "tmp_memory">, ann = <class 'inspect._empty'>

    @wraps(fun)
    def wrapper(*args, **kwargs):
        ba = sig.bind(*args, **kwargs)
        ba.apply_defaults()
    
        for param in parameters.values():
            ann = param.annotation
            if ann is not inspect.Parameter.empty:
                value = ba.arguments[param.name]
                try:
                    if not isinstance(value, ann):
                        ba.arguments[param.name] = ann(value)
                except Exception as ex:
                    msg = f"Cannot cast '{param.name}' <{value}> to {ann}"
                    raise ValueError(msg) from ex
    
>       return fun(*ba.args, **ba.kwargs)

tests/utils/bdd_utils.py:77: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

args = ('user1', 'file1', defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz...': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}}))
kwargs = {}
ba = <BoundArguments (browser_id='user1', item_name='file1', tmp_memory=defaultdict(<class 'dict'>, {'user1': {'shares': {}...: None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}}))>
param = <Parameter "tmp_memory">, ann = <class 'inspect._empty'>

    @wraps(fun)
    def wrapper(*args, **kwargs):
        ba = sig.bind(*args, **kwargs)
        ba.apply_defaults()
    
        for param in parameters.values():
            ann = param.annotation
            if ann is not inspect.Parameter.empty:
                value = ba.arguments[param.name]
                try:
                    if not isinstance(value, ann):
                        ba.arguments[param.name] = ann(value)
                except Exception as ex:
                    msg = f"Cannot cast '{param.name}' <{value}> to {ann}"
                    raise ValueError(msg) from ex
    
>       return fun(*ba.args, **ba.kwargs)

tests/utils/bdd_utils.py:77: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'user1', item_name = 'file1'
tmp_memory = defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'...l': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}})

>   ???

<decorator-gen-105>:2: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

fun = <function click_menu_for_elem_in_file_browser at 0x7f8643b6b0d0>
args = ('user1', 'file1', defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz...': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}}))
kwargs = {}, now = 1621606028.5811245, limit = 1621606032.5811245
i = 1621606032.58988

    @decorator
    def wrapper(fun, *args, **kwargs):
        now = time()
        limit, i = (now + timeout, now) if timeout else (attempts, 0)
    
        while i < limit:
            try:
                result = fun(*args, **kwargs)
            except exceptions:
                sleep(interval)
                i = time() if timeout else i+1
                continue
            else:
                return result
>       return fun(*args, **kwargs)

tests/utils/utils.py:90: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'user1', item_name = 'file1'
tmp_memory = defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'...l': None}}, 'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}}})

    @wt(parsers.parse('user of {browser_id} clicks on menu '
                      'for "{item_name}" directory in file browser'))
    @wt(parsers.parse('user of {browser_id} clicks on menu '
                      'for "{item_name}" file in file browser'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def click_menu_for_elem_in_file_browser(browser_id, item_name, tmp_memory):
>       browser = tmp_memory[browser_id]['file_browser']
E       KeyError: 'file_browser'

tests/gui/steps/oneprovider/file_browser.py:348: KeyError

During handling of the above exception, another exception occurred:

request = <FixtureRequest for <Function 'test_user_sets_metadata[1oz_1op_1oc-web GUI-REST-basic-attr=val]'>>

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

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/mixed/steps/data_basic.py:541: in set_metadata_in_op
    space, tab_name, val, modals, oz_page, item)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-453>:2: in set_metadata_in_op_gui
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/meta_steps/oneprovider/metadata.py:100: in set_metadata_in_op_gui
    op_container)
tests/gui/meta_steps/oneprovider/data.py:406: in open_modal_for_file_browser_item
    op_container)
tests/gui/meta_steps/oneprovider/data.py:40: in _click_menu_for_elem_somewhere_in_file_browser
    tmp_memory, space)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/data.py:396: in go_to_filebrowser
    oz_page)
tests/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-323>:2: in click_on_option_of_space_on_left_sidebar_menu
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/onezone/spaces.py:272: in click_on_option_of_space_on_left_sidebar_menu
    transform(option)).click()
tests/gui/utils/core/web_elements.py:58: in __get__
    elem = super(WebItem, self).__get__(instance, owner)
tests/gui/utils/core/web_elements.py:52: in __get__
    lambda: self._format_msg(err_msg, instance,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

web_elem_root = <selenium.webdriver.remote.webelement.WebElement (session="2e1579ddd68eb01601dcd4a6729a047d", element="476ce690-dce1-4ac3-9512-9b420301afa9")>
css_sel = '.one-list-level-2 .item-header', text = 'Files'
err_msg = 'no  with "Files" text found in Space in DataPage in Onezone page'

    def find_web_elem_with_text(web_elem_root, css_sel, text, err_msg):
        items = web_elem_root.find_elements_by_css_selector(css_sel)
        _scroll_to_css_sel(web_elem_root, css_sel)
        for item in items:
            if item.text.lower() == text.lower():
                return item
        else:
            with suppress(TypeError):
                err_msg = err_msg()
>           raise RuntimeError(err_msg)
E           RuntimeError: no  with "Files" text found in Space in DataPage in Onezone page

tests/gui/utils/generic.py:111: RuntimeError