{"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/410002064; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002064' not found\",\"localizedMessage\":\"Инвойс с номером '410002064' не найден\"}; \n X-Aer-Trace-Id: fcbb98a00b7786a69265cd806b9d21a1", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x7e8b72a64b90>\nget_fmcg_auth_header = {'Authorization': 'Bearer a360ca1c-f709-4d55-b77a-44864fb21fd1', '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 0x7e8b71bf1cd0>\nresource_path = '/api/v1/acceptance/invoice/410002064', method = 'GET'\npath_params = [('invoiceNumber', '410002064')], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer a360ca1c-f709-4d55-b77a-44864fb21fd1', '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/410002064; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002064' not found\",\"localizedMessage\":\"Инвойс с номером '410002064' не найден\"}; \nE            X-Aer-Trace-Id: fcbb98a00b7786a69265cd806b9d21a1\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": "862df476-6b97-4305-8dda-f89ecfdccf86-attachment.json", "type": "application/json"}], "start": 1775518757766, "stop": 1775518757766}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "1d8787b2-cec2-4eb9-be3b-0a7557f9833f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "de43c2f3-5d78-47da-8ab6-be6c03912177-attachment.json", "type": "application/json"}], "start": 1775518757766, "stop": 1775518757766}], "attachments": [{"name": "cURL", "source": "24979d52-6a9c-40f9-9813-21e55c408013-attachment.txt", "type": "text/plain"}], "start": 1775518757766, "stop": 1775518757766}, {"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": "a2aa0c9b-69b1-429d-86d7-6e0abfd03bc0-attachment.json", "type": "application/json"}], "start": 1775518757792, "stop": 1775518757792}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "9c4bbd6b-b0fc-4668-b6e1-a64823e0ddb3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "938c9b4f-c198-47ec-8d62-77b3c7bac283-attachment.json", "type": "application/json"}], "start": 1775518757792, "stop": 1775518757792}], "attachments": [{"name": "cURL", "source": "31c4a089-d2b2-4939-b2e6-a096cb9ffad6-attachment.txt", "type": "text/plain"}], "start": 1775518757792, "stop": 1775518757793}, {"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": "a9685a33-f565-4b9d-a31b-1b4b80ed7c44-attachment.json", "type": "application/json"}], "start": 1775518757864, "stop": 1775518757864}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "57a21fe4-668b-49cd-a671-eaee50cc4496-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dca9828e-ec10-42ff-aa4f-6a44605b0aae-attachment.json", "type": "application/json"}], "start": 1775518757864, "stop": 1775518757865}], "attachments": [{"name": "cURL", "source": "68973047-690c-4bc0-ad60-d33dde0f5cfe-attachment.txt", "type": "text/plain"}], "start": 1775518757864, "stop": 1775518757865}, {"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": "0a9d5553-b3b7-4e4c-b688-ced7351f6573-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "aa498c00-8836-406c-8c9d-91c3e611c282-attachment.json", "type": "application/json"}], "start": 1775518757955, "stop": 1775518757956}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "def2edd3-38ce-4e8e-9543-27b3219bfe78-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ecd19301-85fb-489b-a6ea-bd6a23949b04-attachment.json", "type": "application/json"}], "start": 1775518757956, "stop": 1775518757956}], "attachments": [{"name": "cURL", "source": "f67194f9-f499-4643-995a-ae2ba0245522-attachment.txt", "type": "text/plain"}], "start": 1775518757955, "stop": 1775518757956}, {"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": "55678aa8-4b3f-4f53-a554-00f6ae66c584-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6a40e0fc-a558-4b1e-8418-0e0181f8ae97-attachment.json", "type": "application/json"}], "start": 1775518758165, "stop": 1775518758165}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "102f9f97-e413-4383-8283-4e1d329f6665-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "66dcf47b-6318-4465-8278-6ee49bf2e6d4-attachment.json", "type": "application/json"}], "start": 1775518758165, "stop": 1775518758165}], "attachments": [{"name": "cURL", "source": "e4b56eb2-0b18-4b36-8c2b-58093e5723b1-attachment.txt", "type": "text/plain"}], "start": 1775518758165, "stop": 1775518758165}, {"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": "a1398699-92e3-470b-8593-d79108d189af-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e4e49410-a615-4e99-9213-02a726c764a2-attachment.json", "type": "application/json"}], "start": 1775518758269, "stop": 1775518758269}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "8b70575a-1acd-4450-86d9-031d66aa36a8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b8ccaf95-e566-4d31-ae34-31a274f3e6ea-attachment.json", "type": "application/json"}], "start": 1775518758269, "stop": 1775518758270}], "attachments": [{"name": "cURL", "source": "9fbd2120-82ae-44c0-830e-c6d4cd7a525b-attachment.txt", "type": "text/plain"}], "start": 1775518758269, "stop": 1775518758270}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d82f9560-b4ee-4c37-9414-4567ba105378-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "45038bc1-89bc-4374-90a2-6deb628c8904-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "46c10871-2b7e-4694-88df-0aaab5110e4b-attachment.json", "type": "application/json"}], "start": 1775518758306, "stop": 1775518758306}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d533f269-5560-4f9d-9d06-64c09cba8cb1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ef4752b4-3a5e-4bf3-8711-40a847fb810c-attachment.json", "type": "application/json"}], "start": 1775518758306, "stop": 1775518758307}], "attachments": [{"name": "cURL", "source": "cfad6933-35ff-413e-a320-cb11e7d4fd85-attachment.txt", "type": "text/plain"}], "start": 1775518758306, "stop": 1775518758307}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1e098170-7017-425e-8418-72e4e82875e0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a4e4f0c1-59d8-4650-8ed5-10c6c6475f06-attachment.json", "type": "application/json"}], "start": 1775518758863, "stop": 1775518758863}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "9b5be145-0cb3-46da-ad08-7e48c5a50085-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bf7ba30b-9a7d-4a16-8187-a38739c64323-attachment.txt", "type": "text/plain"}], "start": 1775518758863, "stop": 1775518758863}], "attachments": [{"name": "cURL", "source": "11827661-85c2-42c0-92b2-8e919c16923a-attachment.txt", "type": "text/plain"}], "start": 1775518758863, "stop": 1775518758863}, {"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": "77d0d763-6786-4943-b67f-a04864ac43cf-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8337c8c5-8e51-4499-b023-8b66344fbdcf-attachment.json", "type": "application/json"}], "start": 1775518759160, "stop": 1775518759161}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "c5be0cdf-fe7d-4579-ac68-ea5154af41b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "470e8ed5-f5bc-45d6-9b80-7dc2a3d33eff-attachment.json", "type": "application/json"}], "start": 1775518759161, "stop": 1775518759161}], "attachments": [{"name": "cURL", "source": "62d8785e-da1f-4a5c-8bae-a98e2719a77d-attachment.txt", "type": "text/plain"}], "start": 1775518759160, "stop": 1775518759161}, {"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/410002064; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002064' not found\",\"localizedMessage\":\"Инвойс с номером '410002064' не найден\"}; \n X-Aer-Trace-Id: fcbb98a00b7786a69265cd806b9d21a1\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/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f3e89616-e64f-4389-99e7-0a4a46f2848f-attachment.json", "type": "application/json"}], "start": 1775518759206, "stop": 1775518759207}, {"name": "Response → 404, trace_id: 5635d7e487ace61cac0193424a31c46b", "status": "passed", "attachments": [{"name": "response.headers", "source": "a9ebfca7-9883-44e2-bd96-35106a64b649-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "841ab2fd-3487-4066-b55e-cd9d5183983c-attachment.json", "type": "application/json"}], "start": 1775518759207, "stop": 1775518759207}], "attachments": [{"name": "cURL", "source": "43cdd944-c6f2-439a-81bb-efa1d4ef844d-attachment.txt", "type": "text/plain"}], "start": 1775518759206, "stop": 1775518759207}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "39fb9013-517a-476d-95b4-d690efcab91a-attachment.json", "type": "application/json"}], "start": 1775518769232, "stop": 1775518769232}, {"name": "Response → 404, trace_id: 0cc408e10cd0ed77fc672f1592c183cd", "status": "passed", "attachments": [{"name": "response.headers", "source": "f206bf83-26bf-4a17-9ffd-2781068f8882-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c7da4d1e-2a0e-4f69-a640-bc4b20885e0e-attachment.json", "type": "application/json"}], "start": 1775518769233, "stop": 1775518769233}], "attachments": [{"name": "cURL", "source": "bb65a5e3-9b50-45f8-94c0-76d03975cfc0-attachment.txt", "type": "text/plain"}], "start": 1775518769232, "stop": 1775518769233}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "48043ba0-a984-40de-b1a8-6b4309c0e71e-attachment.json", "type": "application/json"}], "start": 1775518779262, "stop": 1775518779262}, {"name": "Response → 404, trace_id: cd34fe0e5aa4a1a72163d7bb9451a643", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3d14e02-6a01-4820-8219-c2f9c0ef06b7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6eb5b51a-df9d-4307-baae-362bb25c0b7c-attachment.json", "type": "application/json"}], "start": 1775518779262, "stop": 1775518779262}], "attachments": [{"name": "cURL", "source": "a75db0c6-88e8-4b05-8cba-ff9ac65c29bb-attachment.txt", "type": "text/plain"}], "start": 1775518779262, "stop": 1775518779262}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6268eb55-9d3f-4098-b455-0060abe65237-attachment.json", "type": "application/json"}], "start": 1775518789295, "stop": 1775518789296}, {"name": "Response → 404, trace_id: 8b16755cb1907245f55b75a9994fa9e4", "status": "passed", "attachments": [{"name": "response.headers", "source": "d281a13b-5c6a-45b7-a70a-2e48470daaf0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "68f41bd0-d016-45aa-a0bd-c13522f2ccb5-attachment.json", "type": "application/json"}], "start": 1775518789296, "stop": 1775518789296}], "attachments": [{"name": "cURL", "source": "71f9edff-f541-42f8-a44d-b01bac463c41-attachment.txt", "type": "text/plain"}], "start": 1775518789295, "stop": 1775518789296}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7b30937f-afd6-40f8-876e-974cc0a18e85-attachment.json", "type": "application/json"}], "start": 1775518799326, "stop": 1775518799326}, {"name": "Response → 404, trace_id: baf75f9bc585ae85a92d3760879336b1", "status": "passed", "attachments": [{"name": "response.headers", "source": "45fb090d-5231-4482-8d2b-53e525a60475-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "030d71b5-4d1f-47df-b587-6bd9c08c29dd-attachment.json", "type": "application/json"}], "start": 1775518799326, "stop": 1775518799327}], "attachments": [{"name": "cURL", "source": "94f86f63-1605-4ec6-b903-5f6ebf73c890-attachment.txt", "type": "text/plain"}], "start": 1775518799326, "stop": 1775518799327}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7115032b-bbe6-49da-80fd-48c83c1b8221-attachment.json", "type": "application/json"}], "start": 1775518809355, "stop": 1775518809355}, {"name": "Response → 404, trace_id: 9983a90c7eb77dc84d7beb34bd9f2053", "status": "passed", "attachments": [{"name": "response.headers", "source": "fe667f2b-5514-4fc9-aac0-2680b7bc816f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cde20d84-f90a-4782-941f-bb30500858f4-attachment.json", "type": "application/json"}], "start": 1775518809355, "stop": 1775518809355}], "attachments": [{"name": "cURL", "source": "79443115-fa72-4bfe-81e5-e433758a188e-attachment.txt", "type": "text/plain"}], "start": 1775518809355, "stop": 1775518809355}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ac839441-2ea3-4e46-b102-d1012fdccfb9-attachment.json", "type": "application/json"}], "start": 1775518819385, "stop": 1775518819385}, {"name": "Response → 404, trace_id: f67ace4ee6b8e5f1322f44b4c96a7eda", "status": "passed", "attachments": [{"name": "response.headers", "source": "bf36f61f-8f3b-4aa6-ab5b-ab2af5feb875-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a83a91b5-88b7-4b75-9a58-df2ee7003a70-attachment.json", "type": "application/json"}], "start": 1775518819385, "stop": 1775518819385}], "attachments": [{"name": "cURL", "source": "6dadf734-1bfa-43b8-9525-3d5f0533af26-attachment.txt", "type": "text/plain"}], "start": 1775518819385, "stop": 1775518819385}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "38d1e77d-4753-4b22-b70b-4324aa69bcec-attachment.json", "type": "application/json"}], "start": 1775518829414, "stop": 1775518829414}, {"name": "Response → 404, trace_id: 4a8c5b0261913c2678d5257928fe14be", "status": "passed", "attachments": [{"name": "response.headers", "source": "bf4a6952-459c-4eb0-9bf9-22a9493ea72d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "65422b89-977b-4e15-8217-4a618e6530cf-attachment.json", "type": "application/json"}], "start": 1775518829414, "stop": 1775518829414}], "attachments": [{"name": "cURL", "source": "249dc0fa-d6dd-41af-af05-4ab7a87b865a-attachment.txt", "type": "text/plain"}], "start": 1775518829414, "stop": 1775518829414}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "848c945b-c05b-4c12-a431-75cd8eb37e27-attachment.json", "type": "application/json"}], "start": 1775518839443, "stop": 1775518839443}, {"name": "Response → 404, trace_id: ca3c8f0a0a732599306964ff3942c3d4", "status": "passed", "attachments": [{"name": "response.headers", "source": "66b450e3-5f05-47bd-8363-ab32efcbee61-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a9f3eb41-184b-4a2b-9396-7956399d69fc-attachment.json", "type": "application/json"}], "start": 1775518839443, "stop": 1775518839443}], "attachments": [{"name": "cURL", "source": "971a93b3-d7cc-4f9a-b0f2-95cc8ac56835-attachment.txt", "type": "text/plain"}], "start": 1775518839443, "stop": 1775518839443}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002064", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4e155d1b-4082-4b12-b192-c2f435bfa45b-attachment.json", "type": "application/json"}], "start": 1775518849471, "stop": 1775518849471}, {"name": "Response → 404, trace_id: fcbb98a00b7786a69265cd806b9d21a1", "status": "passed", "attachments": [{"name": "response.headers", "source": "056a9edf-0088-4e2a-88b9-02bc8d2534f4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "34f292a9-bbf6-4342-a759-9cf1a2e28351-attachment.json", "type": "application/json"}], "start": 1775518849471, "stop": 1775518849471}], "attachments": [{"name": "cURL", "source": "0f637b8a-bdc3-4e6c-b831-39d2428d03de-attachment.txt", "type": "text/plain"}], "start": 1775518849471, "stop": 1775518849471}], "start": 1775518759164, "stop": 1775518849474}], "attachments": [{"name": "log", "source": "6106424b-618e-4bdd-95bd-1a32be8b1ba9-attachment.txt", "type": "text/plain"}], "start": 1775518757668, "stop": 1775518849475, "uuid": "e8594513-a876-4eae-ae6b-979af3a8b57e", "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-u18kj11c"}, {"name": "thread", "value": "30-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"]}