GUI acceptance tests using environment deployed from packages.

Build: #634 failed

Job: Chrome transfers tests was successful

user tries to replicate file to too small space on remote provider[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user tries to replicate file to too small space on remote provider[1oz 2op deployed]" in build 634 of Onedata Products - gui acceptance pkg - Chrome transfers tests.
Description
user tries to replicate file to too small space on remote provider[1oz 2op deployed]
Test class
gui.scenarios.test_oneprovider_transfers
Method
test_user_tries_to_replicate_file_to_too_small_space_on_remote_provider[1oz_2op_deployed]
Jira Issue
Duration
5 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: Transfer status is completed instead of failed in ended
request = <FixtureRequest for <Function 'test_user_tries_to_replicate_file_to_too_small_space_on_remote_provider[1oz_2op_deployed]'>>

    def screens():
>       return [0]

tests/gui/scenarios/test_oneprovider_transfers.py:57: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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-374>:2: in assert_ended_transfer
    ???
tests/utils/utils.py:79: 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 0x7f826418fb10>
item_type = 'file'
desc = {'destination': 'oneprovider-2', 'name': 'large_file.txt', 'status': 'failed', 'total files': 1, ...}
sufix = 'ended'
hosts = {'oneprovider-1': {'container-id': 'debb513b7676380e5f7b82e27282dc3cbf9b4cf315b5534e1aaddb4830915248', 'hostname': 'de...940b84e2600f4a', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.13', '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:31: AssertionError