{"name": "test_invoice_batch_upload_set_invoice_status_acceptance_in_progress", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: GET https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002166' not found\",\"localizedMessage\":\"Инвойс с номером '410002166' не найден\"}; \n X-Aer-Trace-Id: 9f469d2d40600c3f4c480156a11354e1", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x7c95079f1190>\ncreate_fmcg_sku_by_batch = LKBatchDTO(headers={'Authorization': 'Bearer ea07a7e8-bdb1-4472-908f-f9ea6b4d6720', 'x-aer-mesh': 'dm-hub-service-pack...ng_type': 'Тест-коробка', 'has_expiration_date': 'true', 'currency': 'USD', 'category': 'тревога', 'brand': '071037'}])\n\n    def test_invoice_batch_upload_set_invoice_status_acceptance_in_progress(self, create_fmcg_sku_by_batch):\n        \"\"\"\n        Создаем заявку загрузкой через файл. Перемещаем инвойс до статуса 'Получено складом' ('Acceptance in progress')\n        Ожидаемый результат: заявку в статусе 'Acceptance in progress' попала в сервис Acceptance\n        \"\"\"\n        barcodes = [sku.get(\"barcode\") for sku in create_fmcg_sku_by_batch.batch_data]\n        sku_ids_and_barcodes = FMCGLKSupplyQueries().get_sku_id_and_barcode_by_barcode(barcodes)\n        invoice_data = [\n            FMCGInvoiceBatch(sku_id=str(sku.get(\"sku_id\")), barcode=sku.get(\"barcode\")).model_dump()\n            for sku in sku_ids_and_barcodes\n        ]\n        assert FMCGInvoiceBuilder(headers=create_fmcg_sku_by_batch.headers).batch_upload(\n            invoice_data\n        ), \"Invoice batch upload failed\"\n        invoice_number = FMCGLKSupplyQueries().get_invoice_status_by_barcode(barcodes[0]).get(\"invoice_number\")\n        assert invoice_number is not None, \"Invoice number is None\"\n    \n        initial_builder = FMCGInvoiceBuilder(headers=create_fmcg_sku_by_batch.headers)\n    \n        assert (\n            initial_builder.get_invoice(invoice_number).current_status == FMCGLkInvoiceStatuses.CREATED\n        ), \"Invoice status isn't CREATED\"\n    \n        assert (\n            initial_builder.update_invoice(invoice_number=invoice_number).current_status == FMCGLkInvoiceStatuses.READY\n        )\n        assert (\n            initial_builder.send_invoice(invoice_number=invoice_number).current_status\n            == FMCGLkInvoiceStatuses.ACCEPTANCE_IN_PROGRESS\n        ), \"Invoice is not in the 'Acceptance in Progress' status\"\n    \n        invoice_data_in_acceptance = (\n            IntegrationWithAcceptanceBuilder(headers=create_fmcg_sku_by_batch.headers)\n>           .get_invoice(invoice_number)\n             ^^^^^^^^^^^^^^^^^^^^^^^^^^^\n            .invoice_data\n        )\n\ntests/fmcg/test_lk/test_integration.py:87: \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 0x7c9505d5cbd0>\nresource_path = '/api/v1/acceptance/invoice/410002166', method = 'GET'\npath_params = [('invoiceNumber', 410002166)], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer ea07a7e8-bdb1-4472-908f-f9ea6b4d6720', '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/410002166; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002166' not found\",\"localizedMessage\":\"Инвойс с номером '410002166' не найден\"}; \nE            X-Aer-Trace-Id: 9f469d2d40600c3f4c480156a11354e1\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": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "bf8edc55-23fa-4ecd-8e50-71f5c61fb2bc-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "e2d51eed-d325-4dae-9746-fa304df205e6-attachment.json", "type": "application/json"}], "start": 1775691553312, "stop": 1775691553312}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "5f7d07fb-6df9-452f-9d3b-a46401a92b26-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "50f03371-b1b7-412c-a08f-7509a84c19f2-attachment.json", "type": "application/json"}], "start": 1775691553313, "stop": 1775691553313}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "8fc657b3-d3db-4c7b-8f73-146213ddd247-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "45d5be8b-781e-496f-9c84-3c3602c7fc8e-attachment.json", "type": "application/json"}], "start": 1775691553313, "stop": 1775691553314}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/batch", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2b164ea2-bb83-4a27-abe0-9c67398ca065-attachment.json", "type": "application/json"}], "start": 1775691553776, "stop": 1775691553776}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "5d11987e-92f3-4d87-8890-caac40a018b1-attachment.json", "type": "application/json"}], "start": 1775691553776, "stop": 1775691553777}], "attachments": [{"name": "cURL", "source": "da928c34-0f5d-4ca6-aabd-8343fb6464da-attachment.txt", "type": "text/plain"}], "start": 1775691553776, "stop": 1775691553777}, {"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": "eb3478a3-1866-450c-9c1f-bcbcb5137a30-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "527a44d1-0ced-419b-bf38-54c2737d1402-attachment.json", "type": "application/json"}], "start": 1775691555987, "stop": 1775691555987}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "6babb21b-da3b-48a7-a53e-aeefdec5c4ad-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "802df9dd-34eb-4d1f-9118-871ab12a2249-attachment.json", "type": "application/json"}], "start": 1775691555987, "stop": 1775691555988}], "attachments": [{"name": "cURL", "source": "20078513-55dd-46de-b41d-7549e8a267f3-attachment.txt", "type": "text/plain"}], "start": 1775691555987, "stop": 1775691555988}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "416c9453-f5ab-4e52-8003-68a3f007ccd4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f0c48fc4-f5d8-4246-839f-dcd44b8a9b5e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1695c937-6d51-45c5-8e52-2f4447c46ee5-attachment.json", "type": "application/json"}], "start": 1775691556382, "stop": 1775691556383}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "b4e21d9e-543c-40a2-a623-b65aa7adbab7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "aa2a84ec-c7b4-4bb3-a502-6b425f31c66a-attachment.json", "type": "application/json"}], "start": 1775691556383, "stop": 1775691556383}], "attachments": [{"name": "cURL", "source": "b6f147e2-5aca-4b04-8a02-ed2e868c0577-attachment.txt", "type": "text/plain"}], "start": 1775691556382, "stop": 1775691556383}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "98c8d441-dad0-46d3-b9f7-650c7107df4c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f1706985-7275-411a-85ea-a7ea6302aa5c-attachment.json", "type": "application/json"}], "start": 1775691556889, "stop": 1775691556889}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "9af2f502-98e6-43e9-9c8f-e9030a5846e9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "39cc0922-2422-427b-8aa1-2e533ca354b5-attachment.txt", "type": "text/plain"}], "start": 1775691556889, "stop": 1775691556889}], "attachments": [{"name": "cURL", "source": "d58355c9-f6d8-4dcb-8189-794736b7de86-attachment.txt", "type": "text/plain"}], "start": 1775691556889, "stop": 1775691556889}, {"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": "2c9a8dc5-63be-4f5f-839b-cf80716caff9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "36126b02-b0c0-47e9-8783-1875c2126c35-attachment.json", "type": "application/json"}], "start": 1775691557189, "stop": 1775691557189}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "c93b8b51-270c-4e5e-bf6f-0a7d261e90f1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "79530d53-dd57-4a41-bf2e-abf17e6817b7-attachment.json", "type": "application/json"}], "start": 1775691557189, "stop": 1775691557189}], "attachments": [{"name": "cURL", "source": "c7227770-5f7a-42f0-a857-4825d614654e-attachment.txt", "type": "text/plain"}], "start": 1775691557189, "stop": 1775691557189}, {"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/410002166; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002166' not found\",\"localizedMessage\":\"Инвойс с номером '410002166' не найден\"}; \n X-Aer-Trace-Id: 9f469d2d40600c3f4c480156a11354e1\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/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "178f251d-4f16-4e04-9bd4-56416e0bf6c2-attachment.json", "type": "application/json"}], "start": 1775691557218, "stop": 1775691557218}, {"name": "Response → 404, trace_id: eb4e60d5929be594502f9437cd1cb5d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "8d3005ed-35ad-4d15-89c8-f8e47dbc56d8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "82487b0f-86fb-4f41-843d-e6f5a8f5a7ea-attachment.json", "type": "application/json"}], "start": 1775691557218, "stop": 1775691557218}], "attachments": [{"name": "cURL", "source": "84d8e003-7118-49ee-a151-ad8ab13c9d59-attachment.txt", "type": "text/plain"}], "start": 1775691557218, "stop": 1775691557218}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "99c2ff79-31d5-4101-bb08-23abb4215dbc-attachment.json", "type": "application/json"}], "start": 1775691567244, "stop": 1775691567244}, {"name": "Response → 404, trace_id: 432a0fbd85134166dce588dee7b81380", "status": "passed", "attachments": [{"name": "response.headers", "source": "233e8789-21d2-4721-8128-f36a4846aa51-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8713d7d7-ea7e-4187-948c-e1507209bdd0-attachment.json", "type": "application/json"}], "start": 1775691567244, "stop": 1775691567244}], "attachments": [{"name": "cURL", "source": "e1b98a73-4a49-4f55-bb7b-6da8ff220d72-attachment.txt", "type": "text/plain"}], "start": 1775691567244, "stop": 1775691567244}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "04c44e82-fb59-4658-a7b4-ba94e7392607-attachment.json", "type": "application/json"}], "start": 1775691577270, "stop": 1775691577270}, {"name": "Response → 404, trace_id: 3fa88e45871ec48acc2fa6b530d7b8b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "3b37505d-ea9f-415a-a9dd-38ce9581d25e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c8553e81-361a-4011-9db5-9002bef2c8ac-attachment.json", "type": "application/json"}], "start": 1775691577271, "stop": 1775691577271}], "attachments": [{"name": "cURL", "source": "ffd65a0f-439d-4fbb-a501-bb30945b2bdf-attachment.txt", "type": "text/plain"}], "start": 1775691577270, "stop": 1775691577271}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fd824b48-56c2-47ad-846c-f0ee40b6ab73-attachment.json", "type": "application/json"}], "start": 1775691587305, "stop": 1775691587306}, {"name": "Response → 404, trace_id: 809881a9ccf0fcfd5f991b6ecca81ff5", "status": "passed", "attachments": [{"name": "response.headers", "source": "41b19318-2f39-4ce2-aa5c-64dd95c29bf4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a2abccd3-13a2-4f5b-bd8f-51bd41df0d43-attachment.json", "type": "application/json"}], "start": 1775691587306, "stop": 1775691587306}], "attachments": [{"name": "cURL", "source": "9fab66fd-6676-4b29-863a-aa8dca8941df-attachment.txt", "type": "text/plain"}], "start": 1775691587305, "stop": 1775691587306}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "216ce485-72b7-4b0f-9b8d-e351480351f2-attachment.json", "type": "application/json"}], "start": 1775691597335, "stop": 1775691597335}, {"name": "Response → 404, trace_id: f40dde10160b7446a3cabd419c5ef31e", "status": "passed", "attachments": [{"name": "response.headers", "source": "aeff0f11-b8f2-44cc-88de-36a8a4c893ba-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2c73bc65-c372-4bc9-a9bf-3cba67aaa3c3-attachment.json", "type": "application/json"}], "start": 1775691597335, "stop": 1775691597335}], "attachments": [{"name": "cURL", "source": "38fc38e6-99d2-4c5c-b39b-bf29e8607438-attachment.txt", "type": "text/plain"}], "start": 1775691597334, "stop": 1775691597335}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5618f6a2-10c9-46e4-a2ec-65d7e5badb0e-attachment.json", "type": "application/json"}], "start": 1775691607362, "stop": 1775691607362}, {"name": "Response → 404, trace_id: 33e15f9563fbd3ae5c3301ad1a3f3c0e", "status": "passed", "attachments": [{"name": "response.headers", "source": "5ea32ecf-415d-4cc0-91b4-d62f82d058e6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "60e69e53-2632-4aeb-9200-94da94929dca-attachment.json", "type": "application/json"}], "start": 1775691607362, "stop": 1775691607362}], "attachments": [{"name": "cURL", "source": "a1f74b99-171e-4134-a7cd-feddbe9de148-attachment.txt", "type": "text/plain"}], "start": 1775691607362, "stop": 1775691607362}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ed69be55-980c-4b60-8848-31c55e143c93-attachment.json", "type": "application/json"}], "start": 1775691617397, "stop": 1775691617397}, {"name": "Response → 404, trace_id: 5ca17e4240806933ea05155f35cc2a2d", "status": "passed", "attachments": [{"name": "response.headers", "source": "f76526a5-cf69-4b2c-8194-6828eb55956a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "625c7c88-7d17-4d4a-8e6f-d869e01e4118-attachment.json", "type": "application/json"}], "start": 1775691617397, "stop": 1775691617397}], "attachments": [{"name": "cURL", "source": "a6eaf347-b073-436a-8f75-1a9bda6f580d-attachment.txt", "type": "text/plain"}], "start": 1775691617397, "stop": 1775691617397}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8301b4d0-42b5-49b3-8255-bcc238a7c93e-attachment.json", "type": "application/json"}], "start": 1775691627424, "stop": 1775691627424}, {"name": "Response → 404, trace_id: 227baf8a0088e1620f192eb38768d322", "status": "passed", "attachments": [{"name": "response.headers", "source": "b46c2245-080c-4c6f-9dc2-918c7bbb45dc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5906b54b-3eec-496d-93e7-9ba7e23d77b5-attachment.json", "type": "application/json"}], "start": 1775691627424, "stop": 1775691627424}], "attachments": [{"name": "cURL", "source": "37cbb674-fe7d-4410-b1c7-64b655311ce1-attachment.txt", "type": "text/plain"}], "start": 1775691627424, "stop": 1775691627424}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3a9b3093-c68c-47b9-94e4-e8484b446a81-attachment.json", "type": "application/json"}], "start": 1775691637452, "stop": 1775691637452}, {"name": "Response → 404, trace_id: 169cc7669e59267eec4c42b6864a220b", "status": "passed", "attachments": [{"name": "response.headers", "source": "fbf13c5f-6e3a-41c1-8923-ac0c1505674f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b8405154-aeac-4090-a95e-c0d06384ee05-attachment.json", "type": "application/json"}], "start": 1775691637452, "stop": 1775691637452}], "attachments": [{"name": "cURL", "source": "72f6631a-c816-4537-abd5-4c5efd6331d3-attachment.txt", "type": "text/plain"}], "start": 1775691637452, "stop": 1775691637452}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002166", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "97f0d749-f461-4d55-99f7-c4dc112d133f-attachment.json", "type": "application/json"}], "start": 1775691647479, "stop": 1775691647479}, {"name": "Response → 404, trace_id: 9f469d2d40600c3f4c480156a11354e1", "status": "passed", "attachments": [{"name": "response.headers", "source": "243d82e9-5ca7-430f-81ef-82b2f3dfa19a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "da7d1858-b2d9-49e6-aac3-0deef7f0df5a-attachment.json", "type": "application/json"}], "start": 1775691647479, "stop": 1775691647479}], "attachments": [{"name": "cURL", "source": "39e2495b-74a0-4b9e-aa3f-7f857793f593-attachment.txt", "type": "text/plain"}], "start": 1775691647479, "stop": 1775691647479}], "start": 1775691557192, "stop": 1775691647482}], "attachments": [{"name": "log", "source": "0747524b-5d83-4f09-bafd-b0f91da15e38-attachment.txt", "type": "text/plain"}], "start": 1775691553301, "stop": 1775691647483, "uuid": "e4926fba-bcbd-4975-b210-98ace14e3396", "historyId": "302f792917bf91782f0daac535ab1337", "testCaseId": "302f792917bf91782f0daac535ab1337", "fullName": "tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService#test_invoice_batch_upload_set_invoice_status_acceptance_in_progress", "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": "36-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"]}