GUI acceptance tests using environment deployed from packages.

Build: #863 failed

Job: Shares basic failed

user does not see files in single share view in full onezone interface after removing them from shared directory[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user does not see files in single share view in full onezone interface after removing them from shared directory[1oz 1op deployed]" in build 863 of Onedata Products - gui acceptance pkg - Chrome shares basic tests.
Description
user does not see files in single share view in full onezone interface after removing them from shared directory[1oz 1op deployed]
Test class
gui.scenarios.test_shares_basic
Method
test_user_does_not_see_files_in_single_share_view_in_full_onezone_interface_after_removing_them_from_shared_directory[1oz_1op_deployed]
Jira Issue
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError: numbers of items are not equal
request = <FixtureRequest for <Function 'test_user_does_not_see_files_in_single_share_view_in_full_onezone_interface_after_removing_them_from_shared_directory[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:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-476>:2: in assert_only_given_items_in_file_browser
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser', item_list = '["dir3", "file1", "file2"]'
tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': ...7-5acf329a7056")>}, 'file_browser': <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7fa20bb145f8>}})

    @wt(parsers.parse('user of {browser_id} sees only items named {item_list}'
                      ' in file browser'))
    @repeat_failed(timeout=WAIT_FRONTEND)
    def assert_only_given_items_in_file_browser(browser_id, item_list, tmp_memory):
        file_browser = tmp_memory[browser_id]['file_browser']
        files = {f.name for f in file_browser.data}
        items = parse_seq(item_list)
>       assert len(files) == len(items), 'numbers of items are not equal'
E       AssertionError: numbers of items are not equal

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