{"name": "test_create_sku_several_barcodes", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: POST https://dm-ff-be-service-supply.k8s-review.dailymail-tech.uz/api/v1/sku; \n Expected status code: 200; \n Actual status code: 404; \n Response body: <html>\r\n<head><title>404 Not Found</title></head>\r\n<body>\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx/1.18.0 (Ubuntu)</center>\r\n</body>\r\n</html>\r\n; \n X-Aer-Trace-Id:", "trace": "self = <tests.fulfillment.test_supply.test_sku.TestSKU object at 0x72a41f125950>\nget_ff_supply_auth_header = {'Authorization': 'Bearer 5107d098-2d51-4a51-8e27-51b801c8d3a5', 'x-aer-mesh': 'dm-hub-service-package:master;dm-hub-s...hub-internal:master;dm-hub-workflow-integration:master;dm-hub-workflow-package:master;dm-hub-workflow-tracking:master'}\n\n    def test_create_sku_several_barcodes(self, get_ff_supply_auth_header):\n>       assert SKUBuilder(headers=get_ff_supply_auth_header).create_sku(multibarcode=True), \"Cannot create SKU\"\n               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\ntests/fulfillment/test_supply/test_sku.py:25: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/fulfillment/builders/supply/sku.py:45: in create_sku\n    self.current_sku = SkuApi(headers=self.headers).api_v1_sku_post(body=request_body).data\n                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_ff_be_service_supply/api/sku_api.py:549: in api_v1_sku_post\n    return self.api_v1_sku_post_with_http_info(body, **kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_ff_be_service_supply/api/sku_api.py:620: in api_v1_sku_post_with_http_info\n    return self.api_client.call_api(\n/usr/local/lib/python3.11/site-packages/qacl_dm_ff_be_service_supply/api_client.py:339: in call_api\n    return self.__call_api(resource_path, method,\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <qacl_dm_ff_be_service_supply.api_client.ApiClient object at 0x72a41e538790>\nresource_path = '/api/v1/sku', method = 'POST', path_params = {}\nquery_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 5107d098-2d51-4a51-8e27-51b801c8d3a5', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.220+develop/python', ...}\nbody = {'barcodes': ['52104420417935', '91621187409129'], 'categoryId': 1, 'currency': 'USD', 'description': 'Autotest_деньги', ...}\npost_params = [], files = {}, response_type = 'SkuDto'\nauth_settings = ['wms-authorization'], _return_http_data_only = False\ncollection_formats = {}, _preload_content = True, _request_timeout = None\nexpected_status_code = <HTTPStatus.OK: 200>\n\n    def __call_api(\n            self, resource_path, method, path_params=None,\n            query_params=None, header_params=None, body=None, post_params=None,\n            files=None, response_type=None, auth_settings=None,\n            _return_http_data_only=None, collection_formats=None,\n            _preload_content=True, _request_timeout=None,\n            expected_status_code=HTTPStatus.OK):\n    \n        config = self.configuration\n    \n        # header parameters\n        header_params = header_params or {}\n        header_params.update(self.default_headers)\n        if self.cookie:\n            header_params['Cookie'] = self.cookie\n        if header_params:\n            header_params = self.sanitize_for_serialization(header_params)\n            header_params = dict(self.parameters_to_tuples(header_params,\n                                                           collection_formats))\n    \n        # path parameters\n        if path_params:\n            path_params = self.sanitize_for_serialization(path_params)\n            path_params = self.parameters_to_tuples(path_params,\n                                                    collection_formats)\n            for k, v in path_params:\n                # specified safe chars, encode everything\n                resource_path = resource_path.replace(\n                    '{%s}' % k,\n                    quote(str(v), safe=config.safe_chars_for_path_param)\n                )\n    \n        # query parameters\n        if query_params:\n            query_params = self.sanitize_for_serialization(query_params)\n            query_params = self.parameters_to_tuples(query_params,\n                                                     collection_formats)\n    \n        # post parameters\n        if post_params or files:\n            post_params = self.prepare_post_parameters(post_params, files)\n            post_params = self.sanitize_for_serialization(post_params)\n            post_params = self.parameters_to_tuples(post_params,\n                                                    collection_formats)\n    \n        # auth setting\n        self.update_params_for_auth(header_params, query_params, auth_settings)\n    \n        # body\n        if body:\n            body = self.sanitize_for_serialization(body)\n    \n        # request url\n        url = self.configuration.host + resource_path\n    \n        # perform request and return response\n        response_data = self.request(\n            method, url, query_params=query_params, headers=header_params,\n            post_params=post_params, body=body,\n            _preload_content=_preload_content,\n            _request_timeout=_request_timeout)\n    \n        self.last_response = response_data\n    \n        return_data = response_data\n    \n        try:\n            response_data.data\n            trace_id = response_data.urllib3_response.headers.get('x-aer-trace-id', \"\")\n        except:\n            assert response_data.status == expected_status_code, \\\n                f'Handler: {method} {url}; \\n ' \\\n                f'Expected status code: {expected_status_code}; \\n ' \\\n                f'Actual status code: {response_data.status}'\n        else:\n>           assert response_data.status == expected_status_code, \\\n                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n                f'Handler: {method} {url}; \\n ' \\\n                f'Expected status code: {expected_status_code}; \\n ' \\\n                f'Actual status code: {response_data.status}; \\n ' \\\n                f'Response body: {response_data.data}; \\n ' \\\n                f'X-Aer-Trace-Id: {trace_id}'\nE           AssertionError: Handler: POST https://dm-ff-be-service-supply.k8s-review.dailymail-tech.uz/api/v1/sku; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: <html>\r\nE           <head><title>404 Not Found</title></head>\r\nE           <body>\r\nE           <center><h1>404 Not Found</h1></center>\r\nE           <hr><center>nginx/1.18.0 (Ubuntu)</center>\r\nE           </body>\r\nE           </html>\r\nE           ; \nE            X-Aer-Trace-Id:\n\n/usr/local/lib/python3.11/site-packages/qacl_dm_ff_be_service_supply/api_client.py:172: AssertionError"}, "steps": [{"name": "GET → https://dm-ff-be-service-supply.k8s-review.dailymail-tech.uz/api/v1/category/all", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e1e44166-d54f-4ebf-a522-d5f3e0bccfcd-attachment.json", "type": "application/json"}], "start": 1775258636727, "stop": 1775258636727}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d3e33757-ca71-4386-8bf9-99a722a0b1fb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8917bc86-ec88-49ec-bd30-f8ae4ec0faf6-attachment.json", "type": "application/json"}], "start": 1775258636727, "stop": 1775258636727}], "attachments": [{"name": "cURL", "source": "a5af0553-9812-48e8-87f3-1082c27bce81-attachment.txt", "type": "text/plain"}], "start": 1775258636727, "stop": 1775258636728}, {"name": "POST → https://dm-ff-be-service-supply.k8s-review.dailymail-tech.uz/api/v1/sku", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "49dd4157-7aac-4762-bd68-fa9999b86841-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4c26ec89-6342-4652-b8b1-02ce84f1dbdf-attachment.json", "type": "application/json"}], "start": 1775258636746, "stop": 1775258636746}, {"name": "Response → 404, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "02652d01-925c-4b66-8f1f-a77811034700-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "73cfe40b-8056-4827-a93f-51163c7eb45c-attachment.txt", "type": "text/plain"}], "start": 1775258636746, "stop": 1775258636746}], "attachments": [{"name": "cURL", "source": "647dc33b-5521-4942-83e3-83b0d475a240-attachment.txt", "type": "text/plain"}], "start": 1775258636746, "stop": 1775258636746}], "attachments": [{"name": "log", "source": "cb105473-d75b-42ae-b2f2-f8024f6147a8-attachment.txt", "type": "text/plain"}], "start": 1775258636660, "stop": 1775258636747, "uuid": "cb326cd7-12c5-4471-9b30-3a7bf4f2fe14", "historyId": "0ad580ce57f3e872e924f12e34ddaf9b", "testCaseId": "0ad580ce57f3e872e924f12e34ddaf9b", "fullName": "tests.fulfillment.test_supply.test_sku.TestSKU#test_create_sku_several_barcodes", "labels": [{"name": "tag", "value": "dm-ff-be-service-supply"}, {"name": "parentSuite", "value": "tests.fulfillment.test_supply"}, {"name": "suite", "value": "test_sku"}, {"name": "subSuite", "value": "TestSKU"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-1-npci32q5"}, {"name": "thread", "value": "36-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.fulfillment.test_supply.test_sku"}], "titlePath": ["tests", "fulfillment", "test_supply", "test_sku.py", "TestSKU"]}