Build: #1 was successful

Job: Chrome transfers tests was successful

user tries to replicate directory to too small space on remote provider: Test case result

The below summarizes the result of the test " user tries to replicate directory to too small space on remote provider" in build 1 of Onedata Products - gui acceptance pkg - feature-VFS-4662-use-one-env-with-rsync-on-bamboo - Chrome transfers tests.
Description
user tries to replicate directory to too small space on remote provider
Test class
gui.scenarios.test_oneprovider_transfers
Method
test_user_tries_to_replicate_directory_to_too_small_space_on_remote_provider
Duration
3 mins
Status
Failed (New Failure)

Error Log

AssertionError: Transfer status is completed instead of failed in ended
request = <FixtureRequest for <Function 'test_user_tries_to_replicate_directory_to_too_small_space_on_remote_provider'>>

>   ???

tests/gui/scenarios/test_oneprovider_transfers.py:61: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
<decorator-gen-348>:2: in assert_ended_transfer
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/oneprovider/transfers.py:46: in assert_ended_transfer
    _assert_transfer(transfer, item_type, desc, 'ended', hosts)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

transfer = <tests.gui.utils.oneprovider.transfers.TransferRecordHistory object at 0x7faf43dd2a50>
item_type = 'directory'
desc = {'destination': 'oneprovider-2', 'name': 'dir1', 'status': 'failed', 'total files': 1, ...}
sufix = 'ended'
hosts = {'oneprovider-1': {'container_id': '7eb23fc6f726e833d2d405c9a32fa44a9366793b9bf5546452e4abe2da663578', 'hostname': 'de...4d96cb2f74ac424', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.32.0.31', '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 status is completed instead of failed in ended

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