{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192627 in wrong status: PROBLEMATIC_WAITING_CANCELING\nassert 'PROBLEMATIC_...ING_CANCELING' == 'PICKING'\n  \n  - PICKING\n  + PROBLEMATIC_WAITING_CANCELING", "trace": "self = <tests.wms.test_assembly.test_lost_goods.TestLostGoods object at 0x71ed3ffb3950>\nwms_provider_warehouse_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 0x71ed37d84fd0>)\n\n    def test_no_goods_reject_part_picking_with_rereservation(self, wms_provider_warehouse_stock: DTO):\n        # Check cell starter conditions\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=wms_provider_warehouse_stock.stocks.cell_key,\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == wms_provider_warehouse_stock.stocks.items[0].qty\n        assert sku_cell_info.SkuCell.inventory_needed is False\n        assert sku_cell_info.SkuCellBarcodeInfo.inventory_needed is False\n    \n        # Prepare test data with partial quantity\n        item = wms_provider_warehouse_stock.stocks.items[0]\n        order_item, missing_qty = calc_lost_goods_order_qty(item=item)\n    \n        # Create order and transition through states until it reaches problematic status\n        order = WMSOrderBuilder(\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            items=[order_item],\n            user=wms_provider_warehouse_stock.stocks.user,\n            provider=wms_provider_warehouse_stock.provider,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        ).login_or_refresh()\n    \n        order.state_created()\n        order.state_ready()\n        order.state_in_queue()\n        order.outbound_picking_with_no_goods()\n        wait_order_assembly(\n            order_id=order.order.order_id, order_status=AssemblyOrderStatus.PROBLEMATIC_WAITING_CANCELING\n        )\n        order.picking.consolidation_cell_pre_bind_task_boxes()\n        order.state_consolidation().state_pre_packed()\n        # Create and update lost goods record, verify it's in NEED_CONFIRM status\n        lost_goods = WMSLostGoodsBuilder(\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n            sku_barcode=wms_provider_warehouse_stock.stocks.items[0].barcode,\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        )\n        lost_goods.update_lost_good()\n        assert (\n            lost_goods.data.lost_good.status == AvailabilityLostGoodStatus.NEED_CONFIRM\n        ), f\"lost good in wrong status: {lost_goods.data.lost_good.status}\"\n    \n        # Reject lost good with missing quantity and verify inventory status\n        order_missing_qty = order.picking.data.picked_barcodes[wms_provider_warehouse_stock.stocks.cell_key][\n            str(item.sku)\n        ][item.barcode].amount_missing\n        lost_goods.lost_good_reject(order_missing_qty)\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n        )[0]\n        assert (\n            sku_cell_info.SkuCellBarcodeInfo.amount == order_missing_qty\n        ), f\"wrong return amount: {sku_cell_info.SkuCellBarcodeInfo.amount}\"\n        assert not sku_cell_info.SkuCell.inventory_needed\n        assert not sku_cell_info.SkuCellBarcodeInfo.inventory_needed\n>       wait_order_assembly(order_id=order.order.order_id, order_status=AssemblyOrderStatus.PICKING)\n\ntests/wms/test_assembly/test_lost_goods.py:226: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n/usr/local/lib/python3.11/site-packages/retrying.py:55: in wrapped_f\n    return Retrying(*dargs, **dkw).call(f, *args, **kw)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\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                      ^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\norder_id = 4278192627, order_status = <AssemblyOrderStatus.PICKING: 'PICKING'>\norder_type = None, last_mile_id = None\n\n    @retry(stop_max_attempt_number=6, wait_fixed=10 * 6000)\n    def wait_order_assembly(\n        order_id: int, order_status: AssemblyOrderStatus = None, order_type: WMSOrderType = None, last_mile_id: int = None\n    ):\n        order = AssemblyQueries().get_order(order_id)\n        assert order, f\"No Order created in Assembly service with ID: {order_id}\"\n        if order_status is not None:\n>           assert order.status == order_status.name, f\"{order_id} in wrong status: {order.status}\"\nE           AssertionError: 4278192627 in wrong status: PROBLEMATIC_WAITING_CANCELING\nE           assert 'PROBLEMATIC_...ING_CANCELING' == 'PICKING'\nE             \nE             - PICKING\nE             + PROBLEMATIC_WAITING_CANCELING\n\nsrc/framework/wms/validation/waiters/order.py:66: AssertionError"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "1bd31dab-6869-4539-97dd-aaf313c96e62-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e03eda3e-6919-4ef6-8281-55fcf55a3648-attachment.json", "type": "application/json"}], "start": 1775519493268, "stop": 1775519493269}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "f89a96f3-53e2-4d66-933c-3f169a4bfdd4-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "28e1c25c-fd4e-4020-b12b-a3ecc3dd4c47-attachment.json", "type": "application/json"}], "start": 1775519493277, "stop": 1775519493277}], "start": 1775519493269, "stop": 1775519493281}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "c259cbe7-a3c5-4e6c-8687-46de8ef23bbc-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "cf64e168-44e9-4bc0-934e-2e8cc7fa3210-attachment.json", "type": "application/json"}], "start": 1775519493290, "stop": 1775519493290}, {"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": "edfa5332-58d3-42e7-8ab1-57d2cc29e05e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "15369d8c-2622-4c14-afaa-f8d32769f92e-attachment.json", "type": "application/json"}], "start": 1775519493321, "stop": 1775519493321}, {"name": "Response → 200, trace_id: 267209398da50fdf2d0acb55e97e819e", "status": "passed", "attachments": [{"name": "response.headers", "source": "94c3e22a-2136-4a80-a606-08dfb9d630ac-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1e8f4014-93eb-4047-93b2-f90b44aa7add-attachment.json", "type": "application/json"}], "start": 1775519493321, "stop": 1775519493321}], "attachments": [{"name": "cURL", "source": "9c99f1b7-7d6a-4cf9-8a6e-a761e428d2bb-attachment.txt", "type": "text/plain"}], "start": 1775519493321, "stop": 1775519493321}], "start": 1775519493291, "stop": 1775519493324}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "8ae6bdf6-763d-4e5d-b464-547b43e5cde2-attachment.json", "type": "application/json"}, {"name": "Response", "source": "f33f2723-cc33-47fc-a9fb-6cb0b517c447-attachment.json", "type": "application/json"}], "start": 1775519493328, "stop": 1775519493356}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775519493357, "stop": 1775519495718}, {"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": "a5e438b2-cc48-42f4-9877-96a8fcfd2857-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1ecb41d4-dc0c-4fc0-9f09-363d43f9a917-attachment.json", "type": "application/json"}], "start": 1775519496818, "stop": 1775519496818}, {"name": "Response → 200, trace_id: cd187490c357796a349e6d30dcdaf85a", "status": "passed", "attachments": [{"name": "response.headers", "source": "89a87042-3d4d-49ec-b432-83bc77847a2f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "85adede8-9f88-4c22-80bc-b09525e1484f-attachment.json", "type": "application/json"}], "start": 1775519496818, "stop": 1775519496819}], "attachments": [{"name": "cURL", "source": "d39fadc7-6ddf-4500-ba57-b81bd41ddca8-attachment.txt", "type": "text/plain"}], "start": 1775519496818, "stop": 1775519496819}, {"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": "817c2289-24de-42f3-a9e0-0f256eab1c94-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "18958cc6-04e2-4fa7-8313-4f5e202684c3-attachment.json", "type": "application/json"}], "start": 1775519496865, "stop": 1775519496865}, {"name": "Response → 200, trace_id: 34ddcc9fc4af2a0f68c5033d288dbfb2", "status": "passed", "attachments": [{"name": "response.headers", "source": "72adf38c-d254-4bbd-b3ff-ca9b5d383e7b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "46ea5d1c-19b8-4feb-8054-35328a905ad7-attachment.json", "type": "application/json"}], "start": 1775519496865, "stop": 1775519496865}], "attachments": [{"name": "cURL", "source": "9f406428-81a6-461f-8d88-ad2cf68e8db7-attachment.txt", "type": "text/plain"}], "start": 1775519496865, "stop": 1775519496866}, {"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": "b8f8b819-195a-401f-8f1f-8c9a29274300-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "59b83a5c-2f41-4d94-b84f-2d53a7aba263-attachment.json", "type": "application/json"}], "start": 1775519496915, "stop": 1775519496915}, {"name": "Response → 200, trace_id: 0c54f5fb993877e20908322612fa0d74", "status": "passed", "attachments": [{"name": "response.headers", "source": "dd7907a1-764d-4922-87dd-eff293dd8135-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cf8755d1-6ff3-49a7-9911-8aa7dc1ec196-attachment.json", "type": "application/json"}], "start": 1775519496915, "stop": 1775519496915}], "attachments": [{"name": "cURL", "source": "bb1faf95-cf6a-4e67-97d2-e4995fb52f10-attachment.txt", "type": "text/plain"}], "start": 1775519496915, "stop": 1775519496915}, {"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": "ec9c53b5-b102-4cc7-b875-1a28617852d9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3a916d97-ca57-4355-871d-d82f826e5775-attachment.json", "type": "application/json"}], "start": 1775519496958, "stop": 1775519496959}, {"name": "Response → 200, trace_id: 1c28390d94be7aea7080b4ce588789d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "1414de7b-60cd-4ee2-8c0a-d5db86986a57-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c68556ec-bed8-4969-9b17-e36879f3eda0-attachment.json", "type": "application/json"}], "start": 1775519496959, "stop": 1775519496959}], "attachments": [{"name": "cURL", "source": "3138c95d-1b10-4578-a94e-1afea293f7b7-attachment.txt", "type": "text/plain"}], "start": 1775519496958, "stop": 1775519496959}, {"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": "32d1e03b-3143-4447-8fbd-adb910736411-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0c7b172e-3aa4-4a52-8604-ebe2c8a90d97-attachment.json", "type": "application/json"}], "start": 1775519496987, "stop": 1775519496987}, {"name": "Response → 200, trace_id: d2e3661a771adcec0149ff60e6691b46", "status": "passed", "attachments": [{"name": "response.headers", "source": "a684aee1-6c92-4041-9f43-d6513cf9fc13-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "55a3949b-cda1-44d2-9ed4-2d85679ce4a0-attachment.txt", "type": "text/plain"}], "start": 1775519496987, "stop": 1775519496988}], "attachments": [{"name": "cURL", "source": "ab18b8d6-afed-4981-b60e-f4f71e74e3bc-attachment.txt", "type": "text/plain"}], "start": 1775519496987, "stop": 1775519496988}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492935&pickingTaskKey=efc2ab14e13064b5a8be9811a29db66a3320e4630599f6b04000a6d5c4990403", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "07c28ad4-eef3-4009-a9c5-dc1a2f590815-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "6ca2fd2a-aab0-4c71-a88a-5d969e4a2806-attachment.json", "type": "application/json"}], "start": 1775519497015, "stop": 1775519497016}, {"name": "Response → 200, trace_id: 828d16795ab5c52c57c72500ba39bdb5", "status": "passed", "attachments": [{"name": "response.headers", "source": "1ec78774-17cf-406b-8bac-23e4aaddb119-attachment.json", "type": "application/json"}], "start": 1775519497016, "stop": 1775519497016}], "attachments": [{"name": "cURL", "source": "0d84cf59-f722-4edb-a053-611ad971e7e2-attachment.txt", "type": "text/plain"}], "start": 1775519497015, "stop": 1775519497016}, {"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": "393c4ca7-b7e1-4375-84b4-b15cc04f51e9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d1ad6260-60cc-479a-8431-5b268dc31407-attachment.json", "type": "application/json"}], "start": 1775519497046, "stop": 1775519497046}, {"name": "Response → 200, trace_id: 6ac7b4e9076149c3fd29339c145a9c32", "status": "passed", "attachments": [{"name": "response.headers", "source": "9dce78bc-a1d4-4c83-9762-4bf5bad337ee-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "498a1faa-8f6c-4a00-b28e-0eac607d71ea-attachment.json", "type": "application/json"}], "start": 1775519497046, "stop": 1775519497046}], "attachments": [{"name": "cURL", "source": "a1aa63ea-66ac-4d6c-8a0d-2af39e35b494-attachment.txt", "type": "text/plain"}], "start": 1775519497046, "stop": 1775519497046}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=efc2ab14e13064b5a8be9811a29db66a3320e4630599f6b04000a6d5c4990403&skuId=4100000000000053381&cellBarcode=QA-75519492093358336&cellId=488484", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "372ccdb5-4221-41d9-96f4-2d5bdcca764b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8a547553-9a62-4e89-a297-de575ad312c8-attachment.json", "type": "application/json"}], "start": 1775519507203, "stop": 1775519507204}, {"name": "Response → 200, trace_id: 5774048f335596dd48b26f92d27e6573", "status": "passed", "attachments": [{"name": "response.headers", "source": "c45ab16c-7d28-441a-8af7-6f4eb4d746cf-attachment.json", "type": "application/json"}], "start": 1775519507204, "stop": 1775519507204}], "attachments": [{"name": "cURL", "source": "b2cbe148-fe00-4418-bb0e-f8a8620e7f5f-attachment.txt", "type": "text/plain"}], "start": 1775519507203, "stop": 1775519507204}, {"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": "e018eb37-e557-4a97-84e0-b9cae175f9cf-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2b67a000-492c-4be4-ad76-a341366ae9d9-attachment.json", "type": "application/json"}], "start": 1775519507237, "stop": 1775519507237}, {"name": "Response → 200, trace_id: 223cb20056ff7de657cc4fa23954ea9a", "status": "passed", "attachments": [{"name": "response.headers", "source": "b59615e5-76d1-4ed1-bbbb-30c89214f6d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ca0719ad-780e-48a5-9b6d-7c215de027d7-attachment.json", "type": "application/json"}], "start": 1775519507237, "stop": 1775519507237}], "attachments": [{"name": "cURL", "source": "6c74d4cb-d6e4-405e-8e8e-919f05b1528d-attachment.txt", "type": "text/plain"}], "start": 1775519507237, "stop": 1775519507237}, {"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": "6b99893e-20ae-46ff-87cf-c491246f8e72-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "53665f6a-a222-4dc4-a104-46ed723d1069-attachment.json", "type": "application/json"}], "start": 1775519507267, "stop": 1775519507268}, {"name": "Response → 200, trace_id: 21bf18b8f19ff79dbf393b59a1e64063", "status": "passed", "attachments": [{"name": "response.headers", "source": "0069c686-b99f-4260-a224-00f459dfdeb3-attachment.json", "type": "application/json"}], "start": 1775519507268, "stop": 1775519507268}], "attachments": [{"name": "cURL", "source": "f0e662fc-6177-471b-b431-d2aa8d991692-attachment.txt", "type": "text/plain"}], "start": 1775519507267, "stop": 1775519507268}, {"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": "4aef3bc6-ff45-4152-8834-07052e824fb5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b235b68d-e53b-4a10-ad18-8891cf4288df-attachment.json", "type": "application/json"}], "start": 1775519507348, "stop": 1775519507348}, {"name": "Response → 200, trace_id: 8b34b1bec0cf884b9e14515c52ee1239", "status": "passed", "attachments": [{"name": "response.headers", "source": "40969d77-0def-4490-97c9-c1cd9a6ab074-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "72dd3642-f7eb-4915-b769-b5aa4d79fdda-attachment.json", "type": "application/json"}], "start": 1775519507348, "stop": 1775519507349}], "attachments": [{"name": "cURL", "source": "c5c9513a-8911-44d4-be23-456c7a58ce7c-attachment.txt", "type": "text/plain"}], "start": 1775519507348, "stop": 1775519507349}], "start": 1775519507270, "stop": 1775519507352}, {"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": "bc6a05a5-9320-4d28-b2ce-b36774bc192c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8448ac25-815e-4e6d-8765-6e6a4083a3f5-attachment.json", "type": "application/json"}], "start": 1775519507429, "stop": 1775519507430}, {"name": "Response → 200, trace_id: ddfd02399a05f90cca819ae6ddd8f3cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "bc6ba047-3a5c-476b-b811-c85afe175d7b-attachment.json", "type": "application/json"}], "start": 1775519507430, "stop": 1775519507430}], "attachments": [{"name": "cURL", "source": "509b60cc-3672-4134-a618-966bc649a2a8-attachment.txt", "type": "text/plain"}], "start": 1775519507429, "stop": 1775519507430}, {"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": "7fad36bb-7303-43c0-add3-c7ea8dd5eb1b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f32deaab-5404-4220-9ba9-414c06308b8b-attachment.json", "type": "application/json"}], "start": 1775519507456, "stop": 1775519507456}, {"name": "Response → 200, trace_id: 6a40278b6e89527c57b8436025d23786", "status": "passed", "attachments": [{"name": "response.headers", "source": "12a6808d-763e-470a-93e2-2cbc7f78e9ac-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "72399407-384c-4d10-8625-da005cb994aa-attachment.json", "type": "application/json"}], "start": 1775519507456, "stop": 1775519507456}], "attachments": [{"name": "cURL", "source": "d81bc45d-2bf8-46d0-b354-2bb6e379c79e-attachment.txt", "type": "text/plain"}], "start": 1775519507456, "stop": 1775519507456}, {"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": "dc2bd0c1-5233-43ae-920d-a9c1b4e09092-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a39716ca-251f-4263-9a08-374a8916a550-attachment.json", "type": "application/json"}], "start": 1775519507508, "stop": 1775519507508}, {"name": "Response → 200, trace_id: 2055b8e0fbc3bc4e99b9434e673da1ae", "status": "passed", "attachments": [{"name": "response.headers", "source": "b0cc8ed9-697e-4570-bf8b-84e023ede721-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ae85368b-c06f-4aed-9c60-4d21b399e9b0-attachment.json", "type": "application/json"}], "start": 1775519507508, "stop": 1775519507508}], "attachments": [{"name": "cURL", "source": "6379ae18-8f10-49a9-a800-725857e0d208-attachment.txt", "type": "text/plain"}], "start": 1775519507508, "stop": 1775519507508}, {"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": "df0b27c2-d3cc-4dc0-b8ce-2837e0c266de-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8303e5da-c1c1-4313-a2d3-f4306d44804f-attachment.json", "type": "application/json"}], "start": 1775519507563, "stop": 1775519507563}, {"name": "Response → 200, trace_id: 02a7d2e1a9bc07412e60dbf648daf890", "status": "passed", "attachments": [{"name": "response.headers", "source": "e924bc6f-6eb4-43b0-9c77-791ae5a6e646-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0a554567-5b40-4553-8710-34a38af8c9d1-attachment.json", "type": "application/json"}], "start": 1775519507563, "stop": 1775519507563}], "attachments": [{"name": "cURL", "source": "ba25730c-75c2-4bda-8c14-442585412ef6-attachment.txt", "type": "text/plain"}], "start": 1775519507563, "stop": 1775519507563}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161083", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2c96ecc2-7647-4cc9-b686-0a264f9b645c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5eeff375-788d-43bb-9d53-f1632050455f-attachment.json", "type": "application/json"}], "start": 1775519507587, "stop": 1775519507587}, {"name": "Response → 200, trace_id: 8adf8215f2b8832fd5f816dba381893b", "status": "passed", "attachments": [{"name": "response.headers", "source": "b946b158-9a31-41b3-8e4e-3c214c1390cf-attachment.json", "type": "application/json"}], "start": 1775519507587, "stop": 1775519507587}], "attachments": [{"name": "cURL", "source": "f763ae5e-0618-48e9-9d42-02f8ab618153-attachment.txt", "type": "text/plain"}], "start": 1775519507587, "stop": 1775519507587}, {"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": "1bc4affa-7ca7-4679-950f-0f3825447953-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3e56f77b-07d0-4735-a209-3d814f906758-attachment.json", "type": "application/json"}], "start": 1775519507618, "stop": 1775519507619}, {"name": "Response → 200, trace_id: 3cb9f7d653151d1baee73335a870ef5b", "status": "passed", "attachments": [{"name": "response.headers", "source": "9680c3be-cbea-4e83-9c2b-a9e98a091f85-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "894f7c66-ce84-4194-ae02-253375bbd894-attachment.json", "type": "application/json"}], "start": 1775519507619, "stop": 1775519507619}], "attachments": [{"name": "cURL", "source": "a5942bea-4301-471b-8a00-327dfbde594d-attachment.txt", "type": "text/plain"}], "start": 1775519507618, "stop": 1775519507619}, {"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": "ad28afe7-acae-421e-9f3a-9d4ede67efac-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f68b6d8e-150b-44d0-b8f3-13bcc742a9f0-attachment.json", "type": "application/json"}], "start": 1775519507693, "stop": 1775519507693}, {"name": "Response → 200, trace_id: b1304fcfd9b0e19aa167d0f168f40bc0", "status": "passed", "attachments": [{"name": "response.headers", "source": "731b6f2d-93be-435f-9a96-6a49ffb8d05c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "75dfb7c0-6ada-420a-91ad-7a5b6eadd18d-attachment.json", "type": "application/json"}], "start": 1775519507693, "stop": 1775519507693}], "attachments": [{"name": "cURL", "source": "904d1ffb-15ab-45e9-a23c-c9147a0fc867-attachment.txt", "type": "text/plain"}], "start": 1775519507693, "stop": 1775519507693}, {"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": "9460ce53-8dfa-4dac-b74b-7bd5c606c257-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7ed3713a-dc8c-435e-814e-c8c61c431992-attachment.json", "type": "application/json"}], "start": 1775519507733, "stop": 1775519507733}, {"name": "Response → 200, trace_id: 41b9218c579701239283606ff4f4e0c1", "status": "passed", "attachments": [{"name": "response.headers", "source": "e2628757-8973-4eed-a8f1-2697dae87361-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "090bcb7d-2337-4c8c-aa61-9aea3e53c00f-attachment.json", "type": "application/json"}], "start": 1775519507733, "stop": 1775519507733}], "attachments": [{"name": "cURL", "source": "c3d8ada0-7a44-4747-b219-ead2763578f4-attachment.txt", "type": "text/plain"}], "start": 1775519507733, "stop": 1775519507733}, {"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": "1f3a12a7-082d-41a9-8a2d-b3d26d59e71e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d7b136c6-2459-4ac5-a82c-ed9f411fb212-attachment.json", "type": "application/json"}], "start": 1775519507772, "stop": 1775519507773}, {"name": "Response → 200, trace_id: 73381e1595eb293d002fceb9906f117e", "status": "passed", "attachments": [{"name": "response.headers", "source": "8a6d2f2c-fb65-4a2c-a9cf-0f97f9f86829-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3d3785d1-2c69-4877-a180-33f98b968e52-attachment.json", "type": "application/json"}], "start": 1775519507773, "stop": 1775519507773}], "attachments": [{"name": "cURL", "source": "806abfa1-aa9f-4f49-8316-d6f947c52940-attachment.txt", "type": "text/plain"}], "start": 1775519507772, "stop": 1775519507773}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "ab7aefe2-5bc7-43aa-b89e-340317f982c7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5ae1f54b-44e0-4d81-854c-766aaf97bcff-attachment.json", "type": "application/json"}], "start": 1775519507790, "stop": 1775519507790}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192627&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f3aa8540-ed38-44f2-b017-fcb784b0b75c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7d971347-5be0-4694-823c-6186d8efc668-attachment.json", "type": "application/json"}], "start": 1775519507822, "stop": 1775519507823}, {"name": "Response → 200, trace_id: af5d9b3986cf5534838893cd15d2bae1", "status": "passed", "attachments": [{"name": "response.headers", "source": "4e4d096a-16bf-49fa-b6d6-02800f532040-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0466fb77-c2d1-4a23-ad0b-bcb99bfb4603-attachment.txt", "type": "text/plain"}], "start": 1775519507823, "stop": 1775519507823}], "attachments": [{"name": "cURL", "source": "b2342430-266b-4ca9-b9b0-7fd0124dfcef-attachment.txt", "type": "text/plain"}], "start": 1775519507822, "stop": 1775519507823}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "607422dc-8dc3-4689-b119-e903581bc904-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e01923f5-2337-494c-811c-42a82d3c3e6f-attachment.json", "type": "application/json"}], "start": 1775519507832, "stop": 1775519507833}, {"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": "b1cab991-0b0d-4218-a466-5c52e819710c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4cc81d57-05a6-4dbc-bf35-9e077b706557-attachment.json", "type": "application/json"}], "start": 1775519508882, "stop": 1775519508883}, {"name": "Response → 200, trace_id: 54631d1ece5f0e9e9b207a8fab5cff6e", "status": "passed", "attachments": [{"name": "response.headers", "source": "cd2e9dfc-7c3b-4773-b853-8bcd248f7449-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9f6debe4-25ae-4080-a562-803c6a686943-attachment.json", "type": "application/json"}], "start": 1775519508883, "stop": 1775519508883}], "attachments": [{"name": "cURL", "source": "029837d6-6e11-4ed5-bf08-3bce5a9ebd1e-attachment.txt", "type": "text/plain"}], "start": 1775519508882, "stop": 1775519508883}, {"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": "6f1c8c21-1908-4fc5-b30b-e431b4f2e685-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c8fa44e3-5593-4d29-bb7b-8972a381fbfb-attachment.json", "type": "application/json"}], "start": 1775519508907, "stop": 1775519508907}, {"name": "Response → 200, trace_id: 8d09c8933d5bd2c599811d6e3df162b4", "status": "passed", "attachments": [{"name": "response.headers", "source": "7dfaf230-595e-47d5-b3b8-f0adcdcef3f0-attachment.json", "type": "application/json"}], "start": 1775519508907, "stop": 1775519508908}], "attachments": [{"name": "cURL", "source": "08b69bfc-9845-41a5-96e4-7c09bccad4ac-attachment.txt", "type": "text/plain"}], "start": 1775519508907, "stop": 1775519508908}, {"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": "d1b9f4b5-49c5-4d06-8254-2c2991d2e519-attachment.json", "type": "application/json"}], "start": 1775519508928, "stop": 1775519508929}, {"name": "Response → 200, trace_id: f061b8b5a9ce302e78c36c11c357f2a0", "status": "passed", "attachments": [{"name": "response.headers", "source": "bba578f0-28e1-4639-b708-d49daa2b2702-attachment.json", "type": "application/json"}], "start": 1775519508929, "stop": 1775519508929}], "attachments": [{"name": "cURL", "source": "e63fd8e1-2716-4af7-9bc1-60a9a2a231a1-attachment.txt", "type": "text/plain"}], "start": 1775519508928, "stop": 1775519508929}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "84d75191-d8a9-4299-b2b7-abef3624cb85-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "df1c8d03-3989-4a5c-8f07-22fb4bda3e3b-attachment.json", "type": "application/json"}], "start": 1775519508943, "stop": 1775519508943}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "959cfc04-8b2f-437c-a403-b291596067d5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "dc3dfe66-7f1a-4073-9b0e-1bb9035f6d44-attachment.json", "type": "application/json"}], "start": 1775519508960, "stop": 1775519508960}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88889&amount=1", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8d515974-b895-40ab-88ec-705e190d11cd-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7f200d6d-4fb9-4e34-a9b7-6e3520dc90d4-attachment.json", "type": "application/json"}], "start": 1775519509278, "stop": 1775519509278}, {"name": "Response → 200, trace_id: c1fed3931f668187a75d08ed8c3f96c1", "status": "passed", "attachments": [{"name": "response.headers", "source": "a6560357-1363-4ca9-80e6-46897b715fa9-attachment.json", "type": "application/json"}], "start": 1775519509278, "stop": 1775519509278}], "attachments": [{"name": "cURL", "source": "f9a059ca-5dbf-4024-b11b-a238ac355f7b-attachment.txt", "type": "text/plain"}], "start": 1775519509278, "stop": 1775519509278}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775519509281, "stop": 1775519509283}], "attachments": [{"name": "log", "source": "beed4c26-061c-47b0-9be6-871614fd54df-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='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": 1775519493251, "stop": 1775519809296, "uuid": "d1a20522-90e3-45ef-b9e1-97801f0ff44b", "historyId": "ada05c6ae98b6d8a9843a78150009dc9", "testCaseId": "f64ca5972ce92889105abf10f3431fcc", "fullName": "tests.wms.test_assembly.test_lost_goods.TestLostGoods#test_no_goods_reject_part_picking_with_rereservation", "labels": [{"name": "feature", "value": "Lost goods"}, {"name": "tag", "value": "dm-wms-be-service-assembly"}, {"name": "tag", "value": "wms-flow-lost-goods"}, {"name": "parentSuite", "value": "tests.wms.test_assembly"}, {"name": "suite", "value": "test_lost_goods"}, {"name": "subSuite", "value": "TestLostGoods"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-q2602pgo"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_assembly.test_lost_goods"}], "titlePath": ["tests", "wms", "test_assembly", "test_lost_goods.py", "TestLostGoods"]}