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

Build: #1907 failed

Job: Spaces basic failed

user of client2 fails to modify privileges of space after joining to it from invitation generated by user of client1[1oz 1op 1oc-web GUi-RESt]: Test case result

The below summarizes the result of the test " user of client2 fails to modify privileges of space after joining to it from invitation generated by user of client1[1oz 1op 1oc-web GUi-RESt]" in build 1,907 of Onedata Products - mixed acceptance pkg - Chrome spaces basic tests.
Description
user of client2 fails to modify privileges of space after joining to it from invitation generated by user of client1[1oz 1op 1oc-web GUi-RESt]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_of_client2_fails_to_modify_privileges_of_space_after_joining_to_it_from_invitation_generated_by_user_of_client1[1oz_1op_1oc-web GUI-REST]
Duration
1 min
Status
Failed (New Failure)

Error Log

onezone_client.rest.ApiException: (403) Reason: Forbidden HTTP response headers: HTTPHeaderDict({'content-length': '94', 'content-type': 'application/json', 'date': 'Fri, 01 Oct 2021 07:32:28 GMT', 'server': 'Cowboy', 'x-frame-options': 'SAMEORIGIN'}) HTTP response body: {"error":{"id":"forbidden","description":"You are not authorized to perform this operation."}}
request = <FixtureRequest for <Function 'test_user_of_client2_fails_to_modify_privileges_of_space_after_joining_to_it_from_invitation_generated_by_user_of_client1[1oz_1op_1oc-web GUI-REST]'>>

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

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/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)
<decorator-gen-819>:2: in fail_to_set_privileges_in_space_in_oz
    ???
tests/utils/utils.py:90: in wrapper
    return fun(*args, **kwargs)
tests/mixed/steps/members.py:36: in fail_to_set_privileges_in_space_in_oz
    space_name, member_name, config)
tests/mixed/steps/rest/onezone/members.py:119: in fail_to_set_privileges_using_rest
    users[member_name].id, data)
tests/mixed/onezone_client/api/space_api.py:4132: in update_user_space_privileges
    (data) = self.update_user_space_privileges_with_http_info(id, uid, data, **kwargs)  # noqa: E501
tests/mixed/onezone_client/api/space_api.py:4216: in update_user_space_privileges_with_http_info
    collection_formats=collection_formats)
tests/mixed/onezone_client/api_client.py:331: in call_api
    _preload_content, _request_timeout)
tests/mixed/onezone_client/api_client.py:162: in __call_api
    _request_timeout=_request_timeout)
tests/mixed/onezone_client/api_client.py:390: in request
    body=body)
tests/mixed/onezone_client/rest.py:295: in PATCH
    body=body)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <onezone_client.rest.RESTClientObject object at 0x7fbff19b7ba8>
method = 'PATCH'
url = 'https://dev-onezone.default.svc.cluster.local:443/api/v3/onezone/spaces/b01792c277df4befce1308483de0babach004d/users/878b75e9625ca88d0c856468a251aedech3c6f/privileges'
query_params = []
headers = {'Authorization': 'Basic dXNlcjE6cGFzc3dvcmQ=', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/21.02.0-alpha21/python'}
body = {'grant': ['space_add_user', 'space_remove_user', 'space_add_harvester', 'space_remove_harvester', 'space_manage_datasets', 'space_read_data', ...], 'revoke': ['space_view_archives']}
post_params = {}, _preload_content = True, _request_timeout = None

    def request(self, method, url, query_params=None, headers=None,
                body=None, post_params=None, _preload_content=True,
                _request_timeout=None):
        """Perform requests.
    
            :param method: http request method
            :param url: http request url
            :param query_params: query parameters in the url
            :param headers: http request headers
            :param body: request json body, for `application/json`
            :param post_params: request post parameters,
                                `application/x-www-form-urlencoded`
                                and `multipart/form-data`
            :param _preload_content: if False, the urllib3.HTTPResponse object will
                                     be returned without reading/decoding response
                                     data. Default is True.
            :param _request_timeout: timeout setting for this request. If one
                                     number provided, it will be total request
                                     timeout. It can also be a pair (tuple) of
                                     (connection, read) timeouts.
            """
        method = method.upper()
        assert method in ['GET', 'HEAD', 'DELETE', 'POST', 'PUT',
                          'PATCH', 'OPTIONS']
    
        if post_params and body:
            raise ValueError(
                "body parameter cannot be used with post_params parameter."
            )
    
        post_params = post_params or {}
        headers = headers or {}
    
        timeout = None
        if _request_timeout:
            if isinstance(_request_timeout, (int, ) if six.PY3 else (int, long)):  # noqa: E501,F821
                timeout = urllib3.Timeout(total=_request_timeout)
            elif (isinstance(_request_timeout, tuple) and
                  len(_request_timeout) == 2):
                timeout = urllib3.Timeout(
                    connect=_request_timeout[0], read=_request_timeout[1])
    
        if 'Content-Type' not in headers:
            headers['Content-Type'] = 'application/json'
    
        try:
            # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
            if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
                if query_params:
                    url += '?' + urlencode(query_params)
                if re.search('json', headers['Content-Type'], re.IGNORECASE):
                    request_body = '{}'
                    if body is not None:
                        request_body = json.dumps(body)
                    r = self.pool_manager.request(
                        method, url,
                        body=request_body,
                        preload_content=_preload_content,
                        timeout=timeout,
                        headers=headers)
                elif headers['Content-Type'] == 'application/x-www-form-urlencoded':  # noqa: E501
                    r = self.pool_manager.request(
                        method, url,
                        fields=post_params,
                        encode_multipart=False,
                        preload_content=_preload_content,
                        timeout=timeout,
                        headers=headers)
                elif headers['Content-Type'] == 'multipart/form-data':
                    # must del headers['Content-Type'], or the correct
                    # Content-Type which generated by urllib3 will be
                    # overwritten.
                    del headers['Content-Type']
                    r = self.pool_manager.request(
                        method, url,
                        fields=post_params,
                        encode_multipart=True,
                        preload_content=_preload_content,
                        timeout=timeout,
                        headers=headers)
                # Pass a `string` parameter directly in the body to support
                # other content types than Json when `body` argument is
                # provided in serialized form
                elif isinstance(body, str):
                    request_body = body
                    r = self.pool_manager.request(
                        method, url,
                        body=request_body,
                        preload_content=_preload_content,
                        timeout=timeout,
                        headers=headers)
                else:
                    # Cannot generate the request from given parameters
                    msg = """Cannot prepare a request message for provided
                                 arguments. Please check that your arguments match
                                 declared content type."""
                    raise ApiException(status=0, reason=msg)
            # For `GET`, `HEAD`
            else:
                r = self.pool_manager.request(method, url,
                                              fields=query_params,
                                              preload_content=_preload_content,
                                              timeout=timeout,
                                              headers=headers)
        except urllib3.exceptions.SSLError as e:
            msg = "{0}\n{1}".format(type(e).__name__, str(e))
            raise ApiException(status=0, reason=msg)
    
        if _preload_content:
            r = RESTResponse(r)
    
            # In the python 3, the response.data is bytes.
            # we need to decode it to string.
            if six.PY3:
                r.data = r.data.decode('utf8')
    
            # log response body
            logger.debug("response body: %s", r.data)
    
        if not 200 <= r.status <= 299:
>           raise ApiException(http_resp=r)
E           onezone_client.rest.ApiException: (403)
E           Reason: Forbidden
E           HTTP response headers: HTTPHeaderDict({'content-length': '94', 'content-type': 'application/json', 'date': 'Fri, 01 Oct 2021 07:32:28 GMT', 'server': 'Cowboy', 'x-frame-options': 'SAMEORIGIN'})
E           HTTP response body: {"error":{"id":"forbidden","description":"You are not authorized to perform this operation."}}

tests/mixed/onezone_client/rest.py:228: ApiException