Build: #26 failed

Job: LUMA multiprovider tests failed

imported directory 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 is correctly mapped on provider with luma and is not mapped on other provider" in build 26 of Onedata Products - mixed acceptance pkg - feature-VFS-4500-luma-acceptance-one-env-tests-develop - LUMA multiprovider tests.
Description
imported directory 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_is_correctly_mapped_on_provider_with_luma_and_is_not_mapped_on_other_provider
Duration
2 mins
Status
Failed (New Failure)

Error Log

RuntimeError: Error when executing command "kubectl exec dev-oneclient-krakow-669d959fd8-f4x45 -- ls -Ald /mnt/oneclient/marie/krk-plirw-par-c/Landsat-5": 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_is_correctly_mapped_on_provider_with_luma_and_is_not_mapped_on_other_provider'>>

    from tests.gui.steps.modal import *
>   from tests.gui.steps.oneprovider_common import *

tests/mixed_oneclient/scenarios/test_luma_multiprovider.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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:86: in assert_files_exist
    assert filename in do_ls(full_path, pod_name).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:21: in do_ls
    should_fail=should_fail, error=error).split('\n')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cmd = ['kubectl', 'exec', 'dev-oneclient-krakow-669d959fd8-f4x45', '--', 'ls', '-Ald', ...]
error = None, 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) if error
                               else 'Command did not fail: {}'.format(' '.join(cmd))
                               if should_fail else 'Error when executing command '
>                              '"{}": {}'.format(' '.join(cmd), err))
E           RuntimeError: Error when executing command "kubectl exec dev-oneclient-krakow-669d959fd8-f4x45 -- ls -Ald /mnt/oneclient/marie/krk-plirw-par-c/Landsat-5": ls: cannot access '/mnt/oneclient/marie/krk-plirw-par-c/Landsat-5': No such file or directory
E           command terminated with exit code 2

tests/utils/acceptance_utils.py:68: RuntimeError