{"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/410002162; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002162' not found\",\"localizedMessage\":\"Инвойс с номером '410002162' не найден\"}; \n X-Aer-Trace-Id: 6c4c38d2d7ee91228c3c6cd8819df45f", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x7ac6e45fcad0>\nget_fmcg_auth_header = {'Authorization': 'Bearer 1a592f92-8a0d-4b0c-be7c-f20c37a07090', '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 0x7ac6e359b990>\nresource_path = '/api/v1/acceptance/invoice/410002162', method = 'GET'\npath_params = [('invoiceNumber', '410002162')], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 1a592f92-8a0d-4b0c-be7c-f20c37a07090', '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/410002162; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002162' not found\",\"localizedMessage\":\"Инвойс с номером '410002162' не найден\"}; \nE            X-Aer-Trace-Id: 6c4c38d2d7ee91228c3c6cd8819df45f\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": "af589b77-95a8-4df7-9771-66fb2c9f62db-attachment.json", "type": "application/json"}], "start": 1775691553034, "stop": 1775691553034}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "94f0d075-fb35-4762-94fa-4d8ebf547945-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5e5b8624-4c90-4b3f-b387-4e91fd7686e1-attachment.json", "type": "application/json"}], "start": 1775691553034, "stop": 1775691553035}], "attachments": [{"name": "cURL", "source": "d11179a7-de92-4b1d-b621-2117b4803046-attachment.txt", "type": "text/plain"}], "start": 1775691553034, "stop": 1775691553035}, {"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": "9bd48c4a-b789-4405-887f-43d97fddc1b9-attachment.json", "type": "application/json"}], "start": 1775691553077, "stop": 1775691553077}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "20a607d2-ca0f-4782-9714-df7d23c6f6af-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6f2578d5-b06a-4548-87b7-2f188f1c4e4f-attachment.json", "type": "application/json"}], "start": 1775691553077, "stop": 1775691553077}], "attachments": [{"name": "cURL", "source": "4f5b4883-5450-47d3-9d51-ca642253e907-attachment.txt", "type": "text/plain"}], "start": 1775691553077, "stop": 1775691553077}, {"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": "1b083945-5fdf-4976-852f-b98b2eae57e1-attachment.json", "type": "application/json"}], "start": 1775691553125, "stop": 1775691553125}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "df76640a-e0af-4504-befe-36e3ef4832b6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "94c5804b-1569-426a-8d30-75c7ce69154a-attachment.json", "type": "application/json"}], "start": 1775691553125, "stop": 1775691553125}], "attachments": [{"name": "cURL", "source": "5f2669c5-717f-4f9e-bbb7-072f1971adb0-attachment.txt", "type": "text/plain"}], "start": 1775691553125, "stop": 1775691553125}, {"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": "fb2b96e3-6c21-4a11-89f0-a6fd25bd2890-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a5127b6f-59de-47c3-b726-ceac5154eef2-attachment.json", "type": "application/json"}], "start": 1775691553185, "stop": 1775691553185}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "b9a52cf4-31e7-455e-a9f1-349959c77735-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3a136b3b-5660-4864-896c-ecdbf08358fd-attachment.json", "type": "application/json"}], "start": 1775691553185, "stop": 1775691553185}], "attachments": [{"name": "cURL", "source": "28d0adfd-e2ac-4e83-95b9-f5a324ad1029-attachment.txt", "type": "text/plain"}], "start": 1775691553185, "stop": 1775691553185}, {"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": "7db1ff8d-9824-4a5b-a9e8-accb16dffb1a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d621a9f8-e514-43cd-8d46-0290f0d53146-attachment.json", "type": "application/json"}], "start": 1775691553293, "stop": 1775691553293}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d3c24a2e-4df5-4f80-ba46-ed09ac2726d6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "766b2ba9-9ec8-46ef-a066-b4603ab10fff-attachment.json", "type": "application/json"}], "start": 1775691553293, "stop": 1775691553293}], "attachments": [{"name": "cURL", "source": "13bb8f7a-3c4d-4579-9510-2bf4e2a50fd3-attachment.txt", "type": "text/plain"}], "start": 1775691553293, "stop": 1775691553293}, {"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": "3517360a-5a67-4b54-bf3e-a41a8ad964fc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "947a7e63-0867-404c-b845-bb6b7ba0df59-attachment.json", "type": "application/json"}], "start": 1775691553386, "stop": 1775691553387}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "4571a9d1-5737-4d21-aebe-69c300ed2400-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "399820ae-ea4e-4862-9ef5-dc0f7b1dce1f-attachment.json", "type": "application/json"}], "start": 1775691553387, "stop": 1775691553387}], "attachments": [{"name": "cURL", "source": "a1d646ec-2776-4f75-a01f-df10d42c6451-attachment.txt", "type": "text/plain"}], "start": 1775691553386, "stop": 1775691553387}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f3f1f22c-8471-479c-bfc9-5220da08f88a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a34534e0-1d50-44ca-82f8-b90210c58ca9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "70d228e0-450e-4cb1-a219-ff336a88d631-attachment.json", "type": "application/json"}], "start": 1775691553480, "stop": 1775691553480}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "0fd762c7-8434-4e91-8635-94f7ad4ab3e7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0d536216-fd25-413e-86f2-e8edc4664e41-attachment.json", "type": "application/json"}], "start": 1775691553480, "stop": 1775691553480}], "attachments": [{"name": "cURL", "source": "516712d1-9453-4bde-9889-7703b7410443-attachment.txt", "type": "text/plain"}], "start": 1775691553480, "stop": 1775691553480}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c9732269-671b-4c5a-b919-3701308c603f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8dc4fbd9-5f92-4636-b5f6-183936373219-attachment.json", "type": "application/json"}], "start": 1775691555777, "stop": 1775691555777}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "7b466e22-9812-4100-a974-10ece3dc0338-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e849d677-37a2-4a59-8a6f-69e47b0a329b-attachment.txt", "type": "text/plain"}], "start": 1775691555777, "stop": 1775691555778}], "attachments": [{"name": "cURL", "source": "abc9fee6-1b1a-482a-b65b-97c30beaa437-attachment.txt", "type": "text/plain"}], "start": 1775691555777, "stop": 1775691555778}, {"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": "d4ebfdf0-190e-4f09-a281-c8121ec066ee-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e536f943-5017-4b98-8204-34e480e70dc2-attachment.json", "type": "application/json"}], "start": 1775691556095, "stop": 1775691556095}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "b57ba0bf-f96a-4d8f-a836-43cb5145e769-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2085c60b-8c18-4c8c-b191-b08b1efd0823-attachment.json", "type": "application/json"}], "start": 1775691556095, "stop": 1775691556095}], "attachments": [{"name": "cURL", "source": "528a9eb3-ddfc-4e10-abeb-af941d8dc0b8-attachment.txt", "type": "text/plain"}], "start": 1775691556095, "stop": 1775691556095}, {"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/410002162; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002162' not found\",\"localizedMessage\":\"Инвойс с номером '410002162' не найден\"}; \n X-Aer-Trace-Id: 6c4c38d2d7ee91228c3c6cd8819df45f\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/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8a06a036-8fab-4989-93cd-e1352a2b047f-attachment.json", "type": "application/json"}], "start": 1775691556241, "stop": 1775691556242}, {"name": "Response → 404, trace_id: 3475a7fe521658b87f79a79a116a622e", "status": "passed", "attachments": [{"name": "response.headers", "source": "bee308d5-cabe-457c-a739-3973808bf11b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c28381db-4aed-4d65-9d5b-e4d0720e7470-attachment.json", "type": "application/json"}], "start": 1775691556242, "stop": 1775691556242}], "attachments": [{"name": "cURL", "source": "1dc973d9-1bf4-44ce-bf43-53f5fa690fa3-attachment.txt", "type": "text/plain"}], "start": 1775691556241, "stop": 1775691556242}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3bd033c6-4057-4fc3-84a3-9fc254a69775-attachment.json", "type": "application/json"}], "start": 1775691566269, "stop": 1775691566269}, {"name": "Response → 404, trace_id: 71a110131f456389c8823d5b542da436", "status": "passed", "attachments": [{"name": "response.headers", "source": "b2c2f8cc-3680-46b6-bf5e-b8de5c85021d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "293e7d2f-0cca-45a4-af76-27216fee79fc-attachment.json", "type": "application/json"}], "start": 1775691566269, "stop": 1775691566269}], "attachments": [{"name": "cURL", "source": "6c7add49-7a87-42e1-9a22-03d02d0a349e-attachment.txt", "type": "text/plain"}], "start": 1775691566269, "stop": 1775691566269}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7863ed32-d2a9-44f1-9fa3-ebd810efa82b-attachment.json", "type": "application/json"}], "start": 1775691576301, "stop": 1775691576301}, {"name": "Response → 404, trace_id: ab56a1103b093f9fbadcb12a21c9b09d", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8b8cfb4-7e55-46d9-81ff-d3ade6434ea6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "46223564-e39f-47b2-bab3-5a90adc9d783-attachment.json", "type": "application/json"}], "start": 1775691576301, "stop": 1775691576302}], "attachments": [{"name": "cURL", "source": "eab76cba-e3fa-4dd5-9b63-207160e6eaa4-attachment.txt", "type": "text/plain"}], "start": 1775691576301, "stop": 1775691576302}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "837dc65f-1b5e-497d-8470-444c083a9fbc-attachment.json", "type": "application/json"}], "start": 1775691586328, "stop": 1775691586328}, {"name": "Response → 404, trace_id: 3c64c47455cf02f58e18ca06cc070338", "status": "passed", "attachments": [{"name": "response.headers", "source": "fd4d5aa9-8f7d-4a6e-b834-7d13026697e8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f987dea1-1fc9-4799-ae1e-6862c41965de-attachment.json", "type": "application/json"}], "start": 1775691586328, "stop": 1775691586329}], "attachments": [{"name": "cURL", "source": "af158e67-57a1-4de4-afff-5280bb766bba-attachment.txt", "type": "text/plain"}], "start": 1775691586328, "stop": 1775691586329}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9264b390-27a2-4b03-b778-ed1669a48a84-attachment.json", "type": "application/json"}], "start": 1775691596360, "stop": 1775691596360}, {"name": "Response → 404, trace_id: be1d681b5c737ab71ec2ce04d51ee4f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "751d21dc-6f1a-46c3-8ef7-1ba8babd28fe-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cd506d1b-625d-44f2-97af-842ca969c8a0-attachment.json", "type": "application/json"}], "start": 1775691596360, "stop": 1775691596360}], "attachments": [{"name": "cURL", "source": "9fea96a8-bd37-4ab9-99ad-b9427d24a79b-attachment.txt", "type": "text/plain"}], "start": 1775691596360, "stop": 1775691596360}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "400404db-95e1-47c3-b6ea-d842190cf09d-attachment.json", "type": "application/json"}], "start": 1775691606387, "stop": 1775691606388}, {"name": "Response → 404, trace_id: a550a8fe3264bf1b4842028f8b7d798c", "status": "passed", "attachments": [{"name": "response.headers", "source": "6877b0f9-4d72-44bb-aa00-43d194245d87-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a2755d12-d6e9-455a-ad16-10d31fdd0cef-attachment.json", "type": "application/json"}], "start": 1775691606388, "stop": 1775691606388}], "attachments": [{"name": "cURL", "source": "abf85b98-277b-4f32-b0dd-66971f4fce4a-attachment.txt", "type": "text/plain"}], "start": 1775691606387, "stop": 1775691606388}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f43b4cbd-fa3e-4037-82b8-8f1ba9ec4a90-attachment.json", "type": "application/json"}], "start": 1775691616419, "stop": 1775691616419}, {"name": "Response → 404, trace_id: 5f6c5ad4a6411ee5fd550bdb119160ec", "status": "passed", "attachments": [{"name": "response.headers", "source": "21f067ce-9223-4e70-b302-0f6a70d506e1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7b6aa9ca-ee76-47e2-ada0-c69213c11db3-attachment.json", "type": "application/json"}], "start": 1775691616419, "stop": 1775691616419}], "attachments": [{"name": "cURL", "source": "d5fbb02a-a98d-4521-99d2-a3d28e0ca351-attachment.txt", "type": "text/plain"}], "start": 1775691616419, "stop": 1775691616419}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "54f7283c-95ab-4513-9201-a13f12c6a845-attachment.json", "type": "application/json"}], "start": 1775691626448, "stop": 1775691626448}, {"name": "Response → 404, trace_id: f4196d8d9b0cdf221023708bb1df5e96", "status": "passed", "attachments": [{"name": "response.headers", "source": "2dbd1627-5383-4c00-ab08-4a8e66bde116-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b0b13a5d-21e4-469d-a907-a810e5825b05-attachment.json", "type": "application/json"}], "start": 1775691626448, "stop": 1775691626448}], "attachments": [{"name": "cURL", "source": "056ef39c-0267-4dc4-9f87-1a32d479b4ad-attachment.txt", "type": "text/plain"}], "start": 1775691626448, "stop": 1775691626448}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1febcdbc-d0a9-4923-8b8a-4ec8a0dfa325-attachment.json", "type": "application/json"}], "start": 1775691636478, "stop": 1775691636478}, {"name": "Response → 404, trace_id: 67417071f0a9963c5194102857a2d1c4", "status": "passed", "attachments": [{"name": "response.headers", "source": "f32031fd-fbc5-4734-8246-f4c546896ac4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dbca0978-69c9-4feb-b2cf-468565a4de83-attachment.json", "type": "application/json"}], "start": 1775691636478, "stop": 1775691636478}], "attachments": [{"name": "cURL", "source": "f36be1d0-686d-4310-a741-6a6ad0ec3746-attachment.txt", "type": "text/plain"}], "start": 1775691636478, "stop": 1775691636478}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002162", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4c336c99-215f-41dd-aaaa-25aba2dd3ca2-attachment.json", "type": "application/json"}], "start": 1775691646505, "stop": 1775691646505}, {"name": "Response → 404, trace_id: 6c4c38d2d7ee91228c3c6cd8819df45f", "status": "passed", "attachments": [{"name": "response.headers", "source": "239a441b-333c-4203-a861-12d777b39f1f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e265936b-70ab-41b9-8689-c756f345b30b-attachment.json", "type": "application/json"}], "start": 1775691646505, "stop": 1775691646505}], "attachments": [{"name": "cURL", "source": "68a6b5fd-5f8d-4e79-bb5f-1be11c649d5d-attachment.txt", "type": "text/plain"}], "start": 1775691646505, "stop": 1775691646505}], "start": 1775691556098, "stop": 1775691646508}], "attachments": [{"name": "log", "source": "56874b2d-3c47-403c-ac42-1e75d254ce46-attachment.txt", "type": "text/plain"}], "start": 1775691552655, "stop": 1775691646509, "uuid": "129a2889-4d27-4533-98c8-1092c487e786", "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-7znb8869"}, {"name": "thread", "value": "42-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"]}