Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #3229 was successful

Job: Workflows with input files was successful

user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]: Test case result

The below summarizes the result of the test " user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]" in build 3,229 of Onedata Products - mixed acceptance pkg - Workflows with input files.
Description
user sees successful execution of all workflows from automationexamples with their example input files[1oz 1op openfaas]
Test class
mixed.scenarios.test_workflows_with_input_files
Method
test_user_sees_successful_execution_of_all_workflows_from_automationexamples_with_their_example_input_files[1oz_1op_openfaas]
Jira Issue
Duration
10 mins
Status
Failed (Existing Failure)

Error Log

Exception: workflows: [({'calculate-checksums-rest': 'space1/file1'}, 'interrupted'), ({'demo': 'space1/dir1'}, 'interrupted'), ({'download-files': 'fetch_xrootd.txt'}, 'interrupted'), ({'download-files': 'fetch_multiple_files.txt'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_unpack_and_fetch.zip'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_fetch.tar.gz'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_fetch_xrootd.zip'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_unpack.tar'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_5GBfile.zip'}, 'interrupted')] did not finish successfully
request = <FixtureRequest for <Function 'test_user_sees_successful_execution_of_all_workflows_from_automationexamples_with_their_example_input_files[1oz_1op_openfaas]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'user1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f7f5fed39d0>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f7f5fec0b50>, 'user1': <tests.utils.user_utils.User object at 0x7f7f5fec08b0>}
host = 'oneprovider-1'
hosts = {'oneprovider-1': {'container-id': 'd908efaa671e69574184146d6b6f81896fe222f1b8ff0c25ad2144454701ea46', 'hostname': 'de...f6cdd903beb', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.151.120', 'name': 'dev-onezone', ...}}
workflow_executions = {'0662c370a9b0a0881ca839128803a3fcch9591': {'calculate-checksums-rest': 'space1/file1'}, '0fddc1ebe55d795313b27e1dacdf...unpack_and_fetch.zip'}, '13eac333cfcd4e7c0540c7c4ffec268dch59a9': {'calculate-checksums-mounted': 'space1/file1'}, ...}

    @wt(parsers.parse('using REST, {user} sees successful execution of all '
                      'workflows in {host}'))
    def assert_successful_workflow_executions(user, users, host, hosts, workflow_executions):
        err_msgs = []
        for wid in workflow_executions.keys():
            mes = get_workflow_execution_details(user, users, host, hosts,
                                                 wid, details=['name', 'status'])
            if mes['status'] != 'finished':
                err_msgs.append((workflow_executions[wid], mes['status']))
        if any(err_msgs):
>           raise Exception(f'workflows: {err_msgs} did not finish successfully')
E           Exception: workflows: [({'calculate-checksums-rest': 'space1/file1'}, 'interrupted'), ({'demo': 'space1/dir1'}, 'interrupted'), ({'download-files': 'fetch_xrootd.txt'}, 'interrupted'), ({'download-files': 'fetch_multiple_files.txt'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_unpack_and_fetch.zip'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_fetch.tar.gz'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_fetch_xrootd.zip'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_unpack.tar'}, 'interrupted'), ({'bagit-uploader': 'bagit_archive_5GBfile.zip'}, 'interrupted')] did not finish successfully

tests/mixed/steps/rest/onezone/automation.py:173: Exception