{"name": "test_e2e_two_items_outbound[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: POST https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task; \n Expected status code: 200; \n Actual status code: 502; \n Response body: Bad Gateway; \n X-Aer-Trace-Id:", "trace": "self = <tests.wms.test_e2e_outbound.test_outbound.TestE2EOutbound object at 0x7fcc106713d0>\nwms_provider_warehouse_multy_stock = WMSProviderWarehouseStockDTO(warehouse=WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff...ider_name='YaMarket'), stocks=<src.framework.wms.builders.availability.stock.WMSStockBuilder object at 0x7fcc106e9f10>)\n\n    @allure.feature(\"WMS Multy outbound\")\n    def test_e2e_two_items_outbound(self, wms_provider_warehouse_multy_stock: WMSProviderWarehouseStockDTO):\n        with allure.step(\"builder init\"):\n            order = WMSOrderBuilder(\n                warehouse=wms_provider_warehouse_multy_stock.warehouse,\n                user=wms_provider_warehouse_multy_stock.stocks.user,\n                provider=wms_provider_warehouse_multy_stock.provider,\n                items=wms_provider_warehouse_multy_stock.stocks.items,\n                headers=wms_provider_warehouse_multy_stock.stocks.headers,\n                clear=True,\n            )\n    \n        with allure.step(\"stock creation\"):\n            for item in order.items:\n                order.control_stock_in_stock_service(internal_sku_id=item.sku, expected_qty_active=item.qty)\n    \n        with allure.step(\"order creation\"):\n            order.login_or_refresh()\n            order.state_created()\n            order.state_ready()\n            order.control_order_type_in_assembly_service()\n            order.control_order_status_in_assembly_service(order_status=AssemblyOrderStatus.READY)\n            order.control_reservations()\n    \n        with allure.step(\"wave creation\"):\n            order.state_in_queue()\n            order.control_order_status_in_assembly_service(order_status=AssemblyOrderStatus.IN_QUEUE)\n            order.control_wave_order_type()\n    \n        with allure.step(\"picking\"):\n            order.state_assigned()\n            order.state_picking()\n            order.state_picked()\n            order.control_order_status_in_order_service(order_status=OrderStatus.PICKED)\n    \n        with allure.step(\"consolidation\"):\n            order.state_consolidation()\n            order.control_reservations(reservation_status=AvailabilityReservationStatus.COMPLETED)\n            order.control_stock_in_availability_service(expected_qty=0)\n            order.control_box_consolidation_cell()\n    \n        with allure.step(\"sorting\"):\n>           order.state_pre_packed()\n\ntests/wms/test_e2e_outbound/test_outbound.py:60: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/order/v2_order.py:523: in state_pre_packed\n    sort_task.complete_sorting_task()\nsrc/framework/wms/builders/assembly/sorting_task.py:78: in complete_sorting_task\n    SortingTaskApi(headers=self.headers).api_v1_sorting_complete_task_post()\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/sorting_task_api.py:347: in api_v1_sorting_complete_task_post\n    return self.api_v1_sorting_complete_task_post_with_http_info(**kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/sorting_task_api.py:404: in api_v1_sorting_complete_task_post_with_http_info\n    return self.api_client.call_api(\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:339: in call_api\n    return self.__call_api(resource_path, method,\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <qacl_dm_wms_be_service_assembly.api_client.ApiClient object at 0x7fcc08d1f110>\nresource_path = '/api/v1/sorting/complete-task', method = 'POST'\npath_params = {}, query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 4e88afeb-26b6-4015-9db4-a2d07833b3a3', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.231+develop/python', ...}\nbody = None, post_params = [], files = {}, response_type = None\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: POST https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task; \nE            Expected status code: 200; \nE            Actual status code: 502; \nE            Response body: Bad Gateway; \nE            X-Aer-Trace-Id:\n\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:172: AssertionError"}, "steps": [{"name": "builder init", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "8d954459-ae94-4df2-ac23-5e24569d5aa2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ce411f9f-bd09-4d04-8e0d-ea1b0eb915da-attachment.json", "type": "application/json"}], "start": 1775259984034, "stop": 1775259984034}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "e716aabd-5e7f-4c76-9dad-5f333e56ef6c-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "02a7b67f-496a-47de-bd02-e815b09e016f-attachment.json", "type": "application/json"}], "start": 1775259984132, "stop": 1775259984133}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "0328de42-d16d-43a0-bd91-60d34b459137-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b81b31e7-bcf0-4376-ac33-05e4f5b38a92-attachment.json", "type": "application/json"}], "start": 1775259984133, "stop": 1775259984133}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "92828f98-d2c3-4fb8-8e3f-2b3b727bb02e-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b91b2224-abf4-4103-923e-e3552c0dac77-attachment.json", "type": "application/json"}], "start": 1775259984134, "stop": 1775259984134}, {"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "75f7f962-0b23-465a-a797-372e001f029e-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f20cd081-fe34-4ea9-a48b-ec1231c8c005-attachment.json", "type": "application/json"}], "start": 1775259984135, "stop": 1775259984136}], "start": 1775259984122, "stop": 1775259984138}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "b0e1123c-8ea5-4539-9acf-ee5523446c61-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4299d363-1a82-4c06-98d3-0255659d2938-attachment.json", "type": "application/json"}], "start": 1775259984150, "stop": 1775259984151}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "0fe71192-33db-4e04-ace7-7f7d5c18c718-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "1a314e5c-a64a-4cdd-a1fb-577da965b80f-attachment.json", "type": "application/json"}], "start": 1775259984151, "stop": 1775259984151}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "68acfc8f-a1ab-4c34-af4a-4e182e0f53ad-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "2f24e7c2-f07f-4b4e-a0b9-269640d86057-attachment.json", "type": "application/json"}], "start": 1775259984152, "stop": 1775259984152}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "ce939781-4a92-4fc5-9cc5-f0e802eca838-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "65fe4c3d-cdef-4dc4-9b9a-d647563d9a56-attachment.json", "type": "application/json"}], "start": 1775259984152, "stop": 1775259984153}], "start": 1775259983833, "stop": 1775259984153}, {"name": "stock creation", "status": "passed", "steps": [{"name": "Waiter function: wait_stock_service_expected_quantity", "status": "passed", "start": 1775259984153, "stop": 1775259984156}, {"name": "Waiter function: wait_stock_service_expected_quantity", "status": "passed", "start": 1775259984156, "stop": 1775259984158}], "start": 1775259984153, "stop": 1775259984158}, {"name": "order creation", "status": "passed", "steps": [{"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "63467f4b-28fa-40c9-9100-d9d4f7ca55c9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "52ef0871-3588-4e97-a840-36ec85c9bafb-attachment.json", "type": "application/json"}], "start": 1775259984189, "stop": 1775259984189}, {"name": "Response → 200, trace_id: 9a5ac7c29ee2fa8bb23552b834d476cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "504258b5-85fd-4ddb-acdd-40327c810358-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2483b38a-39ff-4ad9-ac3b-d290f9252a1a-attachment.json", "type": "application/json"}], "start": 1775259984189, "stop": 1775259984190}], "attachments": [{"name": "cURL", "source": "9ea64c01-8922-42ef-b7d5-bd44346737c6-attachment.txt", "type": "text/plain"}], "start": 1775259984189, "stop": 1775259984190}], "start": 1775259984158, "stop": 1775259984192}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "05c13711-aa39-4d44-adb0-54f994be5a91-attachment.json", "type": "application/json"}, {"name": "Response", "source": "3186eb1e-f169-4e78-a023-e26ef682dd8b-attachment.json", "type": "application/json"}], "start": 1775259984219, "stop": 1775259984254}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775259984255, "stop": 1775259986639}, {"name": "Waiter function: wait_availability_reservation", "status": "passed", "start": 1775259986648, "stop": 1775259986651}], "start": 1775259984158, "stop": 1775259986651}, {"name": "wave creation", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/create-wave/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "47095cff-fefc-4944-bcc4-7d042e607710-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f8b0903f-252d-4f52-ab23-bf325786cd83-attachment.json", "type": "application/json"}], "start": 1775259987705, "stop": 1775259987706}, {"name": "Response → 200, trace_id: 831eec99af53d3b90705ab033bc79fa9", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e94abdc-9bf3-4fa4-a9b3-e0d01efc0e70-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c09cf63b-d013-4ea3-8176-241e24cdd9c6-attachment.json", "type": "application/json"}], "start": 1775259987706, "stop": 1775259987706}], "attachments": [{"name": "cURL", "source": "56fb597a-9590-4a4e-b84d-890e66c19763-attachment.txt", "type": "text/plain"}], "start": 1775259987705, "stop": 1775259987706}, {"name": "Waiter function: wait_assembly_wave", "status": "passed", "start": 1775259987714, "stop": 1775259987716}], "start": 1775259986651, "stop": 1775259987716}, {"name": "picking", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "34be7dac-f6e5-4588-96c2-df7f723cc3bf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "230ee864-d8f6-439c-b1b9-bd80191d7b32-attachment.json", "type": "application/json"}], "start": 1775259987752, "stop": 1775259987752}, {"name": "Response → 200, trace_id: 862970aebbdede5dd09fdfae99a55d67", "status": "passed", "attachments": [{"name": "response.headers", "source": "a8a7703c-f13d-4bd8-a456-b32de69a233b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "18e8a866-cbe6-4400-9a1e-309d01b06b63-attachment.json", "type": "application/json"}], "start": 1775259987753, "stop": 1775259987753}], "attachments": [{"name": "cURL", "source": "eefbfb58-9855-4c01-a2fc-508730ac88fc-attachment.txt", "type": "text/plain"}], "start": 1775259987752, "stop": 1775259987753}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task-for-wave", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "15416e4d-326b-4607-95d5-8fa73755c406-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "816c9aae-9f99-4f1c-a5c6-1a9e70feaf0c-attachment.json", "type": "application/json"}], "start": 1775259987805, "stop": 1775259987805}, {"name": "Response → 200, trace_id: c8ddbade875eba3479ee0c3b9df45ff1", "status": "passed", "attachments": [{"name": "response.headers", "source": "e4177b88-a663-40fa-a906-74a53a06b9e2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e1d5314c-394a-41ab-8c28-8b5854b70c38-attachment.json", "type": "application/json"}], "start": 1775259987805, "stop": 1775259987805}], "attachments": [{"name": "cURL", "source": "99456c57-c5c2-406f-b536-ccde3a0f65a4-attachment.txt", "type": "text/plain"}], "start": 1775259987805, "stop": 1775259987805}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "20f95401-bf4b-494a-a7c3-177096145ece-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "78addee7-e221-4e58-99ce-dcfcf6363c30-attachment.json", "type": "application/json"}], "start": 1775259987847, "stop": 1775259987847}, {"name": "Response → 200, trace_id: efec3ea77d4f0e702dcbc796b1d142ad", "status": "passed", "attachments": [{"name": "response.headers", "source": "a309bc60-b0a3-4c23-baed-32797b8488d0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "792f3f5b-dad7-4230-92c9-fbf97986ef1e-attachment.json", "type": "application/json"}], "start": 1775259987847, "stop": 1775259987848}], "attachments": [{"name": "cURL", "source": "6993e52f-c0da-44b2-9380-38dac372f02b-attachment.txt", "type": "text/plain"}], "start": 1775259987847, "stop": 1775259987848}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6c78ca3f-b6f6-42ae-a519-53028c41f7f1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "588f9ceb-4282-4758-9bbb-dad231bcbff4-attachment.json", "type": "application/json"}], "start": 1775259987897, "stop": 1775259987898}, {"name": "Response → 200, trace_id: 15fc54dd2e814b79ee823028ee565e72", "status": "passed", "attachments": [{"name": "response.headers", "source": "06d87ce0-e188-427d-96de-d8106897326b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4bb4861c-c71f-42e2-a7c8-7dfdb437b85d-attachment.json", "type": "application/json"}], "start": 1775259987898, "stop": 1775259987898}], "attachments": [{"name": "cURL", "source": "4e7706fa-abe7-419d-a869-45a5436bf290-attachment.txt", "type": "text/plain"}], "start": 1775259987897, "stop": 1775259987898}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d91c3d5a-38cf-4ddc-a56c-3d096dc708ab-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a1930095-d33d-4ce2-bae7-30f34bb07347-attachment.json", "type": "application/json"}], "start": 1775259987930, "stop": 1775259987931}, {"name": "Response → 200, trace_id: 0b2ce33ea608b98223a693eabebe6ab3", "status": "passed", "attachments": [{"name": "response.headers", "source": "a9146468-392c-4322-bd69-3e329ec154ff-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4e9b947c-075c-4425-a8b8-891682b3b5dd-attachment.txt", "type": "text/plain"}], "start": 1775259987931, "stop": 1775259987931}], "attachments": [{"name": "cURL", "source": "653ed88d-540a-4f67-a8a1-f583e2e6444e-attachment.txt", "type": "text/plain"}], "start": 1775259987930, "stop": 1775259987931}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492776&pickingTaskKey=dd492e22363cae29543ea09f13a50bf970f8bc27e646a13db5024f3968a4bc99", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "afde2421-740d-4ff4-9314-dddde3adf945-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "aad052ec-3254-4fc7-b2dc-e73dabec8e3a-attachment.json", "type": "application/json"}], "start": 1775259987965, "stop": 1775259987966}, {"name": "Response → 200, trace_id: 2e2e1994c1ab16f73820bddd4c03fc17", "status": "passed", "attachments": [{"name": "response.headers", "source": "840c0ec0-e744-46fe-9d97-e65f294e7e90-attachment.json", "type": "application/json"}], "start": 1775259987966, "stop": 1775259987966}], "attachments": [{"name": "cURL", "source": "87e8b445-dae3-4c9d-8f71-ff1392f66a47-attachment.txt", "type": "text/plain"}], "start": 1775259987965, "stop": 1775259987966}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/sku-cell/inc-by-sku-barcode", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "45af3535-c25c-4913-ab42-7b64f24c8318-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a3cad28f-4bf8-458a-b7fe-40fa86103ad3-attachment.json", "type": "application/json"}], "start": 1775259987998, "stop": 1775259987998}, {"name": "Response → 200, trace_id: f36f2de5ac81e9c41408326679ff989d", "status": "passed", "attachments": [{"name": "response.headers", "source": "06c61b0a-df31-41a5-bf86-9841ad18c878-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7ce4dcf4-4c24-4f0b-a80b-bf2add002d19-attachment.json", "type": "application/json"}], "start": 1775259987998, "stop": 1775259987999}], "attachments": [{"name": "cURL", "source": "1b895d17-6f6f-40c1-943d-47af0d80431d-attachment.txt", "type": "text/plain"}], "start": 1775259987998, "stop": 1775259987999}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=dd492e22363cae29543ea09f13a50bf970f8bc27e646a13db5024f3968a4bc99&skuId=4100000000000052869&cellBarcode=QA-75259981902919936&cellId=488091", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0d1c0c4e-d9e9-4d90-8afd-4442076f8a51-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "22a35125-e077-4c6b-9cf6-95bd70810ab9-attachment.json", "type": "application/json"}], "start": 1775259988059, "stop": 1775259988059}, {"name": "Response → 200, trace_id: 768e06fa471cfb95040bc744291d0698", "status": "passed", "attachments": [{"name": "response.headers", "source": "5af9f41f-0328-4e29-8aa6-42868f6ac28b-attachment.json", "type": "application/json"}], "start": 1775259988059, "stop": 1775259988059}], "attachments": [{"name": "cURL", "source": "58c5d73f-f623-4d24-b9be-eae52857e22a-attachment.txt", "type": "text/plain"}], "start": 1775259988059, "stop": 1775259988059}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d03252f3-597b-41e3-bc30-f537f23c9f18-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1a553e12-487d-42c0-8c3a-9bcb890c9746-attachment.json", "type": "application/json"}], "start": 1775259988103, "stop": 1775259988103}, {"name": "Response → 200, trace_id: a7b586c1ef54b40206fc3546f3091ea1", "status": "passed", "attachments": [{"name": "response.headers", "source": "67b28757-70fe-4ef4-82d5-76ef83aa3bea-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3752d4fb-f0d0-40d0-97be-94a321cd44d8-attachment.json", "type": "application/json"}], "start": 1775259988103, "stop": 1775259988103}], "attachments": [{"name": "cURL", "source": "bb909c2b-ad83-4dbb-90bb-0a5fc79a4035-attachment.txt", "type": "text/plain"}], "start": 1775259988103, "stop": 1775259988103}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/sku-cell/inc-by-sku-barcode", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d740932f-f097-4349-96a3-eaeacd21ccca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "15103fb3-496b-4264-99c6-8922c45dbf7c-attachment.json", "type": "application/json"}], "start": 1775259988131, "stop": 1775259988131}, {"name": "Response → 200, trace_id: 3a26303687058e4025c7c3a2a5ed353e", "status": "passed", "attachments": [{"name": "response.headers", "source": "e1b2fcc4-2f2f-4db5-a180-37bb797870d6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8f1b2588-1518-40b3-8b25-004495fc0c8b-attachment.json", "type": "application/json"}], "start": 1775259988131, "stop": 1775259988132}], "attachments": [{"name": "cURL", "source": "001ab263-c358-4b50-bcbc-2c3489fbb4a2-attachment.txt", "type": "text/plain"}], "start": 1775259988131, "stop": 1775259988132}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=dd492e22363cae29543ea09f13a50bf970f8bc27e646a13db5024f3968a4bc99&skuId=4100000000000052870&cellBarcode=QA-75259981902919936&cellId=488091", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cebc2e15-1ee4-47ad-ad3e-b6a9667a7f6d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4945c780-df81-4077-91ee-f99f5d3a6ba1-attachment.json", "type": "application/json"}], "start": 1775259988184, "stop": 1775259988184}, {"name": "Response → 200, trace_id: e989c4db5555fbc3fde80ac4e6652075", "status": "passed", "attachments": [{"name": "response.headers", "source": "a4a91b35-9e6e-4a79-8cd4-9021b26fd2a3-attachment.json", "type": "application/json"}], "start": 1775259988184, "stop": 1775259988184}], "attachments": [{"name": "cURL", "source": "f673682b-9294-4a76-8abc-4aaba8c0c341-attachment.txt", "type": "text/plain"}], "start": 1775259988184, "stop": 1775259988184}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "76f50c22-b771-4ba2-8969-de4cf8939bc1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c5fed5bb-393f-4d28-9fb0-f993a3e9663d-attachment.json", "type": "application/json"}], "start": 1775259988217, "stop": 1775259988218}, {"name": "Response → 200, trace_id: 65c40f5c3023f2a8a18bb1ff6357a8a2", "status": "passed", "attachments": [{"name": "response.headers", "source": "104532a7-8b28-49ed-b5f1-b39fffc7f733-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8ffb31cc-9660-4a4f-96c9-e0dabdf51721-attachment.json", "type": "application/json"}], "start": 1775259988218, "stop": 1775259988218}], "attachments": [{"name": "cURL", "source": "12b4d3db-41c5-4511-b3de-f0ac0f78bc9f-attachment.txt", "type": "text/plain"}], "start": 1775259988217, "stop": 1775259988218}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/cell-pre/bind-task-boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5f2bdfc0-9282-4228-b943-5f57f0b890cc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4a2f6097-414c-4f0b-a8e9-bbb42aadb99c-attachment.json", "type": "application/json"}], "start": 1775259988247, "stop": 1775259988247}, {"name": "Response → 200, trace_id: f8c1e6f2177c46c981e2d177202769cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "c658df78-f528-40fc-b463-e0a40a4f06c3-attachment.json", "type": "application/json"}], "start": 1775259988247, "stop": 1775259988247}], "attachments": [{"name": "cURL", "source": "d767b578-af71-4419-b7d3-865d275193c5-attachment.txt", "type": "text/plain"}], "start": 1775259988247, "stop": 1775259988248}, {"name": "Waiter function: wait_order_order", "status": "passed", "start": 1775259988250, "stop": 1775259991255}], "start": 1775259987716, "stop": 1775259991255}, {"name": "consolidation", "status": "passed", "steps": [{"name": "Waiter function: wait_consolidation_task_start", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/start", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e90ccde3-f0cf-4964-8077-00f408b2c4c3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d8fc6955-375a-4f2e-85d7-a386ab891dbf-attachment.json", "type": "application/json"}], "start": 1775259991375, "stop": 1775259991375}, {"name": "Response → 200, trace_id: 343a50aaa2de11edafe47366b68ff654", "status": "passed", "attachments": [{"name": "response.headers", "source": "68fb3cf6-bd54-4e3e-879a-6269f5112b3a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "51fc05cc-a711-4a51-b4e4-f434646b6222-attachment.json", "type": "application/json"}], "start": 1775259991375, "stop": 1775259991375}], "attachments": [{"name": "cURL", "source": "2ee47634-ad18-42d9-a091-e76f94918299-attachment.txt", "type": "text/plain"}], "start": 1775259991375, "stop": 1775259991375}], "start": 1775259991255, "stop": 1775259991380}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1ea52655-6921-4810-a8f8-da12611ee21c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "079b4ebf-8f10-47dc-abf1-6ddda7a49784-attachment.json", "type": "application/json"}], "start": 1775259991470, "stop": 1775259991470}, {"name": "Response → 200, trace_id: eed1346ddc84ab62c27f1d7bae2a54bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "c693d944-4977-447c-a449-636e244aac97-attachment.json", "type": "application/json"}], "start": 1775259991470, "stop": 1775259991471}], "attachments": [{"name": "cURL", "source": "c79e1bf9-5276-491d-9da2-0d3da12c7740-attachment.txt", "type": "text/plain"}], "start": 1775259991470, "stop": 1775259991471}, {"name": "Waiter function: wait_availability_reservation", "status": "passed", "start": 1775259991476, "stop": 1775259991477}, {"name": "Waiter function: wait_availability_item_in_cell_by_sku_id", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "fc5b97d8-d125-4197-9c0f-2c425b9a9737-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "a42ccf85-25a4-4502-b33c-fdd966fc1fba-attachment.json", "type": "application/json"}], "start": 1775259991499, "stop": 1775259991499}], "start": 1775259991477, "stop": 1775259991499}, {"name": "Waiter function: wait_availability_item_in_cell_by_sku_id", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "5fc89088-e39d-493b-946b-cd9a9461540a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1280271f-c52e-4a0f-8dd7-e55eac12fe3a-attachment.json", "type": "application/json"}], "start": 1775259991527, "stop": 1775259991528}], "start": 1775259991499, "stop": 1775259991528}, {"name": "Waiter function: wait_consolidation_cell_by_box_barcode", "status": "passed", "start": 1775259991528, "stop": 1775259991531}], "start": 1775259991255, "stop": 1775259991531}, {"name": "sorting", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: POST https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task; \n Expected status code: 200; \n Actual status code: 502; \n Response body: Bad Gateway; \n X-Aer-Trace-Id: \n", "trace": "  File \"/app/tests/wms/test_e2e_outbound/test_outbound.py\", line 60, in test_e2e_two_items_outbound\n    order.state_pre_packed()\n  File \"/app/src/framework/wms/builders/order/v2_order.py\", line 523, in state_pre_packed\n    sort_task.complete_sorting_task()\n  File \"/app/src/framework/wms/builders/assembly/sorting_task.py\", line 78, in complete_sorting_task\n    SortingTaskApi(headers=self.headers).api_v1_sorting_complete_task_post()\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/sorting_task_api.py\", line 347, in api_v1_sorting_complete_task_post\n    return self.api_v1_sorting_complete_task_post_with_http_info(**kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/sorting_task_api.py\", line 404, in api_v1_sorting_complete_task_post_with_http_info\n    return self.api_client.call_api(\n           ^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/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_wms_be_service_assembly/api_client.py\", line 172, in __call_api\n    assert response_data.status == expected_status_code, \\\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n"}, "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/create-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c5ccc207-1122-456f-9ae8-649e8d0703ea-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9b12e798-582d-455e-8d61-bf5871d7fbbf-attachment.json", "type": "application/json"}], "start": 1775259991560, "stop": 1775259991560}, {"name": "Response → 200, trace_id: f6450b4344dcc805eeb97429d94fb2f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "708ea071-bc3c-49f5-9414-38c96427c1c4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "56a02a2e-4e9c-4f2c-8143-08e2b5c6ffb6-attachment.json", "type": "application/json"}], "start": 1775259991560, "stop": 1775259991560}], "attachments": [{"name": "cURL", "source": "23d9c35c-6ce9-48ba-96d4-9b6571b00a32-attachment.txt", "type": "text/plain"}], "start": 1775259991560, "stop": 1775259991560}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "175b54d5-9fc3-4d5f-a820-9cb9eee4d420-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2bdd88c8-0182-4cd7-b678-ebe42ef7249b-attachment.json", "type": "application/json"}], "start": 1775259991617, "stop": 1775259991618}, {"name": "Response → 200, trace_id: 2d3807b11e28be7432cf5e8fd82a805c", "status": "passed", "attachments": [{"name": "response.headers", "source": "cdd947c9-5da7-4121-9e39-06a9be315626-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0930ceb4-eb34-45f3-8f62-02da3069332c-attachment.json", "type": "application/json"}], "start": 1775259991618, "stop": 1775259991618}], "attachments": [{"name": "cURL", "source": "38b5d8a9-06b2-475c-b45c-8bc027641c91-attachment.txt", "type": "text/plain"}], "start": 1775259991617, "stop": 1775259991618}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/add-box-to-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b80b75d7-f5af-489d-bc2a-345787466d37-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b5e23cb0-739c-4ce6-a103-48afbdbfd10b-attachment.json", "type": "application/json"}], "start": 1775259991680, "stop": 1775259991681}, {"name": "Response → 200, trace_id: 13963e9cb60a17029fa09d49e00f09aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "65063957-04dd-4cbc-97b2-71737895d218-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "df0e9dad-aeb8-4950-8845-611c7af53afd-attachment.json", "type": "application/json"}], "start": 1775259991681, "stop": 1775259991681}], "attachments": [{"name": "cURL", "source": "bad1b7ac-f105-4ee9-a1fe-39d1ced49ff5-attachment.txt", "type": "text/plain"}], "start": 1775259991680, "stop": 1775259991681}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161035", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9c8b2c2e-3876-49ea-8120-11bb02e4aab9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8a7d0e72-f80f-48e2-9a9c-570993a7f39b-attachment.json", "type": "application/json"}], "start": 1775259991708, "stop": 1775259991708}, {"name": "Response → 200, trace_id: 77663b045b202c87af3901ece00d9a9a", "status": "passed", "attachments": [{"name": "response.headers", "source": "37729da3-58ee-4dd0-a9d6-8a27f9ec6796-attachment.json", "type": "application/json"}], "start": 1775259991708, "stop": 1775259991708}], "attachments": [{"name": "cURL", "source": "6b1a6d46-1f45-4ff1-b217-65792cce04dd-attachment.txt", "type": "text/plain"}], "start": 1775259991708, "stop": 1775259991708}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1cfcc25a-ed46-4744-bb71-31634cdaf8a7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "373a69e1-bda3-44ff-80f0-b3b364589799-attachment.json", "type": "application/json"}], "start": 1775259991751, "stop": 1775259991751}, {"name": "Response → 200, trace_id: a59517051f71c46878cbad6333c77f20", "status": "passed", "attachments": [{"name": "response.headers", "source": "2272f87d-112e-4a22-b565-9c20ace34219-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b1a59c16-80f3-4fc8-9783-8f3fa083aafc-attachment.json", "type": "application/json"}], "start": 1775259991751, "stop": 1775259991751}], "attachments": [{"name": "cURL", "source": "2b1e7bb4-6952-485f-82a7-38ba1ed023f9-attachment.txt", "type": "text/plain"}], "start": 1775259991751, "stop": 1775259991751}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/check-requirements", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "90c9088a-8563-4768-b52e-71c06d4ca1b8-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "747fdcba-afa9-4357-b7ad-8a8b5ec1f7ed-attachment.json", "type": "application/json"}], "start": 1775259991829, "stop": 1775259991829}, {"name": "Response → 200, trace_id: 8a65449ef9340c9026f63251aed73269", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e448f15-3dd4-4e11-8028-c3fa2e94b89f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "53d35734-2ebc-47bd-b226-029be12e1bb8-attachment.json", "type": "application/json"}], "start": 1775259991829, "stop": 1775259991829}], "attachments": [{"name": "cURL", "source": "91cf49c9-f12c-4816-9d56-2a07d4106f7b-attachment.txt", "type": "text/plain"}], "start": 1775259991829, "stop": 1775259991829}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e3adee46-09e8-4daf-9968-53a6850a0255-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "813cfb29-985e-4240-b886-a2329bc40fcb-attachment.json", "type": "application/json"}], "start": 1775259991874, "stop": 1775259991874}, {"name": "Response → 200, trace_id: 0803d3852285648ab0c75e25c72ae33f", "status": "passed", "attachments": [{"name": "response.headers", "source": "1283a126-f14c-4842-a810-a48572b44d85-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6f96fe0d-0f5a-4d14-bc99-acb040f453ac-attachment.json", "type": "application/json"}], "start": 1775259991874, "stop": 1775259991875}], "attachments": [{"name": "cURL", "source": "4252ee04-b243-42d1-a8ba-b3cf625d7aec-attachment.txt", "type": "text/plain"}], "start": 1775259991874, "stop": 1775259991875}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/multi-barcode/box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7b98d933-2d87-462c-bb35-26ac68aa9449-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "531de69d-e6e7-4c13-ab28-ec9ce1dc6650-attachment.json", "type": "application/json"}], "start": 1775259991918, "stop": 1775259991919}, {"name": "Response → 200, trace_id: ea3024ddfce7765ba9f335cf9148dc07", "status": "passed", "attachments": [{"name": "response.headers", "source": "5ecd5a15-4d6c-46b5-8ca0-69545acb229c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "947b4a8c-10fa-46ed-b0a0-1949b5a7aca9-attachment.json", "type": "application/json"}], "start": 1775259991919, "stop": 1775259991919}], "attachments": [{"name": "cURL", "source": "4cff9e6f-88ea-45c7-bde0-2d7d2d3a4fc8-attachment.txt", "type": "text/plain"}], "start": 1775259991918, "stop": 1775259991919}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "b486efbc-5e12-45a1-9abc-91f4ce0090e9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f123aafa-9d44-483f-a787-d9c41d2a219b-attachment.json", "type": "application/json"}], "start": 1775259991963, "stop": 1775259991963}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192454&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d2943ce4-034a-4b43-9da4-d703cbe2245e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b1286fa3-791f-4d1d-bd02-5c923df829d1-attachment.json", "type": "application/json"}], "start": 1775259992036, "stop": 1775259992036}, {"name": "Response → 200, trace_id: 533706824de3dfa6e96f9bab50cc268c", "status": "passed", "attachments": [{"name": "response.headers", "source": "3253cddf-91a5-4a3f-a87b-3b03398e2d26-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9736e5bb-4c07-4e42-ac2a-c6ad6fe72063-attachment.txt", "type": "text/plain"}], "start": 1775259992036, "stop": 1775259992038}], "attachments": [{"name": "cURL", "source": "ce5ab5f8-d7df-48cc-a334-bf2e6934c452-attachment.txt", "type": "text/plain"}], "start": 1775259992036, "stop": 1775259992038}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "eb131ce5-6396-4633-afb8-896becd9459c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2c224753-25ea-48ca-9ac2-27b1f6a9f6cb-attachment.json", "type": "application/json"}], "start": 1775259992053, "stop": 1775259992053}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/wall/cell/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5eba8fe6-d87c-4163-bab9-f396ebac227e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6fd54971-f8c4-45d8-ad2e-3cfc998e5b31-attachment.json", "type": "application/json"}], "start": 1775259993450, "stop": 1775259993451}, {"name": "Response → 200, trace_id: 938b00bd2a4b7f48229388384066bf8b", "status": "passed", "attachments": [{"name": "response.headers", "source": "538f6a08-3ce4-4916-86f4-92ccad934015-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "db54d114-1b17-4d16-a61a-198c681a65ce-attachment.json", "type": "application/json"}], "start": 1775259993451, "stop": 1775259993451}], "attachments": [{"name": "cURL", "source": "105ad01f-d6a0-4aae-b2fa-23c304e6ff6c-attachment.txt", "type": "text/plain"}], "start": 1775259993450, "stop": 1775259993451}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/multi-barcode/box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eccf4aa2-7916-4053-9ace-5d85e998896a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "07548543-486d-4d18-bc19-eceb25b3c2e0-attachment.json", "type": "application/json"}], "start": 1775259993623, "stop": 1775259993624}, {"name": "Response → 200, trace_id: 3e3e8eb438093b76e460292c2992a939", "status": "passed", "attachments": [{"name": "response.headers", "source": "7d3747c6-c339-402c-96a3-65458debb53c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d30fdbf0-5ee8-4c1a-9900-f9ebca4cc25c-attachment.json", "type": "application/json"}], "start": 1775259993624, "stop": 1775259993624}], "attachments": [{"name": "cURL", "source": "e7d7a717-f5c3-4db2-8547-9ab458acf6ac-attachment.txt", "type": "text/plain"}], "start": 1775259993623, "stop": 1775259993624}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "f2127cbe-e05a-43bb-a284-52e3ad78ae08-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d8521dc8-3cad-4775-afa9-ea66989d1216-attachment.json", "type": "application/json"}], "start": 1775259993721, "stop": 1775259993724}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/wall/cell/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2563306c-b8d8-4ce9-a310-44113188c5f1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c888cdfb-5a00-49d4-ac1e-2136208160b8-attachment.json", "type": "application/json"}], "start": 1775259994908, "stop": 1775259994911}, {"name": "Response → 200, trace_id: 740b1da1ba8687dd46698e7909e678f7", "status": "passed", "attachments": [{"name": "response.headers", "source": "4eb9c715-b770-435c-98df-7ecace391cce-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bfc78a71-f034-4f3f-9179-e6e9905059d5-attachment.json", "type": "application/json"}], "start": 1775259994911, "stop": 1775259994912}], "attachments": [{"name": "cURL", "source": "b0981642-5205-4caa-ad06-1311a394db97-attachment.txt", "type": "text/plain"}], "start": 1775259994908, "stop": 1775259994912}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4cb485fe-43df-48f7-a2ea-77986b14dc6c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "66d9e617-ae8c-467b-8755-17445de0b969-attachment.json", "type": "application/json"}], "start": 1775259994994, "stop": 1775259994995}, {"name": "Response → 200, trace_id: a6955dc01019e80accc04e9bfb5f6fe3", "status": "passed", "attachments": [{"name": "response.headers", "source": "d23cec92-4631-4fd3-8f59-c0456d274e14-attachment.json", "type": "application/json"}], "start": 1775259994995, "stop": 1775259994995}], "attachments": [{"name": "cURL", "source": "e0417942-1b2c-43cf-80d6-39ac92d79292-attachment.txt", "type": "text/plain"}], "start": 1775259994994, "stop": 1775259994995}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5be10856-6a5f-40b7-9bea-e0c598036b28-attachment.json", "type": "application/json"}], "start": 1775260087915, "stop": 1775260087929}, {"name": "Response → 502, trace_id: None", "status": "passed", "attachments": [{"name": "response.headers", "source": "0256b80c-3598-4aa0-9d63-9ae29ea8a6af-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f64038c1-7f3a-4473-8433-3d03a765603f-attachment.txt", "type": "text/plain"}], "start": 1775260087929, "stop": 1775260087965}], "attachments": [{"name": "cURL", "source": "40ad11a5-6d71-4d6d-8db3-7b959d2a32a1-attachment.txt", "type": "text/plain"}], "start": 1775260087915, "stop": 1775260087965}], "start": 1775259991531, "stop": 1775260087966}], "attachments": [{"name": "log", "source": "0316ef25-18fb-4db3-82c6-3ace2474bb47-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_providers", "value": "{'provider': WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket'), 'warehouse': WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile=<DeliveryLastMile.TANAIS: 'TANAIS'>, city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.TANAIS: 13>, last_mile_id=<DeliveryLastMileId.TANAIS: 13>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.TANAIS: 13>, order_source=<OrderSource.GLOBAL: 'GLOBAL'>, provider_name=<DeliveryLastMile.TANAIS: 'TANAIS'>), WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=33349, phone='3335000010', role_wms_id=23, zone_id=None, patronymic=None, last_name='', password='1234', first_name='', token='', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None)}"}], "start": 1775259983833, "stop": 1775260088001, "uuid": "9f04d308-453d-491a-b557-edd2a7aa9101", "historyId": "4b608d7fc277884708d4c8c4a7da4967", "testCaseId": "b0c7bd68b91104b4c4bc61f35a4affc3", "fullName": "tests.wms.test_e2e_outbound.test_outbound.TestE2EOutbound#test_e2e_two_items_outbound", "labels": [{"name": "feature", "value": "WMS Multy outbound"}, {"name": "tag", "value": "wms-end-to-end-outbound"}, {"name": "parentSuite", "value": "tests.wms.test_e2e_outbound"}, {"name": "suite", "value": "test_outbound"}, {"name": "subSuite", "value": "TestE2EOutbound"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-4-apm66t56"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_e2e_outbound.test_outbound"}], "titlePath": ["tests", "wms", "test_e2e_outbound", "test_outbound.py", "TestE2EOutbound"]}