{"name": "test_manual_invoice", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: GET https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002106' not found\",\"localizedMessage\":\"Инвойс с номером '410002106' не найден\"}; \n X-Aer-Trace-Id: 68b68edcf83559e90105857a363ec2da", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x74f076478a50>\nget_fmcg_auth_header = {'Authorization': 'Bearer c9114cb9-9838-454f-bff2-c2e85dc65c4f', '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_manual_invoice(self, get_fmcg_auth_header):\n        \"\"\"\n        Создаем заявку через формы. Перемещаем инвойс до статуса 'Получено складом' ('Acceptance in progress')\n        Ожидаемый результат: заявку в статусе 'Acceptance in progress' попала в сервис Acceptance\n        \"\"\"\n        initial_invoice_builder = FMCGInvoiceBuilder(headers=get_fmcg_auth_header).create_invoice()\n        invoice_number = initial_invoice_builder.invoice_number\n        assert (\n            initial_invoice_builder.update_invoice().send_invoice().current_status\n            == FMCGLkInvoiceStatuses.ACCEPTANCE_IN_PROGRESS\n        )\n    \n>       invoice_data_in_acceptance = IntegrationWithAcceptanceBuilder(headers=get_fmcg_auth_header).get_invoice(\n            str(invoice_number)\n        )\n\ntests/fmcg/test_lk/test_integration.py:27: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/fmcg/builders/lk/integration.py:11: in get_invoice\n    self.invoice_data = wait_invoice_from_lk(headers=self.headers, invoice_number=invoice_number)\n                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nsrc/framework/common/utils/utils.py:218: in wrapped_f\n    return Retrying(\n/usr/local/lib/python3.11/site-packages/retrying.py:289: in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\nsrc/framework/fmcg/validation/waiters/acceptance.py:88: in wait_invoice_from_lk\n    root_request = InvoiceApi(headers=headers).api_v1_acceptance_invoice_invoice_number_get(\n/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api/invoice_api.py:260: in api_v1_acceptance_invoice_invoice_number_get\n    return self.api_v1_acceptance_invoice_invoice_number_get_with_http_info(invoice_number, **kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api/invoice_api.py:327: in api_v1_acceptance_invoice_invoice_number_get_with_http_info\n    return self.api_client.call_api(\n/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api_client.py:339: in call_api\n    return self.__call_api(resource_path, method,\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <qacl_dm_fmcg_be_service_acceptance.api_client.ApiClient object at 0x74f075114b10>\nresource_path = '/api/v1/acceptance/invoice/410002106', method = 'GET'\npath_params = [('invoiceNumber', '410002106')], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer c9114cb9-9838-454f-bff2-c2e85dc65c4f', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.63+develop/python', ...}\nbody = None, post_params = [], files = {}, response_type = 'InvoiceResponseDto'\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: GET https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002106' not found\",\"localizedMessage\":\"Инвойс с номером '410002106' не найден\"}; \nE            X-Aer-Trace-Id: 68b68edcf83559e90105857a363ec2da\n\n/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api_client.py:172: AssertionError"}, "description": "\n        Создаем заявку через формы. Перемещаем инвойс до статуса 'Получено складом' ('Acceptance in progress')\n        Ожидаемый результат: заявку в статусе 'Acceptance in progress' попала в сервис Acceptance\n        ", "steps": [{"name": "GET → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/categories", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2b433d2a-a001-4cc7-baf7-e532d977043e-attachment.json", "type": "application/json"}], "start": 1775605159076, "stop": 1775605159076}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "1358bb3d-a175-4fc6-b52e-23c671773d5c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "85bfde03-7d4c-4de5-ae0f-6ff6a029bcd8-attachment.json", "type": "application/json"}], "start": 1775605159076, "stop": 1775605159076}], "attachments": [{"name": "cURL", "source": "9ab51183-195b-4e1e-9402-9ae22dc9d42b-attachment.txt", "type": "text/plain"}], "start": 1775605159076, "stop": 1775605159076}, {"name": "GET → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/unit", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "39727468-ef12-4d31-93ce-16bbfb755f79-attachment.json", "type": "application/json"}], "start": 1775605159177, "stop": 1775605159177}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "879e0f5f-485e-4121-ac5f-1adcb957ae82-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dd726a05-55e7-4297-ae6a-517e3a2e8227-attachment.json", "type": "application/json"}], "start": 1775605159178, "stop": 1775605159178}], "attachments": [{"name": "cURL", "source": "77c1a59d-e85c-40c6-be13-866315a94d53-attachment.txt", "type": "text/plain"}], "start": 1775605159177, "stop": 1775605159178}, {"name": "GET → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/packingtype", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1cf33aa9-966c-48ee-8ac9-16e5f02340c9-attachment.json", "type": "application/json"}], "start": 1775605159276, "stop": 1775605159276}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "65d85e6a-2159-46ee-b4f5-66b24a229fce-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e79d5450-4d0b-4ad6-b3a4-799082b83ec0-attachment.json", "type": "application/json"}], "start": 1775605159276, "stop": 1775605159276}], "attachments": [{"name": "cURL", "source": "6729ad1f-c21f-4df7-8404-0c4a7a6c5b73-attachment.txt", "type": "text/plain"}], "start": 1775605159276, "stop": 1775605159276}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/sku", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cf1e67e5-7d5b-4276-bb60-3fbe691020f6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ac9f4de4-c2df-4018-a265-fb44a4f48c55-attachment.json", "type": "application/json"}], "start": 1775605159388, "stop": 1775605159388}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "0b8b92a0-c6f0-476a-8d38-0bc35c9885d7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "003ddad0-0579-4170-b679-a0c155905377-attachment.json", "type": "application/json"}], "start": 1775605159388, "stop": 1775605159389}], "attachments": [{"name": "cURL", "source": "39958d99-6135-467d-b83b-67376e747d4a-attachment.txt", "type": "text/plain"}], "start": 1775605159388, "stop": 1775605159389}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/cart/add-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3d1c298e-70ff-4145-b6a2-7c0ab7ba61e0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "af147bc2-a2e3-48de-aa88-3b78b3950624-attachment.json", "type": "application/json"}], "start": 1775605159583, "stop": 1775605159583}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "18e1cd37-ac12-479d-8cc4-791d1e975ab1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0e2cc144-a260-4b67-9cfe-b74c96bbc378-attachment.json", "type": "application/json"}], "start": 1775605159584, "stop": 1775605159584}], "attachments": [{"name": "cURL", "source": "a838fcda-2a2b-4048-922b-c7379ccb11cf-attachment.txt", "type": "text/plain"}], "start": 1775605159583, "stop": 1775605159584}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7207a769-f1c1-4954-863a-fa7885d79507-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "025cc47a-a2c2-4b93-8c43-2b14dc19becd-attachment.json", "type": "application/json"}], "start": 1775605159689, "stop": 1775605159689}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6fd4aec-38fb-4ed2-a16d-35590b211810-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "56286a44-2173-4cb6-a3f4-59cfde303e09-attachment.json", "type": "application/json"}], "start": 1775605159689, "stop": 1775605159689}], "attachments": [{"name": "cURL", "source": "bc1beb23-d115-46cf-b297-39d34f99f543-attachment.txt", "type": "text/plain"}], "start": 1775605159689, "stop": 1775605159689}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0b028693-13b9-46fe-abc0-c4ba3466a284-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "16f68ed3-120e-47fc-a2a5-9fe06772dd03-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0d4908cf-e324-4abd-8df3-298f6c8fe555-attachment.json", "type": "application/json"}], "start": 1775605160576, "stop": 1775605160577}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "57efbd7b-1c01-425f-8006-044c919c1712-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "872d2a7b-5249-494f-8bc3-85a5d3734559-attachment.json", "type": "application/json"}], "start": 1775605160577, "stop": 1775605160577}], "attachments": [{"name": "cURL", "source": "5c6063d0-82c4-4a06-b86a-0967e9e8bbfd-attachment.txt", "type": "text/plain"}], "start": 1775605160576, "stop": 1775605160577}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "959d65ab-04e5-4e42-b774-bbfd46df0d43-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "969c43b3-2d8f-427b-b93c-76f4e614da25-attachment.json", "type": "application/json"}], "start": 1775605162577, "stop": 1775605162577}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "6ab2acc9-bf0a-4abd-9d03-0168eadee028-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "df9b0cae-8284-4071-b299-14c26456c02e-attachment.txt", "type": "text/plain"}], "start": 1775605162577, "stop": 1775605162577}], "attachments": [{"name": "cURL", "source": "43db36f0-a759-49f0-9cf5-ed721575353b-attachment.txt", "type": "text/plain"}], "start": 1775605162577, "stop": 1775605162577}, {"name": "GET → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "478f661e-40be-4258-bf64-e7b9c0980818-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "538b1cc5-a80c-4e02-8989-41b65c577d49-attachment.json", "type": "application/json"}], "start": 1775605162786, "stop": 1775605162786}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "75013f09-86a5-4dcb-9804-7ec35b52e274-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "842220b3-ffcd-49a1-ab1c-fead91ab902a-attachment.json", "type": "application/json"}], "start": 1775605162786, "stop": 1775605162787}], "attachments": [{"name": "cURL", "source": "c6a05bfe-227a-4eed-aff4-67c26093c565-attachment.txt", "type": "text/plain"}], "start": 1775605162786, "stop": 1775605162787}, {"name": "Waiter function: wait_invoice_from_lk", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: GET https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002106' not found\",\"localizedMessage\":\"Инвойс с номером '410002106' не найден\"}; \n X-Aer-Trace-Id: 68b68edcf83559e90105857a363ec2da\n", "trace": "  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 289, in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/fmcg/validation/waiters/acceptance.py\", line 88, in wait_invoice_from_lk\n    root_request = InvoiceApi(headers=headers).api_v1_acceptance_invoice_invoice_number_get(\n                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api/invoice_api.py\", line 260, in api_v1_acceptance_invoice_invoice_number_get\n    return self.api_v1_acceptance_invoice_invoice_number_get_with_http_info(invoice_number, **kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api/invoice_api.py\", line 327, in api_v1_acceptance_invoice_invoice_number_get_with_http_info\n    return self.api_client.call_api(\n           ^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api_client.py\", line 339, in call_api\n    return self.__call_api(resource_path, method,\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_fmcg_be_service_acceptance/api_client.py\", line 172, in __call_api\n    assert response_data.status == expected_status_code, \\\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n"}, "steps": [{"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "713ad794-c893-4668-8a95-94c9c81316d2-attachment.json", "type": "application/json"}], "start": 1775605162816, "stop": 1775605162816}, {"name": "Response → 404, trace_id: 9ee3be37a69330c35cf9bb2a75ff31d8", "status": "passed", "attachments": [{"name": "response.headers", "source": "3a7905c9-d216-4458-9abd-b69516989f41-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bc32dd40-8696-4574-b91d-d838da431623-attachment.json", "type": "application/json"}], "start": 1775605162816, "stop": 1775605162816}], "attachments": [{"name": "cURL", "source": "8465e394-e524-4403-aa75-366c5fadfce5-attachment.txt", "type": "text/plain"}], "start": 1775605162815, "stop": 1775605162816}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ea7bf512-bf66-4e0e-b0e4-3ff1ea79be4e-attachment.json", "type": "application/json"}], "start": 1775605172844, "stop": 1775605172844}, {"name": "Response → 404, trace_id: e62e6287ece6cc906da90e263f4e9658", "status": "passed", "attachments": [{"name": "response.headers", "source": "fc19853b-d64e-404b-a045-8b051599b302-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4bda3328-42f6-4bc1-9c8c-0b20f97e65e2-attachment.json", "type": "application/json"}], "start": 1775605172844, "stop": 1775605172844}], "attachments": [{"name": "cURL", "source": "351fb4d3-3d42-4f14-8960-cea66d2ab279-attachment.txt", "type": "text/plain"}], "start": 1775605172844, "stop": 1775605172844}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9f2bc118-cd74-42b3-bdaf-324b7712550e-attachment.json", "type": "application/json"}], "start": 1775605182870, "stop": 1775605182870}, {"name": "Response → 404, trace_id: 5cae8ba56dfd3c0e06871b459bfdb55c", "status": "passed", "attachments": [{"name": "response.headers", "source": "655c2d6f-0ec0-4029-b5d3-8d912504eb82-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "772b64b7-062d-4a54-a3ac-4b0abb09e215-attachment.json", "type": "application/json"}], "start": 1775605182870, "stop": 1775605182870}], "attachments": [{"name": "cURL", "source": "e18113c0-1bbd-4c0e-b6d4-707d4dfe34cd-attachment.txt", "type": "text/plain"}], "start": 1775605182870, "stop": 1775605182870}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "72fa1b0c-e430-4465-b384-529f49df4a24-attachment.json", "type": "application/json"}], "start": 1775605192897, "stop": 1775605192897}, {"name": "Response → 404, trace_id: 72d19864feccfaa6d752cd7067542df1", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e4523f7-ff4b-4ecc-b4b1-72c2be4e3749-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9738e44a-3700-4f36-91bd-c0c18f536597-attachment.json", "type": "application/json"}], "start": 1775605192897, "stop": 1775605192897}], "attachments": [{"name": "cURL", "source": "96f9e272-11b9-476a-ab21-da5c75bc7ff1-attachment.txt", "type": "text/plain"}], "start": 1775605192897, "stop": 1775605192897}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2da6d6e5-60df-4240-a067-79f1dc5c0c8c-attachment.json", "type": "application/json"}], "start": 1775605202926, "stop": 1775605202927}, {"name": "Response → 404, trace_id: 0761c8f501ff68fbfc9cedd9758fa8bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "c8fb6d74-68a8-4612-acc1-7489f7e03605-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7e095fea-e38e-463e-b65c-61873606a5ed-attachment.json", "type": "application/json"}], "start": 1775605202927, "stop": 1775605202927}], "attachments": [{"name": "cURL", "source": "bcede617-15ce-418f-9830-aa816c1666b2-attachment.txt", "type": "text/plain"}], "start": 1775605202926, "stop": 1775605202927}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "09f7e8c9-8d9d-442d-9efb-be7f212a10ec-attachment.json", "type": "application/json"}], "start": 1775605212956, "stop": 1775605212957}, {"name": "Response → 404, trace_id: e1ca892758cf3e9a7b9eb3586afc1042", "status": "passed", "attachments": [{"name": "response.headers", "source": "1d15a9c4-972c-4f94-affc-37ca1bd527f8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "02950f34-ef0e-4192-818a-3b28cc5bc7eb-attachment.json", "type": "application/json"}], "start": 1775605212957, "stop": 1775605212957}], "attachments": [{"name": "cURL", "source": "eb2ea872-8df7-4289-86e0-7a3cef2bcde9-attachment.txt", "type": "text/plain"}], "start": 1775605212956, "stop": 1775605212957}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "71473a4c-234a-472a-8924-13f939676671-attachment.json", "type": "application/json"}], "start": 1775605222987, "stop": 1775605222987}, {"name": "Response → 404, trace_id: e008df7e2e5bafa2b81e739bfec8cefb", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6273f54-bcf6-42bf-bdfd-0f0093e52df1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "edc0e047-90ef-432a-8fa1-5f01316918d6-attachment.json", "type": "application/json"}], "start": 1775605222987, "stop": 1775605222988}], "attachments": [{"name": "cURL", "source": "d7b078e2-ffaa-4576-a78b-ef92c344b162-attachment.txt", "type": "text/plain"}], "start": 1775605222987, "stop": 1775605222988}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3133846d-e9bf-4bc4-84a5-4b7bcc414ceb-attachment.json", "type": "application/json"}], "start": 1775605233017, "stop": 1775605233017}, {"name": "Response → 404, trace_id: b8ba80ae909e61411c4a795b26398266", "status": "passed", "attachments": [{"name": "response.headers", "source": "787e1818-0f4a-4cd8-a519-67ee08962b1a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bcae8490-7f20-48de-b0ad-ae13dbe8b72d-attachment.json", "type": "application/json"}], "start": 1775605233017, "stop": 1775605233017}], "attachments": [{"name": "cURL", "source": "c7dc7650-132c-4ddf-97cc-ab3ad11a8fb6-attachment.txt", "type": "text/plain"}], "start": 1775605233017, "stop": 1775605233017}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0b3c31c0-beba-4009-a108-189610f6e8aa-attachment.json", "type": "application/json"}], "start": 1775605243044, "stop": 1775605243044}, {"name": "Response → 404, trace_id: 2a753340a68499d13ec6e0bc59ace205", "status": "passed", "attachments": [{"name": "response.headers", "source": "6c2d1dc9-ff52-48b1-b511-42b7987777b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fd969c6f-6722-4ed9-a8e1-69fdde5bb53a-attachment.json", "type": "application/json"}], "start": 1775605243045, "stop": 1775605243045}], "attachments": [{"name": "cURL", "source": "4431d324-aae1-4e32-8c23-8dccc26f75a0-attachment.txt", "type": "text/plain"}], "start": 1775605243044, "stop": 1775605243045}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002106", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d07b0106-0bd5-4642-bffd-bd91aacd6966-attachment.json", "type": "application/json"}], "start": 1775605253070, "stop": 1775605253070}, {"name": "Response → 404, trace_id: 68b68edcf83559e90105857a363ec2da", "status": "passed", "attachments": [{"name": "response.headers", "source": "bc20c29b-69a5-4744-a4a5-0e1eaac4d253-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cd5e2c98-7751-48cb-bd4a-9cbfefb551af-attachment.json", "type": "application/json"}], "start": 1775605253070, "stop": 1775605253071}], "attachments": [{"name": "cURL", "source": "27149dcc-c2ac-4f60-8c18-1a4d17fa9899-attachment.txt", "type": "text/plain"}], "start": 1775605253070, "stop": 1775605253071}], "start": 1775605162789, "stop": 1775605253073}], "attachments": [{"name": "log", "source": "768198f8-bfb4-4220-8291-b1cee379353b-attachment.txt", "type": "text/plain"}], "start": 1775605158771, "stop": 1775605253074, "uuid": "dfbbe639-c782-4930-87a7-59cb72df8faa", "historyId": "28535b5a285cbb2b359ea9b8cf9f0ca5", "testCaseId": "28535b5a285cbb2b359ea9b8cf9f0ca5", "fullName": "tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService#test_manual_invoice", "labels": [{"name": "tag", "value": "dm-fmcg-be-service-lk"}, {"name": "parentSuite", "value": "tests.fmcg.test_lk"}, {"name": "suite", "value": "test_integration"}, {"name": "subSuite", "value": "TestIntegrationWithAcceptanceService"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-joxwe6sr"}, {"name": "thread", "value": "24-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.fmcg.test_lk.test_integration"}], "titlePath": ["tests", "fmcg", "test_lk", "test_integration.py", "TestIntegrationWithAcceptanceService"]}