Build: #51 failed

Job: LUMA multiprovider tests failed

imported directory ownership is correctly mapped on provider with luma and is not mapped on other provider: Test case result

The below summarizes the result of the test " imported directory ownership is correctly mapped on provider with luma and is not mapped on other provider" in build 51 of Onedata Products - mixed acceptance pkg - feature-VFS-4500-luma-acceptance-one-env-tests-develop - LUMA multiprovider tests.
Description
imported directory ownership is correctly mapped on provider with luma and is not mapped on other provider
Test class
mixed_oneclient.scenarios.test_luma_multiprovider
Method
test_imported_directory_ownership_is_correctly_mapped_on_provider_with_luma_and_is_not_mapped_on_other_provider
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: File Landsat-5 does not exist: ls: cannot access '/mnt/oneclient/marie/krk-plirw-par-c/Landsat-5': No such file or directory command terminated with exit code 2 ;
request = <FixtureRequest for <Function 'test_imported_directory_ownership_is_correctly_mapped_on_provider_with_luma_and_is_not_mapped_on_other_provider'>>

>   ???

tests/mixed_oneclient/scenarios/test_luma_multiprovider.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)
tests/mixed_oneclient/steps/oneclient/common.py:66: in assert_files_exist
    assert filename in do_ls(full_path, pod_name, error=error).keys(), \
<decorator-gen-402>:2: in do_ls
    ???
tests/gui/utils/generic.py:110: in wrapper
    return fun(*args, **kwargs)
tests/utils/oneclient_utils.py:22: in do_ls
    should_fail=should_fail, error=error).split('\n')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cmd = ['kubectl', 'exec', 'dev-oneclient-krakow-669d959fd8-kfwl6', '--', 'ls', '-Ald', ...]
error = 'File Landsat-5 does not exist', should_fail = False

    def execute_command(cmd, error=None, should_fail=False):
        process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                                   stderr=subprocess.PIPE)
        output, err = process.communicate()
        if (process.returncode != 0) ^ should_fail:
            raise RuntimeError('{}: {}; {}'.format(error, err, output) if error
                               else 'Command did not fail: {}, Err: {}, Output: {}'
                               .format(' '.join(cmd), err, output)
                               if should_fail else 'Error when executing command '
>                              '"{}": {}; {}'.format(' '.join(cmd), err, output))
E           RuntimeError: File Landsat-5 does not exist: ls: cannot access '/mnt/oneclient/marie/krk-plirw-par-c/Landsat-5': No such file or directory
E           command terminated with exit code 2
E           ;

tests/utils/acceptance_utils.py:70: RuntimeError