GUI acceptance tests using environment deployed from packages.
Build: #2669 failed
Job: Multiprovider basic was successful
user sees file is not visible after its upload has been canceled[1oz 2op deployed]: Test case result
The below summarizes the result of the test " user sees file is not visible after its upload has been canceled[1oz 2op deployed]" in build 2,669 of Onedata Products - gui acceptance pkg - Multiprovider basic.
- Description
- user sees file is not visible after its upload has been canceled[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_basic
- Method
- test_user_sees_file_is_not_visible_after_its_upload_has_been_canceled[1oz_2op_deployed]
- Jira Issue
-
- Duration
- 5 mins
- Status
- Failed (Existing Failure)
Error Log
AssertionError: There are 202 files in file browser when should be 200 request = <FixtureRequest for <Function 'test_user_sees_file_is_not_visible_after_its_upload_has_been_canceled[1oz_2op_deployed]'>> @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) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser_id = 'browser', count = 200 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 0x7fd2dd782e50>}}) @wt(parsers.parse('user of {browser_id} scrolls to the bottom of file browser ' 'and sees there are {count} files')) def count_files_while_scrolling(browser_id, count: int, tmp_memory): browser = tmp_memory[browser_id]['file_browser'] detected_files = [] visible_files = browser.names_of_visible_elems() new_files = [f for f in visible_files if f] while new_files: detected_files.extend(new_files) browser.scroll_visible_fragment() visible_files = browser.names_of_visible_elems() new_files = [f for f in visible_files if f and f not in detected_files] else: err_msg = (f'There are {len(detected_files)} files in file browser ' f'when should be {count}') > assert len(detected_files) == count, err_msg E AssertionError: There are 202 files in file browser when should be 200 tests/gui/steps/oneprovider/file_browser.py:315: AssertionError