{"name": "test_e2e_inbound_ozon", "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: 500; \n Response body: {\"message\":\"Seller id is not found for current user, user id '41000000003'\",\"localizedMessage\":\"Seller id is not found for current user, user id '41000000003'\"}; \n X-Aer-Trace-Id:", "trace": "get_ff_supply_ozon_auth_header = {'Authorization': 'Bearer e7d401bd-f69f-4926-90ed-f76a1e1b032c'}\n\n    @fixture()\n    def ecom_ozon_invoice_in_wms(get_ff_supply_ozon_auth_header) -> FFInvoiceDTO:\n        new_invoice = InvoiceBuilder(headers=get_ff_supply_ozon_auth_header)\n>       new_invoice.create_invoice()\n\nsrc/framework/fulfillment/fixtures/supply.py:62: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/fulfillment/builders/supply/invoice.py:23: in create_invoice\n    request_body = body or CartBuilder(headers=self.headers).fill_cart().current_cart\n                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nsrc/framework/fulfillment/builders/supply/cart.py:16: in fill_cart\n    sku_data = SKUBuilder(headers=self.headers).create_sku(multibarcode=True).get_current_sku()\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 0x79c12735e290>\nresource_path = '/api/v1/sku', method = 'POST', path_params = {}\nquery_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer e7d401bd-f69f-4926-90ed-f76a1e1b032c', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.225+master/python', ...}\nbody = {'barcodes': ['98779142503242', '90177829933561'], 'categoryId': 2, '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: 500; \nE            Response body: {\"message\":\"Seller id is not found for current user, user id '41000000003'\",\"localizedMessage\":\"Seller id is not found for current user, user id '41000000003'\"}; \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"}, "attachments": [{"name": "log", "source": "acd3dbf6-6e05-43cb-bb1d-911896b25b25-attachment.txt", "type": "text/plain"}], "start": 1775724187904, "stop": 1775724187904, "uuid": "ea21d55b-a012-40e3-86e3-8bcf8400f28d", "historyId": "05b9a744dad552537853ab83578a54b0", "testCaseId": "05b9a744dad552537853ab83578a54b0", "fullName": "tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound#test_e2e_inbound_ozon", "labels": [{"name": "feature", "value": "WMS e2e inbound"}, {"name": "tag", "value": "wms-end-to-end-inbound"}, {"name": "parentSuite", "value": "tests.wms.test_e2e_inbound"}, {"name": "suite", "value": "test_inbound"}, {"name": "subSuite", "value": "TestE2EInbound"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-4-o328dul3"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_e2e_inbound.test_inbound"}], "titlePath": ["tests", "wms", "test_e2e_inbound", "test_inbound.py", "TestE2EInbound"]}