{"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/410002193; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002193' not found\",\"localizedMessage\":\"Инвойс с номером '410002193' не найден\"}; \n X-Aer-Trace-Id: b15e38480f96de36956f416832aae2b0", "trace": "self = <tests.fmcg.test_lk.test_integration.TestIntegrationWithAcceptanceService object at 0x79916337cf10>\ncreate_fmcg_sku_by_batch = LKBatchDTO(headers={'Authorization': 'Bearer dbcfedb9-d945-4764-8854-ba1a3abff0b2', 'x-aer-mesh': 'dm-hub-service-pack..._type': 'Тест-коробка', 'has_expiration_date': 'true', 'currency': 'USD', 'category': 'падаль', 'brand': '086519   '}])\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 0x799161b9f6d0>\nresource_path = '/api/v1/acceptance/invoice/410002193', method = 'GET'\npath_params = [('invoiceNumber', 410002193)], query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer dbcfedb9-d945-4764-8854-ba1a3abff0b2', '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/410002193; \nE            Expected status code: 200; \nE            Actual status code: 404; \nE            Response body: {\"message\":\"Invoice with original invoice number '410002193' not found\",\"localizedMessage\":\"Инвойс с номером '410002193' не найден\"}; \nE            X-Aer-Trace-Id: b15e38480f96de36956f416832aae2b0\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": "47d2ebf3-71cb-42f6-bfdc-027934128168-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "50dc3c0a-80f0-4479-8d68-c1e78cf6c72b-attachment.json", "type": "application/json"}], "start": 1775777954991, "stop": 1775777954991}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "d330817b-797e-4fab-8558-8f2924961735-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "3607b44c-a414-48f8-aacf-6410d0e7bbf3-attachment.json", "type": "application/json"}], "start": 1775777954992, "stop": 1775777954992}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "97e0c2cb-8000-4e8f-8b1f-ab5c5405d800-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f64e498f-e43b-42d2-a6b1-a4512cad0775-attachment.json", "type": "application/json"}], "start": 1775777954993, "stop": 1775777954993}, {"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": "de28ac50-a887-4812-8e66-495e00e3221b-attachment.json", "type": "application/json"}], "start": 1775777956792, "stop": 1775777956792}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "2cec836f-cfc5-4096-93b3-afa0af1bc13a-attachment.json", "type": "application/json"}], "start": 1775777956792, "stop": 1775777956792}], "attachments": [{"name": "cURL", "source": "3e4e916a-8905-4485-bf9a-7abfbe9ebe24-attachment.txt", "type": "text/plain"}], "start": 1775777956792, "stop": 1775777956792}, {"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": "0c7d637c-947e-49da-a021-8afe38c7a4c2-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ef8d9c94-3a0e-45ac-87a2-b58c3f690b5a-attachment.json", "type": "application/json"}], "start": 1775777957481, "stop": 1775777957481}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "e2cc3925-5055-47d9-b97a-73b1927f90f5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5538d30b-4076-48b5-a06a-30a1dd7af404-attachment.json", "type": "application/json"}], "start": 1775777957481, "stop": 1775777957481}], "attachments": [{"name": "cURL", "source": "d2bad17e-1409-40c4-b9e3-f05e176d051d-attachment.txt", "type": "text/plain"}], "start": 1775777957481, "stop": 1775777957481}, {"name": "PUT → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice?invoiceNumber=410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "55814b8e-856d-44a8-afa7-8173ca243b45-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c0adb887-6f8d-4e73-80e4-8da2b0bd25af-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c045e3ab-2ffd-49f1-b2a8-3a27cefde6b7-attachment.json", "type": "application/json"}], "start": 1775777958581, "stop": 1775777958582}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "808661b8-f919-4c6f-ac56-d81b8ebebe36-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3c001293-510c-44d2-9f53-7e1f1051fcd9-attachment.json", "type": "application/json"}], "start": 1775777958582, "stop": 1775777958854}], "attachments": [{"name": "cURL", "source": "bcfefec7-0505-40e4-ac57-ed78cb94d0ea-attachment.txt", "type": "text/plain"}], "start": 1775777958581, "stop": 1775777958854}, {"name": "POST → https://dm-fmcg-be-service-lk.k8s-review.dailymail-tech.uz/api/v1/invoice/send?invoiceNumber=410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ac0112b9-c365-404b-8a42-db2dd00bebc1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9827c25e-258f-4302-a410-af2528f91387-attachment.json", "type": "application/json"}], "start": 1775777959284, "stop": 1775777959284}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e4ba2b0-ff10-48bd-b082-03b77bd49077-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3da2778e-ffcc-4e75-9138-0c64ce853fcf-attachment.txt", "type": "text/plain"}], "start": 1775777959284, "stop": 1775777959284}], "attachments": [{"name": "cURL", "source": "4d853370-18de-4c35-b9a7-e4d231196871-attachment.txt", "type": "text/plain"}], "start": 1775777959284, "stop": 1775777959284}, {"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": "9845a131-6a19-4c79-ab76-3b7d0af4696e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "93f4543d-8280-4061-b541-e344548e05fb-attachment.json", "type": "application/json"}], "start": 1775777959585, "stop": 1775777959586}, {"name": "Response → 200, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "11071d8c-9e52-44f2-9b74-53d0b6c2fc7b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7c18819c-314a-467a-baa1-cfd4ec7d26f7-attachment.json", "type": "application/json"}], "start": 1775777959586, "stop": 1775777959586}], "attachments": [{"name": "cURL", "source": "98253d5a-e982-4fe1-bcde-eb9b1e9e6c33-attachment.txt", "type": "text/plain"}], "start": 1775777959585, "stop": 1775777959586}, {"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/410002193; \n Expected status code: 200; \n Actual status code: 404; \n Response body: {\"message\":\"Invoice with original invoice number '410002193' not found\",\"localizedMessage\":\"Инвойс с номером '410002193' не найден\"}; \n X-Aer-Trace-Id: b15e38480f96de36956f416832aae2b0\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/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "982f6f94-a27f-428e-8894-5044f12fac4a-attachment.json", "type": "application/json"}], "start": 1775777959612, "stop": 1775777959613}, {"name": "Response → 404, trace_id: f5fd9b653c04e45cdf2a4687c4f9a724", "status": "passed", "attachments": [{"name": "response.headers", "source": "7a021c7b-d4ee-4da1-9ba1-2c31f6612d58-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "78a5486a-2e06-49c6-988f-b9049b169e13-attachment.json", "type": "application/json"}], "start": 1775777959613, "stop": 1775777959613}], "attachments": [{"name": "cURL", "source": "36bbc9f7-cac1-4977-bc6f-f31991fa485f-attachment.txt", "type": "text/plain"}], "start": 1775777959612, "stop": 1775777959613}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "52911a78-b0a5-481d-a8a7-0912626261d0-attachment.json", "type": "application/json"}], "start": 1775777969636, "stop": 1775777969636}, {"name": "Response → 404, trace_id: 67d64ed71d025b5aae1d0a42ba224060", "status": "passed", "attachments": [{"name": "response.headers", "source": "36791bcc-9189-4532-97c7-1e2bd660f81e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fe5bfa27-a4d1-4b20-bc33-995aef30dd00-attachment.json", "type": "application/json"}], "start": 1775777969636, "stop": 1775777969636}], "attachments": [{"name": "cURL", "source": "fd001768-fada-417d-9509-6a1ef71b9f14-attachment.txt", "type": "text/plain"}], "start": 1775777969636, "stop": 1775777969636}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0cd43bd1-9525-475b-9c1b-0897e2622355-attachment.json", "type": "application/json"}], "start": 1775777979663, "stop": 1775777979663}, {"name": "Response → 404, trace_id: d7a59640591b6e0be79d823d07714186", "status": "passed", "attachments": [{"name": "response.headers", "source": "53ce02f3-772b-4644-a2f1-501659d30a80-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "aaf816ee-2b65-45c9-92f6-5ce257c604ac-attachment.json", "type": "application/json"}], "start": 1775777979664, "stop": 1775777979664}], "attachments": [{"name": "cURL", "source": "7bbf9f13-04ab-4d9c-a5d5-3bc230a018f1-attachment.txt", "type": "text/plain"}], "start": 1775777979663, "stop": 1775777979664}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e1c418fb-d4bb-47ff-8742-3ad967c68773-attachment.json", "type": "application/json"}], "start": 1775777989692, "stop": 1775777989692}, {"name": "Response → 404, trace_id: 148776f2b4e387cf4b75f1c07073f134", "status": "passed", "attachments": [{"name": "response.headers", "source": "14ff0f7e-bba4-4736-a439-09d69e0cb4c6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "08244db2-0f18-47f5-aa8e-c4ae80577a4a-attachment.json", "type": "application/json"}], "start": 1775777989692, "stop": 1775777989692}], "attachments": [{"name": "cURL", "source": "2870bd16-74ce-43a9-9356-ffd264e15914-attachment.txt", "type": "text/plain"}], "start": 1775777989692, "stop": 1775777989692}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7ba8a317-4973-4f61-b62f-1a660c658b4d-attachment.json", "type": "application/json"}], "start": 1775777999719, "stop": 1775777999719}, {"name": "Response → 404, trace_id: ac078786a6b884f5540d62a2d4f95b1e", "status": "passed", "attachments": [{"name": "response.headers", "source": "c50b8bbf-d571-4829-8ca0-4e91c6a96c62-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "741177d8-9b2d-44af-94f2-53b94abdbab5-attachment.json", "type": "application/json"}], "start": 1775777999719, "stop": 1775777999719}], "attachments": [{"name": "cURL", "source": "f33c0ef0-cc3b-46f9-8ee2-98079898136a-attachment.txt", "type": "text/plain"}], "start": 1775777999718, "stop": 1775777999719}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eec5c585-fe87-4f6c-910f-7b538af5f67d-attachment.json", "type": "application/json"}], "start": 1775778009745, "stop": 1775778009746}, {"name": "Response → 404, trace_id: 315722175f50071b8b9c45c796957e5c", "status": "passed", "attachments": [{"name": "response.headers", "source": "ed87c9d7-d1f6-41d0-a0f0-a7d3e3e1798c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8e9abbb1-24a9-4d1d-a24c-c59bcfbfa479-attachment.json", "type": "application/json"}], "start": 1775778009746, "stop": 1775778009746}], "attachments": [{"name": "cURL", "source": "c5736e25-7079-442d-9326-2586b9dd63aa-attachment.txt", "type": "text/plain"}], "start": 1775778009745, "stop": 1775778009746}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fae87eee-5110-468e-b056-26ea20da33d4-attachment.json", "type": "application/json"}], "start": 1775778019773, "stop": 1775778019774}, {"name": "Response → 404, trace_id: f3e0dffb5b98cc6bfbfc7d2e02bca4e7", "status": "passed", "attachments": [{"name": "response.headers", "source": "b53cd7d1-b528-4e09-bf2f-1e0e21bf86d7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ce25e5d1-a2e0-438c-9a31-ac6c42481e4f-attachment.json", "type": "application/json"}], "start": 1775778019774, "stop": 1775778019774}], "attachments": [{"name": "cURL", "source": "aec8a173-afb2-4a67-adaf-122e01d15da0-attachment.txt", "type": "text/plain"}], "start": 1775778019773, "stop": 1775778019774}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "329febaf-2b55-4306-a823-cbf7123a6e2c-attachment.json", "type": "application/json"}], "start": 1775778029801, "stop": 1775778029801}, {"name": "Response → 404, trace_id: 7ee553100b29fa7fb4dc77c7ee81cdde", "status": "passed", "attachments": [{"name": "response.headers", "source": "cb6e1b18-5fb8-4f73-84e8-c4390ceecb4c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6efcab8c-49a1-46de-a68a-1fac322c9883-attachment.json", "type": "application/json"}], "start": 1775778029801, "stop": 1775778029801}], "attachments": [{"name": "cURL", "source": "69beff50-5889-4a82-ace0-c92c56483335-attachment.txt", "type": "text/plain"}], "start": 1775778029801, "stop": 1775778029801}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ea2cb5f7-e329-475a-a86f-254684e3b2e6-attachment.json", "type": "application/json"}], "start": 1775778039829, "stop": 1775778039829}, {"name": "Response → 404, trace_id: 1c8e402fcec723d2288123b340276614", "status": "passed", "attachments": [{"name": "response.headers", "source": "b498fc72-64cf-4ed9-9b45-af1f074a9cc8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cd06d938-2490-47e5-ae4b-ce765a0de4c5-attachment.json", "type": "application/json"}], "start": 1775778039829, "stop": 1775778039829}], "attachments": [{"name": "cURL", "source": "d81acacb-dca1-434d-adc0-32b9361aa97c-attachment.txt", "type": "text/plain"}], "start": 1775778039829, "stop": 1775778039829}, {"name": "GET → https://dm-fmcg-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/acceptance/invoice/410002193", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "df33dfd8-ce3a-4b3e-b2af-ab6c0af73808-attachment.json", "type": "application/json"}], "start": 1775778049856, "stop": 1775778049857}, {"name": "Response → 404, trace_id: b15e38480f96de36956f416832aae2b0", "status": "passed", "attachments": [{"name": "response.headers", "source": "c3406d9a-182a-46db-8540-407950d6bda9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c80f47c4-28fe-4287-a07f-90ddf9163007-attachment.json", "type": "application/json"}], "start": 1775778049857, "stop": 1775778049857}], "attachments": [{"name": "cURL", "source": "930345d2-56f8-4c0e-a416-ea109880f957-attachment.txt", "type": "text/plain"}], "start": 1775778049856, "stop": 1775778049857}], "start": 1775777959589, "stop": 1775778049860}], "attachments": [{"name": "log", "source": "cf6df43e-2bb7-4342-b395-80b80a1cc7ae-attachment.txt", "type": "text/plain"}], "start": 1775777954981, "stop": 1775778049863, "uuid": "9bc2c336-3eef-4c11-af7d-d100d5128996", "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-xlaoy098"}, {"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"]}