Acceptance tests using different clients concurrently. Environment deployed from packages.
Build: #16 failed
Job: Onepanel failed
files tree with specified depth is imported to space after changing import depth and disable modification detection option[1oz 1op 1oc-web GUi-RESt]: Test case result
The below summarizes the result of the test " files tree with specified depth is imported to space after changing import depth and disable modification detection option[1oz 1op 1oc-web GUi-RESt]" in build 16 of Onedata Products - mixed acceptance pkg - release-21.02.0-alpha1 - Chrome onepanel tests.
- Description
- files tree with specified depth is imported to space after changing import depth and disable modification detection option[1oz 1op 1oc-web GUi-RESt]
- Test class
- mixed.scenarios.test_onepanel_basic
- Method
- test_files_tree_with_specified_depth_is_imported_to_space_after_changing_import_depth_and_disable_modification_detection_option[1oz_1op_1oc-web GUI-REST]
- Duration
- 1 min
- Status
- Failed (Existing Failure)
Error Log
tests.mixed.onepanel_client.rest.ApiException: (400) Reason: Bad Request HTTP response headers: HTTPHeaderDict({'access-control-allow-origin': 'https://dev-onezone.default.svc.cluster.local', 'content-length': '528', 'content-type': 'application/json', 'date': 'Sat, 16 Jan 2021 06:38:13 GMT', 'server': 'Cowboy', 'x-frame-options': 'SAMEORIGIN'}) HTTP response body: {"error":{"id":"errorOnNodes","details":{"hostnames":["dev-oneprovider-krakow-0.dev-oneprovider-krakow.default.svc.cluster.local"],"error":{"id":"spaceNotSupportedBy","details":{"providerId":"be9b4e9b63a071bff65c6c72bedcf9c1chda39"},"description":"Specified space is not supported by provider be9b4e9b63a071bff65c6c72bedcf9c1chda39."}},"description":"Error on nodes dev-oneprovider-krakow-0.dev-oneprovider-krakow.default.svc.cluster.local: Specified space is not supported by provider be9b4e9b63a071bff65c6c72bedcf9c1chda39."}} request = <FixtureRequest for <Function 'test_files_tree_with_specified_depth_is_imported_to_space_after_changing_import_depth_and_disable_modification_detection_option[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:77: in wrapper return fun(*ba.args, **ba.kwargs) tests/mixed/steps/onepanel_basic.py:332: in support_space_in_op_panel tmp_memory, config) tests/mixed/steps/rest/onepanel/spaces.py:80: in support_space_in_op_panel_using_rest spaces_api.support_space(space_support_rq) tests/mixed/onepanel_client/apis/space_support_api.py:473: in support_space (data) = self.support_space_with_http_info(space_support_request, **kwargs) tests/mixed/onepanel_client/apis/space_support_api.py:551: in support_space_with_http_info collection_formats=collection_formats) tests/mixed/onepanel_client/api_client.py:323: in call_api _return_http_data_only, collection_formats, _preload_content, _request_timeout) tests/mixed/onepanel_client/api_client.py:150: in __call_api _request_timeout=_request_timeout) tests/mixed/onepanel_client/api_client.py:368: in request body=body) tests/mixed/onepanel_client/rest.py:248: in POST body=body) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <tests.mixed.onepanel_client.rest.RESTClientObject object at 0x7fb7070e59e8> method = 'POST' url = 'https://dev-oneprovider-krakow.default.svc.cluster.local:9443/api/v3/onepanel/provider/spaces' query_params = {} headers = {'Authorization': 'Basic b25lcGFuZWw6cGFzc3dvcmQ=', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/__PACKAGE_VERSION__/python'} body = {'size': 1000000, 'storageId': '06dbcf6b03db7d7cfac794b612ffd200ch4cdd', 'storageImport': {'autoStorageImportConfig': ...M2E3NTUzY2gzYzdkCjAwMWFjaWQgdGltZSA8IDE2MTA4NjU00ODgKMDAyZnNpZ25hdHVyZSDY88SeOcbDH012JF4mIoBLrLccyjABPSQvfvIGDHayHrQo'} 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): """ :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 PY3 else (int, long)): 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 = None if body: 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': 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 PY3: r.data = r.data.decode('utf8') # log response body logger.debug("response body: %s", r.data) if r.status not in range(200, 206): > raise ApiException(http_resp=r) E tests.mixed.onepanel_client.rest.ApiException: (400) E Reason: Bad Request E HTTP response headers: HTTPHeaderDict({'access-control-allow-origin': 'https://dev-onezone.default.svc.cluster.local', 'content-length': '528', 'content-type': 'application/json', 'date': 'Sat, 16 Jan 2021 06:38:13 GMT', 'server': 'Cowboy', 'x-frame-options': 'SAMEORIGIN'}) E HTTP response body: {"error":{"id":"errorOnNodes","details":{"hostnames":["dev-oneprovider-krakow-0.dev-oneprovider-krakow.default.svc.cluster.local"],"error":{"id":"spaceNotSupportedBy","details":{"providerId":"be9b4e9b63a071bff65c6c72bedcf9c1chda39"},"description":"Specified space is not supported by provider be9b4e9b63a071bff65c6c72bedcf9c1chda39."}},"description":"Error on nodes dev-oneprovider-krakow-0.dev-oneprovider-krakow.default.svc.cluster.local: Specified space is not supported by provider be9b4e9b63a071bff65c6c72bedcf9c1chda39."}} tests/mixed/onepanel_client/rest.py:204: ApiException