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

Build: #594 failed

Job: Onepanel failed

user supports space with storage sync and enabled options mount in root[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " user supports space with storage sync and enabled options mount in root[1oz 1op 1oc-RESt-web GUi-RESt]" in build 594 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
user supports space with storage sync and enabled options mount in root[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[1oz_1op_1oc-REST-web GUI-REST]
Duration
2 mins
Status
Failed (New Failure)

Error Log

AssertionError: dir211 not found in /space2/dir2/dir21
client1 = 'REST', client2 = 'web GUI', client3 = 'REST'
request = <FixtureRequest for <Function 'test_user_supports_space_with_storage_sync_and_enabled_options_mount_in_root[1oz_1op_1oc-REST-web GUI-REST]'>>

    from tests.gui.steps.oneprovider.file_browser import *
>   from tests.gui.steps.oneprovider.metadata import *

tests/mixed/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-660>:2: in assert_space_content_in_op
    ???
tests/utils/utils.py:79: in wrapper
    return fun(*args, **kwargs)
tests/mixed/steps/onepanel_basic.py:561: in assert_space_content_in_op
    spaces, host)
tests/mixed/steps/rest/oneprovider/data.py:61: in assert_space_content_in_op_rest
    assert_file_content_fun)
tests/mixed/utils/data.py:52: in check_files_tree
    assert_file_content_fun)
tests/mixed/utils/data.py:52: in check_files_tree
    assert_file_content_fun)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

subtree = ['dir211', {'file2.txt': 11111}], children = []
cwd = '/space2/dir2/dir21'
ls_fun = <functools.partial object at 0x7f90b42a5788>
assert_file_content_fun = <functools.partial object at 0x7f90b42a5940>

    def check_files_tree(subtree, children, cwd, ls_fun, assert_file_content_fun):
        """This function recursively checks files tree:
            - for directory it checks if all elements listed in children are
            present. Then if any directory listed in children has description of
            its file tree, function make recursive call for that subdirectory.
            - for file if description is specified function checks if content
            of file is the same as provided
        """
        for item in subtree:
            try:
                [(item_name, item_desc)] = item.items()
            except AttributeError:
                assert_msg = '{} not found in {}'.format(item, cwd)
>               assert item in children, assert_msg
E               AssertionError: dir211 not found in /space2/dir2/dir21

tests/mixed/utils/data.py:28: AssertionError