{"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/410002065; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002065' not found\",\"localizedMessage\":\"Инвойс с номером '410002065' не найден\"}; \n X-Aer-Trace-Id: 639b8b71e773ffd6fd8cd60eeba1d67d", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x7707b6ced350>\ncreate_fmcg_sku_by_batch = LKBatchDTO(headers={'Authorization': 'Bearer 05b7bd19-22b5-4dd5-b872-cd896d88ae2f', 'x-aer-mesh': 'dm-hub-service-pack...ing_type': 'Тест-пакет', 'has_expiration_date': 'true', 'currency': 'USD', 'category': 'столетие', 'brand': '053457'}])\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 0x7707b5355890>\nresource_path = '/api/v1/acceptance/invoice/410002065', method = 'GET'\npath_params = [('invoiceNumber', 410002065)], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 05b7bd19-22b5-4dd5-b872-cd896d88ae2f', '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/410002065; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002065' not found\",\"localizedMessage\":\"Инвойс с номером '410002065' не найден\"}; \nE            X-Aer-Trace-Id: 639b8b71e773ffd6fd8cd60eeba1d67d\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": "0124538e-9344-4f9f-8aaa-286c49685d8b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f5afb9e1-da7c-4449-98f4-d3df2887a7eb-attachment.json", "type": "application/json"}], "start": 1775518758482, "stop": 1775518758483}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "b21a3e99-1bd6-49a5-a87d-282dbf9504be-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "24aab457-8dc7-4f4a-a40e-db98def73cec-attachment.json", "type": "application/json"}], "start": 1775518758483, "stop": 1775518758483}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "ccbe7f5d-fd9c-42fe-9c73-1d1e87616494-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "c423da2a-6dab-4c37-8589-0517613122b4-attachment.json", "type": "application/json"}], "start": 1775518758484, "stop": 1775518758484}, {"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": "3b1ffda4-1705-4366-8ba8-7c9c50938da4-attachment.json", "type": "application/json"}], "start": 1775518759057, "stop": 1775518759057}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "349eb9c4-2951-4889-98e4-47aadbae0734-attachment.json", "type": "application/json"}], "start": 1775518759057, "stop": 1775518759057}], "attachments": [{"name": "cURL", "source": "27091b5d-89b9-4e78-b63e-625e721c2830-attachment.txt", "type": "text/plain"}], "start": 1775518759057, "stop": 1775518759057}, {"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": "44649a93-bb0a-4f58-85e6-692a5b4a0a10-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "25c250eb-5c70-4278-97f9-c830cdda07b0-attachment.json", "type": "application/json"}], "start": 1775518759356, "stop": 1775518759356}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "d6f29f95-7a43-4f25-aa31-41491f567d0a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a4882e83-3249-4b83-8ffe-ea20fc6f93aa-attachment.json", "type": "application/json"}], "start": 1775518759356, "stop": 1775518759357}], "attachments": [{"name": "cURL", "source": "b1ea32a4-b4dd-4d6d-bff7-90efc5941abd-attachment.txt", "type": "text/plain"}], "start": 1775518759356, "stop": 1775518759357}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0ae0787f-02b7-4621-b031-e7ff86f8db6b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c5acec59-0d4e-4f63-9ee5-6a28f15b513e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fa44d0c7-aa2f-445f-b0a2-204cf30d50b7-attachment.json", "type": "application/json"}], "start": 1775518759657, "stop": 1775518759657}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "8e4da783-f67d-48bd-a239-68b90c6478bd-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ae64c0e0-1cbb-480c-9233-1e518bd32605-attachment.json", "type": "application/json"}], "start": 1775518759657, "stop": 1775518759906}], "attachments": [{"name": "cURL", "source": "0c84d9b7-354d-4903-a160-9c15b878a835-attachment.txt", "type": "text/plain"}], "start": 1775518759657, "stop": 1775518759906}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9449705d-13b3-4d20-9993-cb5c052a0c19-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "26abe10c-9e58-4fea-b987-759d265ab859-attachment.json", "type": "application/json"}], "start": 1775518760359, "stop": 1775518760359}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "32f71f4a-c77a-4a9a-a615-65cdb52ab6a9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2ada5c93-e167-496f-9cd6-cda2a090f108-attachment.txt", "type": "text/plain"}], "start": 1775518760359, "stop": 1775518760359}], "attachments": [{"name": "cURL", "source": "10bbfca3-d6dd-42c3-94ff-1653d1ea70f6-attachment.txt", "type": "text/plain"}], "start": 1775518760359, "stop": 1775518760359}, {"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": "195917d8-ad8b-48d3-98ce-6234a9977948-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "da08588f-79cd-4eea-9fdf-7404dcb274ba-attachment.json", "type": "application/json"}], "start": 1775518760576, "stop": 1775518760576}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "3b87eee5-56c1-496e-be9e-95bebb865d82-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5dc60ab5-9fbc-41a1-97ae-5fa8160493ff-attachment.json", "type": "application/json"}], "start": 1775518760576, "stop": 1775518760576}], "attachments": [{"name": "cURL", "source": "77037701-d265-40e9-973e-c152bdd971d2-attachment.txt", "type": "text/plain"}], "start": 1775518760576, "stop": 1775518760576}, {"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/410002065; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002065' not found\",\"localizedMessage\":\"Инвойс с номером '410002065' не найден\"}; \n X-Aer-Trace-Id: 639b8b71e773ffd6fd8cd60eeba1d67d\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/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "87f8a11e-8eaf-4698-8040-95c6f5aa96a9-attachment.json", "type": "application/json"}], "start": 1775518760603, "stop": 1775518760603}, {"name": "Response → 404, trace_id: 515d92e9b313b536dfaa55de819fe273", "status": "passed", "attachments": [{"name": "response.headers", "source": "4e83c6a2-a4c6-4d97-a285-54342ac37bf4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d307fa08-58b4-4063-9953-0512e53e7056-attachment.json", "type": "application/json"}], "start": 1775518760603, "stop": 1775518760603}], "attachments": [{"name": "cURL", "source": "8824da54-ac8b-457b-b0ab-e19c07663a14-attachment.txt", "type": "text/plain"}], "start": 1775518760603, "stop": 1775518760603}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b5aa05d5-ea5d-4271-8537-a48c2615e87f-attachment.json", "type": "application/json"}], "start": 1775518770627, "stop": 1775518770627}, {"name": "Response → 404, trace_id: fa86f6c81f6d87ae24f243180d29e49a", "status": "passed", "attachments": [{"name": "response.headers", "source": "a5dba57f-675d-4322-a49e-8d4fa792e7e0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c350cdaf-1d00-4a7a-b6db-5d4e9aa6c933-attachment.json", "type": "application/json"}], "start": 1775518770627, "stop": 1775518770628}], "attachments": [{"name": "cURL", "source": "7f3b90f0-28c6-44b8-9372-bf079abdeecf-attachment.txt", "type": "text/plain"}], "start": 1775518770627, "stop": 1775518770628}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "458fe869-ac6d-4baf-bde9-35d87f3d52dd-attachment.json", "type": "application/json"}], "start": 1775518780656, "stop": 1775518780656}, {"name": "Response → 404, trace_id: 6af324a6f7a7bcbf265c385eed857b15", "status": "passed", "attachments": [{"name": "response.headers", "source": "4f3f839f-80b0-49a3-af80-bce67f40ac3c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e56f8239-bca8-46e0-ad39-f7967e965529-attachment.json", "type": "application/json"}], "start": 1775518780656, "stop": 1775518780656}], "attachments": [{"name": "cURL", "source": "97a25367-54ed-484b-80cc-3be9a59bfac1-attachment.txt", "type": "text/plain"}], "start": 1775518780656, "stop": 1775518780656}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d648756b-e2d3-478f-97d2-8d140e155102-attachment.json", "type": "application/json"}], "start": 1775518790683, "stop": 1775518790683}, {"name": "Response → 404, trace_id: 3fa81802fb4acc729518219f5dfa2a41", "status": "passed", "attachments": [{"name": "response.headers", "source": "4efab084-1703-4cb7-a5de-582b097e0b00-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0206ab53-d4b4-4d4a-8e47-d67aec51cc32-attachment.json", "type": "application/json"}], "start": 1775518790683, "stop": 1775518790684}], "attachments": [{"name": "cURL", "source": "a37aee19-283b-49e9-bffd-2aebf368b5a0-attachment.txt", "type": "text/plain"}], "start": 1775518790683, "stop": 1775518790684}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "339c76eb-d0ce-4e5b-b84b-1c8e696df771-attachment.json", "type": "application/json"}], "start": 1775518800714, "stop": 1775518800714}, {"name": "Response → 404, trace_id: 99598fd96214a42073a54462f7ac649c", "status": "passed", "attachments": [{"name": "response.headers", "source": "6c20f108-5609-4bae-8215-f96f3e45fdf4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8436ddb8-bb1c-4253-af47-c48f422fa057-attachment.json", "type": "application/json"}], "start": 1775518800714, "stop": 1775518800714}], "attachments": [{"name": "cURL", "source": "f2b2bebb-592f-42b1-baa9-48ae1a641c87-attachment.txt", "type": "text/plain"}], "start": 1775518800714, "stop": 1775518800714}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e4121d3a-8c10-470a-a63c-a5f94e3735d1-attachment.json", "type": "application/json"}], "start": 1775518810741, "stop": 1775518810741}, {"name": "Response → 404, trace_id: 4b4f8c6bda388d022e79c9a4e3234713", "status": "passed", "attachments": [{"name": "response.headers", "source": "f852ee05-cd3d-456a-9032-cc4e9baefe16-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "072f3eb3-8be5-4964-b286-13c7ab1db45c-attachment.json", "type": "application/json"}], "start": 1775518810741, "stop": 1775518810742}], "attachments": [{"name": "cURL", "source": "9c53f752-c5a8-4183-8a91-61d142951e8e-attachment.txt", "type": "text/plain"}], "start": 1775518810741, "stop": 1775518810742}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9fb26441-2e6d-4685-89d5-c2a31d21a0cd-attachment.json", "type": "application/json"}], "start": 1775518820771, "stop": 1775518820771}, {"name": "Response → 404, trace_id: cb595e2fce5b991f4b2ed551f866a02d", "status": "passed", "attachments": [{"name": "response.headers", "source": "a1051ea1-1fb2-4d5c-80d0-cd4a71d67fd6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0e97f117-8139-4c7b-9220-5afce7d97dcf-attachment.json", "type": "application/json"}], "start": 1775518820771, "stop": 1775518820771}], "attachments": [{"name": "cURL", "source": "e953dc8e-6f86-476c-b358-e52f88be4362-attachment.txt", "type": "text/plain"}], "start": 1775518820771, "stop": 1775518820771}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b828877e-8cab-454d-ad51-3462565dc1bc-attachment.json", "type": "application/json"}], "start": 1775518830799, "stop": 1775518830800}, {"name": "Response → 404, trace_id: 680e7fcc69348b7717dd4541137178d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "af4e6d9c-d11f-4eab-93cd-8bb612165a71-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6e4f810e-e040-4df4-913b-31d59496af71-attachment.json", "type": "application/json"}], "start": 1775518830800, "stop": 1775518830800}], "attachments": [{"name": "cURL", "source": "adb8dc25-6f7a-4780-b41c-ab2f762b31de-attachment.txt", "type": "text/plain"}], "start": 1775518830799, "stop": 1775518830800}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3314398f-32fa-4a34-866f-66fba172024f-attachment.json", "type": "application/json"}], "start": 1775518840826, "stop": 1775518840826}, {"name": "Response → 404, trace_id: a15530d68f15b56c697279267e7fa60e", "status": "passed", "attachments": [{"name": "response.headers", "source": "61ed8f0b-3022-43fb-b81e-870d84d299d7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "61cbff1b-8d52-4a00-9ac3-b87e3a4310fb-attachment.json", "type": "application/json"}], "start": 1775518840826, "stop": 1775518840826}], "attachments": [{"name": "cURL", "source": "15a99eca-2787-47a0-8c04-4d489823d95a-attachment.txt", "type": "text/plain"}], "start": 1775518840826, "stop": 1775518840826}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "72702a38-4938-4169-a3d3-d7bf9c659c62-attachment.json", "type": "application/json"}], "start": 1775518850859, "stop": 1775518850860}, {"name": "Response → 404, trace_id: 639b8b71e773ffd6fd8cd60eeba1d67d", "status": "passed", "attachments": [{"name": "response.headers", "source": "f23e9b8a-0c43-467c-9d26-49c14f716c44-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f2baa386-ac6c-4932-8644-34314a599daa-attachment.json", "type": "application/json"}], "start": 1775518850860, "stop": 1775518850860}], "attachments": [{"name": "cURL", "source": "7e011d3d-4d4a-4416-92a1-dd23fe7f9dee-attachment.txt", "type": "text/plain"}], "start": 1775518850859, "stop": 1775518850860}], "start": 1775518760580, "stop": 1775518850863}], "attachments": [{"name": "log", "source": "8332eddc-bec0-407f-8f81-385b7e24bee3-attachment.txt", "type": "text/plain"}], "start": 1775518758471, "stop": 1775518850864, "uuid": "d9ffbbb7-e9ca-4bc5-9e82-1003aa300bfd", "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-u18kj11c"}, {"name": "thread", "value": "27-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"]}