{"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/410002192; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002192' not found\",\"localizedMessage\":\"Инвойс с номером '410002192' не найден\"}; \n X-Aer-Trace-Id: 383eed4949a204dad05738583837d1fb", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x7d9d0152cc50>\nget_fmcg_auth_header = {'Authorization': 'Bearer 7f4a1d4c-d3a8-432f-bb03-71739caa4d73', '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 0x7d9d009896d0>\nresource_path = '/api/v1/acceptance/invoice/410002192', method = 'GET'\npath_params = [('invoiceNumber', '410002192')], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 7f4a1d4c-d3a8-432f-bb03-71739caa4d73', '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/410002192; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002192' not found\",\"localizedMessage\":\"Инвойс с номером '410002192' не найден\"}; \nE            X-Aer-Trace-Id: 383eed4949a204dad05738583837d1fb\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": "e7178141-6571-4491-8abd-da385dc03282-attachment.json", "type": "application/json"}], "start": 1775777954252, "stop": 1775777954253}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "aee7843b-51c3-46b7-a760-06fb2f43cf17-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c3d6a05d-3b30-4511-8d71-30b1e75e895f-attachment.json", "type": "application/json"}], "start": 1775777954253, "stop": 1775777954253}], "attachments": [{"name": "cURL", "source": "08f692bc-3c5b-49e9-a19e-5c2c435beb45-attachment.txt", "type": "text/plain"}], "start": 1775777954252, "stop": 1775777954253}, {"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": "0e1a5356-1f70-4ce8-8ce3-5da1bc526000-attachment.json", "type": "application/json"}], "start": 1775777954277, "stop": 1775777954277}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "b1414a07-848b-47a0-87b4-9ea7dae5c703-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2e080582-5756-46b9-94c6-937986251d9f-attachment.json", "type": "application/json"}], "start": 1775777954277, "stop": 1775777954277}], "attachments": [{"name": "cURL", "source": "81526f8a-c0ca-4733-8ac1-afc22cbcd769-attachment.txt", "type": "text/plain"}], "start": 1775777954277, "stop": 1775777954277}, {"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": "a341f440-0190-4c22-907f-bb7ff3148b99-attachment.json", "type": "application/json"}], "start": 1775777954336, "stop": 1775777954336}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d1e7ddc8-9337-4f11-8841-4ae876d46586-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c91dd176-92db-4a6c-b9a6-ea949aceaacf-attachment.json", "type": "application/json"}], "start": 1775777954336, "stop": 1775777954336}], "attachments": [{"name": "cURL", "source": "b04bc2f6-7c00-42b6-9d37-b68b54eb3785-attachment.txt", "type": "text/plain"}], "start": 1775777954336, "stop": 1775777954336}, {"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": "83c4aafa-107e-4380-8f56-f011de234919-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "736ac8ef-52f8-4cf5-aca6-f0288e68d02f-attachment.json", "type": "application/json"}], "start": 1775777954390, "stop": 1775777954390}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "890b53a0-0395-4c42-9149-07fa3989421e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "43929921-9dad-43bb-8206-3c24b3faea56-attachment.json", "type": "application/json"}], "start": 1775777954390, "stop": 1775777954390}], "attachments": [{"name": "cURL", "source": "49d02aa3-4a15-4c31-9b7e-8cad1188ea8c-attachment.txt", "type": "text/plain"}], "start": 1775777954390, "stop": 1775777954391}, {"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": "11786aa9-c47d-4105-a6fd-68ae716f3cf9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ce42a609-953d-4ee0-b601-c7c316ab4b15-attachment.json", "type": "application/json"}], "start": 1775777954580, "stop": 1775777954580}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "408f6ffc-ba6f-4948-a9a5-1f123b3d7c36-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "710ccc63-6cf7-42a6-8c4b-62b0b61bc8a4-attachment.json", "type": "application/json"}], "start": 1775777954580, "stop": 1775777954581}], "attachments": [{"name": "cURL", "source": "044d3278-e008-400b-8e07-f4697461a5c1-attachment.txt", "type": "text/plain"}], "start": 1775777954580, "stop": 1775777954581}, {"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": "325d0202-3cfc-482f-917f-31ec03cd49ee-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4791e232-a08d-4436-809e-4ad3f2fd926f-attachment.json", "type": "application/json"}], "start": 1775777955086, "stop": 1775777955086}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d837b9e3-587c-4dfc-9419-b2f34f1e49cb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ad92c22c-389e-4d94-a4b9-30127183e376-attachment.json", "type": "application/json"}], "start": 1775777955086, "stop": 1775777955086}], "attachments": [{"name": "cURL", "source": "2ffebd71-2ce1-4a09-a421-591396469b6a-attachment.txt", "type": "text/plain"}], "start": 1775777955086, "stop": 1775777955087}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d38b2883-6b11-45fe-a260-cf5f01ad3cf6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "eca3f62b-10fc-4faf-b6fa-9e307e7138ab-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "43b4dfc4-3634-4326-ad87-fdb5486d820d-attachment.json", "type": "application/json"}], "start": 1775777955785, "stop": 1775777955785}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "c32e4430-e01f-4c94-a492-7ca5b58514c4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4f1bab66-9523-420c-8e64-2723db5afcf0-attachment.json", "type": "application/json"}], "start": 1775777955785, "stop": 1775777955786}], "attachments": [{"name": "cURL", "source": "44b5e310-1830-40af-916c-b730a35c8df4-attachment.txt", "type": "text/plain"}], "start": 1775777955785, "stop": 1775777955786}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "05e73262-4346-4aa1-9f23-4bb510420114-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "64ae9d1f-8290-42d5-ae41-8f05609c2e7a-attachment.json", "type": "application/json"}], "start": 1775777957501, "stop": 1775777957501}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "20f24542-7205-442a-af65-7193c14778c7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "def6bfbe-9c5d-4736-99ce-21cb3e119828-attachment.txt", "type": "text/plain"}], "start": 1775777957501, "stop": 1775777957501}], "attachments": [{"name": "cURL", "source": "dff172f6-d0c9-4d53-9914-1d2945cedf75-attachment.txt", "type": "text/plain"}], "start": 1775777957501, "stop": 1775777957501}, {"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": "4e0d4cae-bb9b-448f-a5ee-1a0b700e41a1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "13844c89-6ee6-4d57-97da-dd8e0fa8fbf9-attachment.json", "type": "application/json"}], "start": 1775777957687, "stop": 1775777957687}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "3b23409b-04d8-477f-9c1f-0c9c04989d09-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7b07158b-6965-4bd5-8c88-3e2cfc3eb84e-attachment.json", "type": "application/json"}], "start": 1775777957687, "stop": 1775777957687}], "attachments": [{"name": "cURL", "source": "14edadb3-310e-48b6-85ce-927a530b748e-attachment.txt", "type": "text/plain"}], "start": 1775777957687, "stop": 1775777957687}, {"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/410002192; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002192' not found\",\"localizedMessage\":\"Инвойс с номером '410002192' не найден\"}; \n X-Aer-Trace-Id: 383eed4949a204dad05738583837d1fb\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/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "aa130453-ac56-4ed2-9b97-f7aba397053b-attachment.json", "type": "application/json"}], "start": 1775777957722, "stop": 1775777957722}, {"name": "Response → 404, trace_id: 4b84050d536910765a7b3d4e9b406972", "status": "passed", "attachments": [{"name": "response.headers", "source": "196ff409-ebec-4f1c-a898-a5d45a0c3a91-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ebef7591-1651-4b87-99b1-6e0c8881cd94-attachment.json", "type": "application/json"}], "start": 1775777957722, "stop": 1775777957722}], "attachments": [{"name": "cURL", "source": "62ae38b4-7a63-433b-8522-ece42f0f7993-attachment.txt", "type": "text/plain"}], "start": 1775777957722, "stop": 1775777957722}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dec4f000-c6a8-4c84-9b72-3803e3856e5e-attachment.json", "type": "application/json"}], "start": 1775777967746, "stop": 1775777967746}, {"name": "Response → 404, trace_id: dac8beb8cb7dae064a33ba313a22f0e0", "status": "passed", "attachments": [{"name": "response.headers", "source": "6e6b83bc-3d12-4733-ad0a-c1edb0cd11a0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9519f8f5-1759-4102-a738-8280777d363b-attachment.json", "type": "application/json"}], "start": 1775777967746, "stop": 1775777967746}], "attachments": [{"name": "cURL", "source": "2ec5ff28-7ada-4698-a234-3ff90fd9fb3c-attachment.txt", "type": "text/plain"}], "start": 1775777967746, "stop": 1775777967746}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ab672d09-55c7-4320-b59b-7ea4b784f02a-attachment.json", "type": "application/json"}], "start": 1775777977773, "stop": 1775777977774}, {"name": "Response → 404, trace_id: 5e12a8efeee11265bc47bb5700f2b5ac", "status": "passed", "attachments": [{"name": "response.headers", "source": "3f41e177-1943-4fce-849f-62bc4ca9ddba-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d4fe33a2-d69a-433f-96bf-d3d1287d67e5-attachment.json", "type": "application/json"}], "start": 1775777977774, "stop": 1775777977774}], "attachments": [{"name": "cURL", "source": "914bb409-1454-4131-b2bf-8dbea2ee6105-attachment.txt", "type": "text/plain"}], "start": 1775777977773, "stop": 1775777977774}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "aabb8ac0-fee9-4541-bf7a-aed2a05c6cff-attachment.json", "type": "application/json"}], "start": 1775777987802, "stop": 1775777987802}, {"name": "Response → 404, trace_id: 5fe4e8c346898b30875734062876519d", "status": "passed", "attachments": [{"name": "response.headers", "source": "2574a0b1-2ef4-4a38-b70d-576947cab48a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "77fd621d-0084-46da-8678-5e86df880fd1-attachment.json", "type": "application/json"}], "start": 1775777987802, "stop": 1775777987803}], "attachments": [{"name": "cURL", "source": "8c1af399-2d30-479e-be23-49eddf5e636f-attachment.txt", "type": "text/plain"}], "start": 1775777987802, "stop": 1775777987803}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a377618e-d7da-4baf-a385-5db3f7c51010-attachment.json", "type": "application/json"}], "start": 1775777997831, "stop": 1775777997832}, {"name": "Response → 404, trace_id: 10b466e394b31ba725296038fcd745c1", "status": "passed", "attachments": [{"name": "response.headers", "source": "2f14e1e6-b7af-4ed5-98c1-e3e68f4bfbe9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "98eafa28-0025-4afe-ac03-28dea66f2994-attachment.json", "type": "application/json"}], "start": 1775777997832, "stop": 1775777997832}], "attachments": [{"name": "cURL", "source": "28984322-2141-4713-a3dd-62d0f4f971dc-attachment.txt", "type": "text/plain"}], "start": 1775777997831, "stop": 1775777997832}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "758cc65e-158d-4da2-b88e-fc93dfc86ca1-attachment.json", "type": "application/json"}], "start": 1775778007860, "stop": 1775778007860}, {"name": "Response → 404, trace_id: b6545d31754b3ff407a10d9793dad048", "status": "passed", "attachments": [{"name": "response.headers", "source": "308768b4-c424-467b-b8ab-fa05d1b68e39-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "baa59c85-c976-44d6-81a2-c15448c83f56-attachment.json", "type": "application/json"}], "start": 1775778007860, "stop": 1775778007861}], "attachments": [{"name": "cURL", "source": "3e233906-ccb3-4697-91a5-67f507d18185-attachment.txt", "type": "text/plain"}], "start": 1775778007860, "stop": 1775778007861}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0624cf35-91e0-4cc5-9577-1a4d09b443ca-attachment.json", "type": "application/json"}], "start": 1775778017890, "stop": 1775778017891}, {"name": "Response → 404, trace_id: dd6495751dc22147a8b4dea66a0e0d54", "status": "passed", "attachments": [{"name": "response.headers", "source": "a7a72062-f087-4b07-9ba6-517f910fe534-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "863e6f2b-cfce-4459-9236-21aaac4da8c8-attachment.json", "type": "application/json"}], "start": 1775778017891, "stop": 1775778017891}], "attachments": [{"name": "cURL", "source": "a982702a-f2d2-44a9-8e5d-5e1c992f02c3-attachment.txt", "type": "text/plain"}], "start": 1775778017890, "stop": 1775778017891}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5ba55eec-f40c-4e11-a49d-1b96c7c2c3b3-attachment.json", "type": "application/json"}], "start": 1775778027917, "stop": 1775778027917}, {"name": "Response → 404, trace_id: abb5ba5e56f57139ee8289b62e99438f", "status": "passed", "attachments": [{"name": "response.headers", "source": "1657b920-0bdd-4d18-a5e9-f8f0f5dd85b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4eead7e7-4321-4434-be81-6407203cbfac-attachment.json", "type": "application/json"}], "start": 1775778027917, "stop": 1775778027917}], "attachments": [{"name": "cURL", "source": "40f242cb-cf76-4d30-9b79-d7c1c3037d30-attachment.txt", "type": "text/plain"}], "start": 1775778027917, "stop": 1775778027917}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9b59327e-dbcc-4ba2-ac88-81f020ff1291-attachment.json", "type": "application/json"}], "start": 1775778037945, "stop": 1775778037945}, {"name": "Response → 404, trace_id: eeaf719f4eee81c98a7f7334b9fda525", "status": "passed", "attachments": [{"name": "response.headers", "source": "fa7a97ed-9459-4e89-8176-219babe66f4e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "92599449-fdf0-4fbc-b56b-a1880b9a57a7-attachment.json", "type": "application/json"}], "start": 1775778037945, "stop": 1775778037945}], "attachments": [{"name": "cURL", "source": "4f1b1832-a94b-45b0-9b45-1eea4c183fef-attachment.txt", "type": "text/plain"}], "start": 1775778037944, "stop": 1775778037945}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002192", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "06ce43bd-0738-48de-b22c-3e49e2ad320b-attachment.json", "type": "application/json"}], "start": 1775778047972, "stop": 1775778047973}, {"name": "Response → 404, trace_id: 383eed4949a204dad05738583837d1fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "be2c40a5-54aa-4665-bce5-b990424c5e3e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5ce9165d-66d7-40c4-9318-86a7cd65099c-attachment.json", "type": "application/json"}], "start": 1775778047973, "stop": 1775778047973}], "attachments": [{"name": "cURL", "source": "93931f6c-ae5f-47a5-9313-07b9087dfb5f-attachment.txt", "type": "text/plain"}], "start": 1775778047972, "stop": 1775778047973}], "start": 1775777957691, "stop": 1775778047975}], "attachments": [{"name": "log", "source": "7006c3bf-89c1-4dfe-81c3-4d32471549b0-attachment.txt", "type": "text/plain"}], "start": 1775777954174, "stop": 1775778047976, "uuid": "0f4a919c-284d-4c8a-a25e-f45dda6d375b", "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-xlaoy098"}, {"name": "thread", "value": "45-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"]}