{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192560 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 0x71d634b8a8d0>\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 0x71d62d8291d0>)\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 = 4278192560, 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: 4278192560 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": "b37dbd82-16a6-4b9e-8db5-8afc586e0523-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "4fd478cc-54f2-4036-b97b-49b8c168d103-attachment.json", "type": "application/json"}], "start": 1775433149238, "stop": 1775433149238}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "ce4cedd4-39b5-498e-b71b-6cbe019885f4-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "73371535-f469-4a8c-a46f-f48b13f76f02-attachment.json", "type": "application/json"}], "start": 1775433149247, "stop": 1775433149247}], "start": 1775433149238, "stop": 1775433149251}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "f366b92f-c437-4c28-b4ca-5a569d48d56f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "68a667de-3f1c-42ec-83e2-46c5d3492aa0-attachment.json", "type": "application/json"}], "start": 1775433149260, "stop": 1775433149260}, {"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": "b3b495ba-1b7b-4343-8f5a-ae733c178dac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "818e3115-5001-4b7a-a4ef-cbe594115763-attachment.json", "type": "application/json"}], "start": 1775433149297, "stop": 1775433149297}, {"name": "Response → 200, trace_id: 044c588b8356b2b0aa787394e728ea83", "status": "passed", "attachments": [{"name": "response.headers", "source": "baff0975-01df-4bc5-8be9-0ae4c2f32694-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b45772fe-184d-410a-9a3f-aea89a6ff9a8-attachment.json", "type": "application/json"}], "start": 1775433149297, "stop": 1775433149297}], "attachments": [{"name": "cURL", "source": "7b9ee200-698b-46de-a218-4682c9cde9d5-attachment.txt", "type": "text/plain"}], "start": 1775433149297, "stop": 1775433149297}], "start": 1775433149261, "stop": 1775433149300}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "3ed09228-5b4d-4dab-b8bc-717fb7364f7b-attachment.json", "type": "application/json"}, {"name": "Response", "source": "c34f72d4-70dc-458b-9e6e-974e3ca4a548-attachment.json", "type": "application/json"}], "start": 1775433149303, "stop": 1775433149330}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775433149331, "stop": 1775433151695}, {"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": "3b15c88d-2de5-4b7a-8103-2dadce691556-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ae2ca036-349f-49aa-82e4-6bfd106bedfa-attachment.json", "type": "application/json"}], "start": 1775433152769, "stop": 1775433152769}, {"name": "Response → 200, trace_id: a73705649d0b0b5fdeece0ff5a9cc955", "status": "passed", "attachments": [{"name": "response.headers", "source": "8f735791-8235-4e80-8c9c-8efe8fa2ae37-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6945f250-ac98-46f5-b9a6-6464d8ee0abd-attachment.json", "type": "application/json"}], "start": 1775433152769, "stop": 1775433152769}], "attachments": [{"name": "cURL", "source": "2b44794b-57eb-4c60-a73d-d622cd9aa43a-attachment.txt", "type": "text/plain"}], "start": 1775433152769, "stop": 1775433152769}, {"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": "4bdb6471-3379-4233-80d2-8da9e3b0b515-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7ee48cb0-2fc6-4564-b5c7-c8e2388c9bbc-attachment.json", "type": "application/json"}], "start": 1775433152819, "stop": 1775433152820}, {"name": "Response → 200, trace_id: 3a3ede983805ed51d9b02a5393fad267", "status": "passed", "attachments": [{"name": "response.headers", "source": "59a81b29-81d6-4401-a414-9ffbe4c69483-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3cf9b1de-f8a9-45c1-adfc-92edc0761ed5-attachment.json", "type": "application/json"}], "start": 1775433152820, "stop": 1775433152820}], "attachments": [{"name": "cURL", "source": "c472d801-70c5-468a-b847-c981a33da3b3-attachment.txt", "type": "text/plain"}], "start": 1775433152819, "stop": 1775433152820}, {"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": "e23ca4e5-3c83-4d21-9ffa-8b53ed7f34bb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "de7a635a-6c0c-4266-9bc5-a128d1c3b551-attachment.json", "type": "application/json"}], "start": 1775433152864, "stop": 1775433152864}, {"name": "Response → 200, trace_id: d9a8a2c9cec9a7b2ab80c9d7ac0e2005", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e893754-991e-46c0-8942-e9b46a62835d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a69c663e-fe33-4a79-ac08-cd4f7f64e9e2-attachment.json", "type": "application/json"}], "start": 1775433152864, "stop": 1775433152864}], "attachments": [{"name": "cURL", "source": "121dc27b-18a7-4c60-81ac-15ce9b522304-attachment.txt", "type": "text/plain"}], "start": 1775433152864, "stop": 1775433152864}, {"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": "186c43e7-8840-47b6-b2f8-3649eae0b9e3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5787e810-58b5-4fc3-b34a-bcbc31b0734f-attachment.json", "type": "application/json"}], "start": 1775433152908, "stop": 1775433152908}, {"name": "Response → 200, trace_id: e58b9560ebcc52661384c812402d8a23", "status": "passed", "attachments": [{"name": "response.headers", "source": "f10dd31c-6a80-40f1-bd76-af90ffdfb162-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "10c8302b-b3fa-4cf4-8b0e-c32a0b5dc7ee-attachment.json", "type": "application/json"}], "start": 1775433152908, "stop": 1775433152908}], "attachments": [{"name": "cURL", "source": "a8cf1e5c-a374-4b56-9758-ee94d4ee0f7a-attachment.txt", "type": "text/plain"}], "start": 1775433152908, "stop": 1775433152908}, {"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": "8c155a82-c997-4801-82cd-c40f32c5bf73-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f4a0bf58-7ad5-4414-b9b2-ffec1d278b45-attachment.json", "type": "application/json"}], "start": 1775433152935, "stop": 1775433152935}, {"name": "Response → 200, trace_id: e0d72763b49c3a4cbf8a7677d9a8e5e0", "status": "passed", "attachments": [{"name": "response.headers", "source": "af725515-26e2-4443-b62c-e1713c275f59-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "174f9e85-8735-4a78-9f84-77aa30aa0c5c-attachment.txt", "type": "text/plain"}], "start": 1775433152935, "stop": 1775433152936}], "attachments": [{"name": "cURL", "source": "2bddf552-49a1-4929-adf3-3381b6fe3f92-attachment.txt", "type": "text/plain"}], "start": 1775433152935, "stop": 1775433152936}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492887&pickingTaskKey=405a0642d0d7eae609d7654a45518853b12d5823cdbe797baafba81ada56f04f", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d9c46cb4-bef2-458c-997b-1e244f5939d3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b7cf998a-8f6c-4667-87c2-1ec7c1bd20ab-attachment.json", "type": "application/json"}], "start": 1775433152967, "stop": 1775433152968}, {"name": "Response → 200, trace_id: 4d8ca6dac76f8c2380d7c9d334d51cb7", "status": "passed", "attachments": [{"name": "response.headers", "source": "5fc93484-1ecd-49b5-8022-453aa199f141-attachment.json", "type": "application/json"}], "start": 1775433152968, "stop": 1775433152968}], "attachments": [{"name": "cURL", "source": "da95cafe-114f-47f3-a99d-479f112d2d61-attachment.txt", "type": "text/plain"}], "start": 1775433152967, "stop": 1775433152968}, {"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": "98d7ad02-550d-402d-9db6-42db93ce4c0e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "be0b1127-d7f7-48d7-a8ae-b48d630e88cd-attachment.json", "type": "application/json"}], "start": 1775433152995, "stop": 1775433152995}, {"name": "Response → 200, trace_id: 419306fc881de928e5d8cc195a16f431", "status": "passed", "attachments": [{"name": "response.headers", "source": "362fecb7-89b7-4f9c-a9c6-011f02a4b7c6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b6c3550c-76f4-4d79-aef5-98c936f8d348-attachment.json", "type": "application/json"}], "start": 1775433152995, "stop": 1775433152996}], "attachments": [{"name": "cURL", "source": "d0f832e9-bcce-46ba-99d7-1a4e07205af3-attachment.txt", "type": "text/plain"}], "start": 1775433152995, "stop": 1775433152996}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=405a0642d0d7eae609d7654a45518853b12d5823cdbe797baafba81ada56f04f&skuId=4100000000000053202&cellBarcode=QA-75433148082815488&cellId=488348", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8969a589-fbc6-4873-9a0d-ed66b6ea97f8-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "de46ae22-f35c-4bc2-b98f-df17d87c86a9-attachment.json", "type": "application/json"}], "start": 1775433163167, "stop": 1775433163167}, {"name": "Response → 200, trace_id: 4b2c01ff760f804cdb56539e605cd9b6", "status": "passed", "attachments": [{"name": "response.headers", "source": "1af10035-61c4-4384-ae10-e58e76f0fb16-attachment.json", "type": "application/json"}], "start": 1775433163167, "stop": 1775433163167}], "attachments": [{"name": "cURL", "source": "e3123a0c-fba1-4ad4-b103-14e6e851334c-attachment.txt", "type": "text/plain"}], "start": 1775433163167, "stop": 1775433163167}, {"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": "b21dc6d0-7b72-4399-a1f3-eb5857d68117-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7bf05122-4bbf-4f75-9404-e24df5d9f5fe-attachment.json", "type": "application/json"}], "start": 1775433163207, "stop": 1775433163207}, {"name": "Response → 200, trace_id: 2070d4f8b9886247a9cd8ab6cb3855a6", "status": "passed", "attachments": [{"name": "response.headers", "source": "ae430548-918c-40ab-bd17-63c1ca2b7e83-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "26bf8686-2fae-47f5-8782-5706a5f393dc-attachment.json", "type": "application/json"}], "start": 1775433163207, "stop": 1775433163207}], "attachments": [{"name": "cURL", "source": "7d2d18f1-33e9-45c0-b168-1e90709c2ca8-attachment.txt", "type": "text/plain"}], "start": 1775433163207, "stop": 1775433163207}, {"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": "44151cc0-bff4-441f-a880-40085ef7d9a0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4b95b84c-4740-4ad3-97e8-e179078ae92f-attachment.json", "type": "application/json"}], "start": 1775433163240, "stop": 1775433163240}, {"name": "Response → 200, trace_id: 8dec7ce984d1bfad98c6d167791e3b5d", "status": "passed", "attachments": [{"name": "response.headers", "source": "e0e84442-4acb-4e03-a926-e85b962d9f4d-attachment.json", "type": "application/json"}], "start": 1775433163240, "stop": 1775433163240}], "attachments": [{"name": "cURL", "source": "7ada49e0-129a-41ba-ae54-2b96677f3ab6-attachment.txt", "type": "text/plain"}], "start": 1775433163240, "stop": 1775433163240}, {"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": "3b067b8c-5507-4bab-a013-b250e21c4ef1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a0ef8dd2-e772-4d9b-aac4-21c64932be55-attachment.json", "type": "application/json"}], "start": 1775433163314, "stop": 1775433163314}, {"name": "Response → 200, trace_id: 1809068cc37985b6f62807e15a33efe2", "status": "passed", "attachments": [{"name": "response.headers", "source": "8e5a44ab-aaf4-4074-98d8-a6bd7e8c4a73-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fdb8712c-cb40-468c-9fa8-d19d62716540-attachment.json", "type": "application/json"}], "start": 1775433163314, "stop": 1775433163314}], "attachments": [{"name": "cURL", "source": "191cf7da-d1b6-43ad-867c-0e262075c8c5-attachment.txt", "type": "text/plain"}], "start": 1775433163314, "stop": 1775433163315}], "start": 1775433163243, "stop": 1775433163318}, {"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": "77e3841b-8dad-4c81-ae9f-d1fb5eea0549-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b475be43-9c8f-4e4c-9fe0-13b87daf2ca9-attachment.json", "type": "application/json"}], "start": 1775433163387, "stop": 1775433163387}, {"name": "Response → 200, trace_id: 6741e30629ff57f5f695d63bcf2d66d4", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ed64434-48ed-4c2e-8a6c-c46251e9f0fc-attachment.json", "type": "application/json"}], "start": 1775433163387, "stop": 1775433163387}], "attachments": [{"name": "cURL", "source": "53149722-6749-4e29-a8b9-7b9738787193-attachment.txt", "type": "text/plain"}], "start": 1775433163387, "stop": 1775433163388}, {"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": "bec47250-b157-442d-b85a-ef669df3b017-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5919a2a7-8835-4c0d-9823-63e5c179af7c-attachment.json", "type": "application/json"}], "start": 1775433163414, "stop": 1775433163414}, {"name": "Response → 200, trace_id: 511efc41d6535df6f1cc519818025604", "status": "passed", "attachments": [{"name": "response.headers", "source": "34758a5a-9be0-4f70-83f8-ee051b4c826f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1c8ded65-f05e-4f42-9dd3-4210cf363682-attachment.json", "type": "application/json"}], "start": 1775433163414, "stop": 1775433163414}], "attachments": [{"name": "cURL", "source": "d26b8e12-8b09-4016-82ff-172543e1d32c-attachment.txt", "type": "text/plain"}], "start": 1775433163414, "stop": 1775433163414}, {"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": "7f5a1c19-c8df-460c-bd9a-3926e5d99786-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b5fb27c7-2bfa-4b46-8121-130096291b66-attachment.json", "type": "application/json"}], "start": 1775433163458, "stop": 1775433163458}, {"name": "Response → 200, trace_id: c255887248a767490b1342b8fe9b7718", "status": "passed", "attachments": [{"name": "response.headers", "source": "6f795ea2-2825-442d-acf7-53514066f6d7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cfa832fd-c172-4c69-a270-5d77187358b3-attachment.json", "type": "application/json"}], "start": 1775433163458, "stop": 1775433163458}], "attachments": [{"name": "cURL", "source": "98e8e8c0-4109-4187-97ca-c0c29d1e01b8-attachment.txt", "type": "text/plain"}], "start": 1775433163458, "stop": 1775433163458}, {"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": "935516e1-a300-4ab2-b2e9-70e4af4e573b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7956d2c5-46b1-41f8-9d43-9a4e80bdae20-attachment.json", "type": "application/json"}], "start": 1775433163504, "stop": 1775433163504}, {"name": "Response → 200, trace_id: e8685494f3ee466a42d6c57982f1fdac", "status": "passed", "attachments": [{"name": "response.headers", "source": "8648def2-75e2-4957-81b8-ccc34a1ddce8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "11af8afc-b07d-44ec-88a0-3138be60a0a3-attachment.json", "type": "application/json"}], "start": 1775433163504, "stop": 1775433163504}], "attachments": [{"name": "cURL", "source": "410c4a75-9686-4b1d-a0d0-250e43f7b586-attachment.txt", "type": "text/plain"}], "start": 1775433163504, "stop": 1775433163504}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161065", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bec7acf1-cb05-46f8-ae85-a615bb7364ca-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fa8141a3-a429-4d28-adb9-be7ad4a5db49-attachment.json", "type": "application/json"}], "start": 1775433163528, "stop": 1775433163529}, {"name": "Response → 200, trace_id: d425cb5cd142f75d53c3e0e832bcdb4b", "status": "passed", "attachments": [{"name": "response.headers", "source": "97d57f67-5cb1-418c-80b9-dd289862111d-attachment.json", "type": "application/json"}], "start": 1775433163529, "stop": 1775433163529}], "attachments": [{"name": "cURL", "source": "4fb0a2ff-9a41-4c7a-b624-7060716f75bf-attachment.txt", "type": "text/plain"}], "start": 1775433163528, "stop": 1775433163529}, {"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": "ae0cff1c-ba35-4b6e-ad20-2552a4317d9c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "44e8d548-63e8-40de-83f2-b70a31780a0f-attachment.json", "type": "application/json"}], "start": 1775433163566, "stop": 1775433163566}, {"name": "Response → 200, trace_id: b2969a608a72e3ad9122de889c2576ed", "status": "passed", "attachments": [{"name": "response.headers", "source": "916092dd-b9a9-426e-9f44-d83c05e86c97-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "781113dd-03b8-4ffc-931e-2ea6f208686b-attachment.json", "type": "application/json"}], "start": 1775433163566, "stop": 1775433163566}], "attachments": [{"name": "cURL", "source": "868040ba-62f9-4fd2-aeda-d8e9bdd64a4e-attachment.txt", "type": "text/plain"}], "start": 1775433163566, "stop": 1775433163566}, {"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": "47002a1f-678a-49cb-a1e8-6b0dd248616b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "87816854-3169-47e8-a3bd-19426cf0c69a-attachment.json", "type": "application/json"}], "start": 1775433163638, "stop": 1775433163638}, {"name": "Response → 200, trace_id: 7ec9cd128de978df074a04638c7d4f50", "status": "passed", "attachments": [{"name": "response.headers", "source": "8d8dfc0e-b607-4e24-9a6c-f0d3b8d1256a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "12f782e9-f6a5-4d10-97df-fbad89d53826-attachment.json", "type": "application/json"}], "start": 1775433163638, "stop": 1775433163639}], "attachments": [{"name": "cURL", "source": "5c75f5a2-2f3e-456a-a024-720c5ff927c7-attachment.txt", "type": "text/plain"}], "start": 1775433163638, "stop": 1775433163639}, {"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": "44f13653-e527-430a-9085-1b896146d6a4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bd64ffe9-58dd-4dcf-858e-b4042b3b2e95-attachment.json", "type": "application/json"}], "start": 1775433163678, "stop": 1775433163678}, {"name": "Response → 200, trace_id: 467b759f2ff3ae6b7ccbd8dbf5d9054d", "status": "passed", "attachments": [{"name": "response.headers", "source": "134dde55-36f6-473c-ab6e-623c379891fc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1ef72e7d-81ec-4aa9-ae33-f37037784695-attachment.json", "type": "application/json"}], "start": 1775433163678, "stop": 1775433163678}], "attachments": [{"name": "cURL", "source": "08490745-a434-4ad7-be2b-12b54ef9d6d8-attachment.txt", "type": "text/plain"}], "start": 1775433163678, "stop": 1775433163678}, {"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": "1a9be423-a874-49f6-adb9-8c41b1fd85e4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7db64297-1f78-41be-902c-1ed4d2effa60-attachment.json", "type": "application/json"}], "start": 1775433163715, "stop": 1775433163715}, {"name": "Response → 200, trace_id: f1aad7aad9abcdf1b458a53b80c6f1ed", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e0c691e-be11-4d46-9729-28fcd78f053b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b162724a-c059-432c-a129-2bfc2d7caa51-attachment.json", "type": "application/json"}], "start": 1775433163715, "stop": 1775433163715}], "attachments": [{"name": "cURL", "source": "fa2555f0-b6ea-4002-8177-2ba44d099673-attachment.txt", "type": "text/plain"}], "start": 1775433163715, "stop": 1775433163715}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "ae13b20e-21f2-4493-b156-44d0fc8cb071-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e3e24a9a-9b25-407d-bd09-911fb99fee1a-attachment.json", "type": "application/json"}], "start": 1775433163731, "stop": 1775433163731}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192560&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c2be56ca-c0e3-48b7-9558-eb7639d3e103-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c7f10d75-a80c-41fc-b741-45ca877e119c-attachment.json", "type": "application/json"}], "start": 1775433163761, "stop": 1775433163762}, {"name": "Response → 200, trace_id: e7bc83ed0551b805254c205ce71c3446", "status": "passed", "attachments": [{"name": "response.headers", "source": "39a5f6cc-8802-4d09-8141-fa6b03585224-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "20618e9b-be8c-4b5e-9a9c-7d4c81b57eb7-attachment.txt", "type": "text/plain"}], "start": 1775433163762, "stop": 1775433163762}], "attachments": [{"name": "cURL", "source": "2d8d60ce-7e45-4eee-9466-098d8e9ef241-attachment.txt", "type": "text/plain"}], "start": 1775433163761, "stop": 1775433163762}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "e6ea0dae-0a74-40e4-8d48-40a82f86276e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "02a9c866-5f6c-4277-9b7d-2381c69582d4-attachment.json", "type": "application/json"}], "start": 1775433163772, "stop": 1775433163772}, {"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": "1cd39bf0-5fa7-4e36-a590-45f2c9a0b9bc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a83ff7c5-31e9-4e10-9ec5-ffd4b4f138d4-attachment.json", "type": "application/json"}], "start": 1775433164816, "stop": 1775433164816}, {"name": "Response → 200, trace_id: b5e5d38dc889fe472d8ae2e1ce641012", "status": "passed", "attachments": [{"name": "response.headers", "source": "6b0e71b6-fb26-4e3e-9d9f-f1998046eeb2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c33855e0-c8fb-48f1-b5eb-63183c0ebfa7-attachment.json", "type": "application/json"}], "start": 1775433164817, "stop": 1775433164817}], "attachments": [{"name": "cURL", "source": "ff18cddb-1e2b-4dad-81d1-00ebb3839328-attachment.txt", "type": "text/plain"}], "start": 1775433164816, "stop": 1775433164817}, {"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": "3dd1e55d-bdc2-4250-989e-c82feb503d16-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7c85c4bc-04a1-48ef-869f-2c108ecd6a25-attachment.json", "type": "application/json"}], "start": 1775433164841, "stop": 1775433164841}, {"name": "Response → 200, trace_id: 9cc5199dbc5eaf45280ca26b7f112c16", "status": "passed", "attachments": [{"name": "response.headers", "source": "6ce00068-30cb-4969-99df-87a68530cd60-attachment.json", "type": "application/json"}], "start": 1775433164841, "stop": 1775433164841}], "attachments": [{"name": "cURL", "source": "ee232664-c26d-4920-8471-0518a0c5f6e7-attachment.txt", "type": "text/plain"}], "start": 1775433164841, "stop": 1775433164841}, {"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": "f544da29-39df-40e6-a242-1a20ca484f75-attachment.json", "type": "application/json"}], "start": 1775433164864, "stop": 1775433164864}, {"name": "Response → 200, trace_id: cd817974e5ac838af30380d3a8dd8677", "status": "passed", "attachments": [{"name": "response.headers", "source": "ee17c6f8-a458-4353-be9f-f5f1478bcaab-attachment.json", "type": "application/json"}], "start": 1775433164864, "stop": 1775433164864}], "attachments": [{"name": "cURL", "source": "316f0489-9ec9-491a-b8a4-e1a6f8be9605-attachment.txt", "type": "text/plain"}], "start": 1775433164863, "stop": 1775433164864}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "8673e9db-3341-41e3-822e-74ef00e978d1-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "32d7d152-8d0f-4159-bb98-6233c627e066-attachment.json", "type": "application/json"}], "start": 1775433164879, "stop": 1775433164879}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "d9ba1bff-dce7-43e2-87ec-e49a25083779-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2a43a1bd-1a27-4452-a77d-8cdda5596eb6-attachment.json", "type": "application/json"}], "start": 1775433164895, "stop": 1775433164896}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88881&amount=1", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f5bc54b3-64d1-4143-b1a8-baeb2b130a2b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8d9560bd-de3e-410e-94d4-0ec5c89581d4-attachment.json", "type": "application/json"}], "start": 1775433165207, "stop": 1775433165207}, {"name": "Response → 200, trace_id: b9e8357074e3060683155c622a7ff038", "status": "passed", "attachments": [{"name": "response.headers", "source": "2602e050-99a2-41ff-8e49-1c8bb7d48a66-attachment.json", "type": "application/json"}], "start": 1775433165207, "stop": 1775433165207}], "attachments": [{"name": "cURL", "source": "b7f3481a-c1cd-40e5-b779-0af3f788ff63-attachment.txt", "type": "text/plain"}], "start": 1775433165207, "stop": 1775433165207}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775433165210, "stop": 1775433165212}], "attachments": [{"name": "log", "source": "f42cebe5-f88a-481f-b449-2f24af0a14c7-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": 1775433149220, "stop": 1775433465226, "uuid": "a9c858d4-f439-4896-99c2-d6aa375ce696", "historyId": "dddb654bbc85ed7fb322c64c8dbab80a", "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-ruxi5d0x"}, {"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"]}