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

Build: #2523 failed

Job: LUMA failed

user can create a file in a space using client1 authenticating themselves with an access token created by client2[1oz 1op 1oc-oneclient1-web GUi]: Test case result

The below summarizes the result of the test " user can create a file in a space using client1 authenticating themselves with an access token created by client2[1oz 1op 1oc-oneclient1-web GUi]" in build 2,523 of Onedata Products - mixed acceptance pkg - Chrome access tokens.
Description
user can create a file in a space using client1 authenticating themselves with an access token created by client2[1oz 1op 1oc-oneclient1-web GUi]
Test class
mixed.scenarios.test_access_tokens
Method
test_user_can_create_a_file_in_a_space_using_client1_authenticating_themselves_with_an_access_token_created_by_client2[1oz_1op_1oc-oneclient1-web GUI]
Duration
1 min
Status
Failed (New Failure)

Error Log

ConnectionRefusedError: [Errno 111] Connection refused
request = <FixtureRequest for <Function 'test_user_can_create_a_file_in_a_space_using_client1_authenticating_themselves_with_an_access_token_created_by_client2[1oz_1op_1oc-oneclient1-web GUI]'>>

    @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)
tests/mixed/steps/data_basic.py:57: in create_file_in_op_with_token
    create_file_in_op_oneclient_with_tokens(user, hosts, users, env_desc, tmp_memory,
tests/mixed/steps/oneclient/data_basic.py:71: in create_file_in_op_oneclient_with_tokens
    mount_new_oneclient_result(user, hosts, users, env_desc, tmp_memory, result,
tests/mixed/steps/oneclient/data_basic.py:48: in mount_new_oneclient_result
    mount_new_oneclient_with_token(user, hosts, users, env_desc, tmp_memory)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/mixed/steps/oneclient/data_basic.py:34: in mount_new_oneclient_with_token
    users[user].mount_client('oneclient-1', 'client1', hosts, env_desc, token)
tests/utils/user_utils.py:72: in mount_client
    rpyc_connection = self.get_rpyc_connection(hosts[client_host_alias])
tests/utils/user_utils.py:61: in get_rpyc_connection
    self._rpyc_connections[client_host] = self._create_rpyc_connection(client_host_dict)
tests/utils/user_utils.py:129: in _create_rpyc_connection
    rpyc_connection = self._connect_to_rpyc(client_host_ip, port)
<decorator-gen-6>:2: in _connect_to_rpyc
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/utils/user_utils.py:142: in _connect_to_rpyc
    return rpyc.classic.connect(ip, port)
/usr/local/lib/python3.8/dist-packages/rpyc/utils/classic.py:70: in connect
    return factory.connect(host, port, SlaveService, ipv6 = ipv6, keepalive = keepalive)
/usr/local/lib/python3.8/dist-packages/rpyc/utils/factory.py:93: in connect
    s = SocketStream.connect(host, port, ipv6=ipv6, keepalive=keepalive)
/usr/local/lib/python3.8/dist-packages/rpyc/core/stream.py:154: in connect
    return cls(cls._connect(host, port, **kwargs))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'rpyc.core.stream.SocketStream'>, host = '172.17.0.5', port = 19440
family = <AddressFamily.AF_INET: 2>, socktype = <SocketKind.SOCK_STREAM: 1>
proto = 6, timeout = 3, nodelay = False, keepalive = False

    @classmethod
    def _connect(cls, host, port, family = socket.AF_INET, socktype = socket.SOCK_STREAM,
            proto = 0, timeout = 3, nodelay = False, keepalive = False):
        family, socktype, proto, _, sockaddr = socket.getaddrinfo(host, port, family,
            socktype, proto)[0]
        s = socket.socket(family, socktype, proto)
        s.settimeout(timeout)
>       s.connect(sockaddr)
E       ConnectionRefusedError: [Errno 111] Connection refused

/usr/local/lib/python3.8/dist-packages/rpyc/core/stream.py:112: ConnectionRefusedError