GUI acceptance tests using environment deployed from packages.

Build: #1612 failed

Job: Storage sync failed

user does not see files and directories that have been removed in storage mount point when detect deletions option was enabled[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user does not see files and directories that have been removed in storage mount point when detect deletions option was enabled[1oz 1op deployed]" in build 1,612 of Onedata Products - gui acceptance pkg - Chrome storage sync tests.
Description
user does not see files and directories that have been removed in storage mount point when detect deletions option was enabled[1oz 1op deployed]
Test class
gui.scenarios.test_storage_sync
Method
test_user_does_not_see_files_and_directories_that_have_been_removed_in_storage_mount_point_when_detect_deletions_option_was_enabled[1oz_1op_deployed]
Duration
5 mins
Status
Failed (New Failure)

Error Log

AssertionError: displayed number of files 1 does not match expected 10
request = <FixtureRequest for <Function 'test_user_does_not_see_files_and_directories_that_have_been_removed_in_storage_mount_point_when_detect_deletions_option_was_enabled[1oz_1op_deployed]'>>

    @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:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/gui/meta_steps/oneprovider/data.py:160: in check_file_structure_in_file_browser
    op_container, tmpdir)
tests/gui/meta_steps/oneprovider/data.py:192: in _check_files_tree
    selenium, op_container, tmpdir)
tests/gui/meta_steps/oneprovider/data.py:187: in _check_files_tree
    user, item_subtree, tmp_memory)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-695>:2: in assert_num_of_files_are_displayed_in_file_browser
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser2', num = 10
tmp_memory = defaultdict(<class 'dict'>, {'browser1': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {'token': 'MDAzM2xvY2F0...': {'modal': None}, 'file_browser': <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7fa97618d8d0>}})

    @wt(parsers.re(r'user of (?P<browser_id>.+?) sees that there '
                   r'(is 1|are (?P<num>\d+)) items? in file browser'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def assert_num_of_files_are_displayed_in_file_browser(browser_id, num,
                                                          tmp_memory):
        browser = tmp_memory[browser_id]['file_browser']
        err_msg = 'displayed number of files {} does not match expected {}'
        files_num = browser.data.count()
        num = 1 if num is None else int(num)
>       assert files_num == num, err_msg.format(files_num, num)
E       AssertionError: displayed number of files 1 does not match expected 10

tests/gui/steps/oneprovider/file_browser.py:190: AssertionError