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

Build: #2728 failed

Job: Files movement failed

user moves nonempty file using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-web GUi-RESt]: Test case result

The below summarizes the result of the test " user moves nonempty file using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-web GUi-RESt]" in build 2,728 of Onedata Products - mixed acceptance pkg - Chrome files movement tests.
Description
user moves nonempty file using client2 and using client1 sees that its content has not changed[1oz 1op 1oc-web GUi-RESt]
Test class
mixed.scenarios.test_files_movement
Method
test_user_moves_nonempty_file_using_client2_and_using_client1_sees_that_its_content_has_not_changed[1oz_1op_1oc-web GUI-REST]
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError:  not found on 0th position in Breadcrumbs(space1/dir1/dir2) in file browser in Oneprovider page
subtree = ['dir2'], user = 'user1'
tmp_memory = defaultdict(<class 'dict'>, {'user1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'...r.file_browser._FileBrowser object at 0x7fdbc28670a0>}, 'config': '- dir1:\n    - dir2:\n        - 20B-0.txt\n- dir3'})
cwd = '/dir1'
selenium = {'user1': <selenium.webdriver.chrome.webdriver.WebDriver (session="027d9748882f761fe9811fdf64b1fadd")>}
op_container = <class 'tests.gui.utils.oneprovider.OPLoggedIn'>
tmpdir = local('/tmp/pytest-of-bamboo/pytest-0/test_user_moves_nonempty_file_4')
which_browser = 'file browser', description = ''

    def _check_files_tree(subtree, user, tmp_memory, cwd, selenium, op_container,
                          tmpdir, which_browser='file browser', description=''):
        for item in subtree:
            try:
>               [(item_name, item_subtree)] = item.items()
E               AttributeError: 'str' object has no attribute 'items'

tests/gui/meta_steps/oneprovider/data.py:198: AttributeError

During handling of the above exception, another exception occurred:

request = <FixtureRequest for <Function 'test_user_moves_nonempty_file_using_client2_and_using_client1_sees_that_its_content_has_not_changed[1oz_1op_1oc-web GUI-REST]'>>

    @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/mixed/steps/data_basic.py:617: in assert_directory_structure_in_op
    assert_space_content_in_op_gui(config, selenium, user, op_container,
tests/gui/meta_steps/oneprovider/data.py:267: in assert_space_content_in_op_gui
    _check_files_tree(yaml.load(config), user, tmp_memory, '', selenium,
tests/gui/meta_steps/oneprovider/data.py:232: in _check_files_tree
    _check_files_tree(item_subtree, user, tmp_memory, path_tmp,
tests/gui/meta_steps/oneprovider/data.py:211: in _check_files_tree
    change_cwd_using_breadcrumbs_in_data_tab_in_op(selenium,
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-401>:2: in change_cwd_using_breadcrumbs_in_data_tab_in_op
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/data_tab.py:134: in change_cwd_using_breadcrumbs_in_data_tab_in_op
    breadcrumbs.chdir(path, archive)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <tests.gui.utils.oneprovider.breadcrumbs._Breadcrumbs object at 0x7fdbc2875880>
path = ['', 'dir1'], archive = False

    def chdir(self, path, archive=False):
        if not path or path == '/':
            self.space_root()
        else:
            path = path.split('/')
            breadcrumbs = self._breadcrumbs
            assert len(path) <= len(breadcrumbs), (f'specified path {path} '
                                                   f'exceeded one displayed in '
                                                   f'breadcrumbs {self}')
    
            i, dir1, dir2 = None, None, None
            err_msg = '{dir} not found on {idx}th position in {item}'
            if archive:
                breadcrumbs = [elem for i, elem in enumerate(breadcrumbs)
                               if i != 1]
    
            breadcrumbs_name = [item.text for item in breadcrumbs]
    
            # works only if '...' is after archive name in path
            if '...' in breadcrumbs_name:
                path[1] = '...'
                if len(breadcrumbs_name) < len(path):
                    for i in range(2, 2+(len(path)-len(breadcrumbs))):
                        path.remove(path[i])
    
                for i, (dir1, dir2) in enumerate(izip(path, breadcrumbs_name)):
                    assert dir1 == dir2, err_msg.format(dir=dir1, idx=i,
                                                        item=self)
                breadcrumbs[breadcrumbs_name.index(dir2)-1].click()
            else:
                for i, (dir1, dir2) in enumerate(izip(path, breadcrumbs)):
>                   assert dir1 == dir2.text, err_msg.format(dir=dir1, idx=i,
                                                             item=self)
E                   AssertionError:  not found on 0th position in Breadcrumbs(space1/dir1/dir2) in file browser in Oneprovider page

tests/gui/utils/oneprovider/breadcrumbs.py:66: AssertionError