GUI acceptance tests using environment deployed from packages.
Build: #2015 failed
Job: Multiprovider multiuser failed
user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]: Test case result
The below summarizes the result of the test " user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]" in build 2,015 of Onedata Products - gui acceptance pkg - Chrome multiprovider multiuser tests.
- Description
- user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_multiuser
- Method
- test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_deployed]
- Jira Issue
-
- Duration
- 19 mins
- Status
- Failed (New Failure)
Error Log
AssertionError: released size: 100 MiB is not expected size: 20 B request = <FixtureRequest for <Function 'test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_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) <decorator-gen-269>:2: in see_released_size_in_cleaning_report ??? tests/utils/utils.py:90: in wrapper return fun(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="eb989ab32d794ed040b5d74c70c95b84")>, 'space_owner_browser': <selenium.webdriver.chrome.webdriver.WebDriver (session="6f860fcfc3c2932f2f16767d519b8865")>} browser_id = 'browser1', onepanel = <class 'tests.gui.utils.onepanel.Onepanel'> size = '20 B' @wt(parsers.parse('user of {browser_id} sees {size} released size ' 'in cleaning report in Onepanel')) @repeat_failed(interval=1, timeout=220, exceptions=(AssertionError, StaleElementReferenceException)) def see_released_size_in_cleaning_report(selenium, browser_id, onepanel, size): driver = selenium[browser_id] cleaning_reports = (onepanel(driver).content.spaces.space .auto_cleaning.cleaning_reports) for cleaning_report in cleaning_reports: released_size = re.match(r'((\d+) (MiB|B)) ' r'\(out of (\d*\.\d+|\d+) MiB\)', cleaning_report.released_size.text).group(1) if released_size == size: return err_msg = f'released size: {released_size} is not expected size: {size}' > assert False, err_msg E AssertionError: released size: 100 MiB is not expected size: 20 B tests/gui/steps/onepanel/spaces.py:488: AssertionError