GUI acceptance tests using environment deployed from packages.
Build: #940 failed
Job: Oneprovider data tab failed
user selects bunch of files using shift[1oz 1op deployed]: Test case result
The below summarizes the result of the test " user selects bunch of files using shift[1oz 1op deployed]" in build 940 of Onedata Products - gui acceptance pkg - Chrome oneprovider data tab tests.
- Description
- user selects bunch of files using shift[1oz 1op deployed]
- Test class
- gui.scenarios.test_oneprovider_data_tab
- Method
- test_user_selects_bunch_of_files_using_shift[1oz_1op_deployed]
- Duration
- 1 min
- Status
- Failed (New Failure)
Error Log
RuntimeError: item(s) not in browser or not in specified order ["file1", "file2", "file3", "file4", "file5", "file6", "file7"] starting from file1 request = <FixtureRequest for <Function 'test_user_selects_bunch_of_files_using_shift[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-530>:2: in assert_presence_in_file_browser_with_order ??? tests/utils/utils.py:80: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser_id = 'browser' item_list = '["file1", "file2", "file3", "file4", "file5", "file6", "file7"]' tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': {'modal': None}, 'file_browser': <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7fe2682569e8>}}) @wt(parsers.re('user of (?P<browser_id>.+?) sees items? named ' '(?P<item_list>.+?) in file browser in given order')) @repeat_failed(timeout=WAIT_BACKEND) def assert_presence_in_file_browser_with_order(browser_id, item_list, tmp_memory): browser = tmp_memory[browser_id]['file_browser'] items = iter(parse_seq(item_list)) curr_item = next(items) for item in browser.data: if item.name == curr_item: try: curr_item = next(items) except StopIteration: return raise RuntimeError('item(s) not in browser or not in specified order ' '{order} starting from {item}'.format(order=item_list, > item=curr_item)) E RuntimeError: item(s) not in browser or not in specified order ["file1", "file2", "file3", "file4", "file5", "file6", "file7"] starting from file1 tests/gui/steps/oneprovider/file_browser.py:127: RuntimeError