GUI acceptance tests using environment deployed from packages.

Build: #572 failed

Job: Multiprovider basic 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 572 of Onedata Products - gui acceptance pkg - Chrome multiprovider basic tests.
Description
user uses autocleaning with upper size limit which skips too big files[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_deployed]
Duration
6 mins
Status
Failed (New Failure)

Error Log

AssertionError: released size is 0 B instead of 20 B
request = <FixtureRequest for <Function 'test_user_uses_autocleaning_with_upper_size_limit_which_skips_too_big_files[1oz_2op_deployed]'>>

    from tests.gui.steps.oneprovider.metadata import *
>   from tests.gui.steps.oneprovider.shares import *

tests/gui/scenarios/test_multiprovider_basic.py:49: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
</usr/local/lib/python2.7/dist-packages/decorator.pyc:decorator-gen-190>:2: in see_released_size_in_cleaning_report
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

selenium = {'browser1': <selenium.webdriver.chrome.webdriver.WebDriver (session="b6bf2949e3fc2ce9c25e61788cb7633c")>, 'browser2': <selenium.webdriver.chrome.webdriver.WebDriver (session="adaa2ff242825de1662a9255e50be3db")>}
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=90,
                   exceptions=(AssertionError, StaleElementReferenceException))
    def see_released_size_in_cleaning_report(selenium, browser_id, onepanel, size):
        driver = selenium[browser_id]
        cleaning_report = (onepanel(driver).content.spaces.space
                           .auto_cleaning.cleaning_reports)[0]
        released_size = re.match(r'((\d+) (MiB|B)) \(out of (\d*\.\d+|\d+) MiB\)',
                                 cleaning_report.released_size.text).group(1)
        assert released_size == size, ('released size is {} instead of {}'
>                                      .format(released_size, size))
E       AssertionError: released size is 0 B instead of 20 B

tests/gui/steps/onepanel/spaces.py:509: AssertionError