GUI acceptance tests using environment deployed from packages.

Build: #690 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 690 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
9 mins
Status
Failed (New Failure)

Error Log

AssertionError: Transfer total files is 2 instead of 3 in ended
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-660>:2: in assert_ended_transfer
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/transfers.py:49: in assert_ended_transfer
    _assert_transfer(transfer, item_type, desc, 'ended', hosts)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

transfer = <tests.gui.utils.oneprovider.transfers.TransferRecordHistory object at 0x7fdadc13cbd0>
item_type = 'directory'
desc = {'destination': 'oneprovider-2', 'name': 'dir1', 'status': 'completed', 'total files': 3, ...}
sufix = 'ended'
hosts = {'oneprovider-1': {'container-id': 'c4945a737ace395a3f75a959818cd7ae1bd8d624c542246f01083b35411b070e', 'hostname': 'de...43b9b4bc324a1b', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.11', 'name': 'dev-onezone', ...}}

    def _assert_transfer(transfer, item_type, desc, sufix, hosts):
        assert getattr(transfer, 'is_{}'.format(item_type))(), \
            'Transferred item is not {} in {}'.format(item_type, sufix)
    
        desc = yaml.load(desc)
        for key, val in desc.items():
            if key == 'destination':
                val = hosts[val]['name']
            transfer_val = getattr(transfer, key.replace(' ', '_'))
            assert transfer_val == str(val), \
                'Transfer {} is {} instead of {} in {}'.format(key, transfer_val,
>                                                              val, sufix)
E           AssertionError: Transfer total files is 2 instead of 3 in ended

tests/gui/steps/oneprovider/transfers.py:31: AssertionError