{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192744 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 0x7aa6db317250>\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 0x7aa6d8099bd0>)\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 = 4278192744, 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: 4278192744 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": "1fdec6fe-6de6-4024-8b51-d5aea2761b85-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3343f046-fe3d-425f-af10-1f21ab4f1b63-attachment.json", "type": "application/json"}], "start": 1775724581499, "stop": 1775724581499}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "954ed34f-f82f-4016-bedd-c5e97c81d146-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b03c5037-c291-4ddb-9ec8-9b9aa1d9b13d-attachment.json", "type": "application/json"}], "start": 1775724581506, "stop": 1775724581507}], "start": 1775724581499, "stop": 1775724581510}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "6f8bd2d9-bf2a-4338-9f86-a417a14880d0-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "3413cd77-612e-4f5e-aa3f-f3a5718e4f5e-attachment.json", "type": "application/json"}], "start": 1775724581518, "stop": 1775724581518}, {"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": "268c7ff1-5da8-484a-b1ac-1f2b1681df91-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a1b2d46b-d120-4b53-91f5-f5a0100362cb-attachment.json", "type": "application/json"}], "start": 1775724581550, "stop": 1775724581551}, {"name": "Response → 200, trace_id: 80cdb1349d395e92962fcd0d2fd1664e", "status": "passed", "attachments": [{"name": "response.headers", "source": "787a50c4-83a2-4b96-bbe6-6ee6d475f991-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "23294493-69dc-46c9-9086-138b40b959a4-attachment.json", "type": "application/json"}], "start": 1775724581551, "stop": 1775724581551}], "attachments": [{"name": "cURL", "source": "27aacf83-7968-4bdd-8a37-4b38e6a9b7f5-attachment.txt", "type": "text/plain"}], "start": 1775724581550, "stop": 1775724581551}], "start": 1775724581519, "stop": 1775724581554}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "4b896ef0-26b4-4b63-8715-16316562b531-attachment.json", "type": "application/json"}, {"name": "Response", "source": "2cabf634-34e9-4159-9279-e3385060674c-attachment.json", "type": "application/json"}], "start": 1775724581558, "stop": 1775724581590}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775724581591, "stop": 1775724583951}, {"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": "81e96291-0e50-407f-a935-07c223284f79-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "03f5d447-07d6-4923-bd35-860be3234488-attachment.json", "type": "application/json"}], "start": 1775724585297, "stop": 1775724585297}, {"name": "Response → 200, trace_id: 01f86d197d1150873106ba49fbc63a5f", "status": "passed", "attachments": [{"name": "response.headers", "source": "afb41112-348b-48b4-ac0f-d3288f350100-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ce61799d-7758-4792-b07b-0022c5525053-attachment.json", "type": "application/json"}], "start": 1775724585297, "stop": 1775724585298}], "attachments": [{"name": "cURL", "source": "af5935d9-61bf-4dd9-9892-f61a24c6f340-attachment.txt", "type": "text/plain"}], "start": 1775724585297, "stop": 1775724585298}, {"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": "6fb3be58-4a39-4009-b476-928729560ee3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "01a98dc4-b093-4d81-abe0-b4e593787dd6-attachment.json", "type": "application/json"}], "start": 1775724585342, "stop": 1775724585343}, {"name": "Response → 200, trace_id: bbdbc3e627be4b79137aef550141c4c7", "status": "passed", "attachments": [{"name": "response.headers", "source": "d82755bd-fa3c-41ec-a9cf-a927f8bedc5b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5f896528-7700-4c9b-99ec-f848bb5c65f4-attachment.json", "type": "application/json"}], "start": 1775724585343, "stop": 1775724585343}], "attachments": [{"name": "cURL", "source": "453ab763-a723-4fdd-b411-7560a724039b-attachment.txt", "type": "text/plain"}], "start": 1775724585342, "stop": 1775724585343}, {"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": "e4242702-9f86-4533-82a2-22abec124ef6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0e6f08fe-25c2-4122-921c-e1cce0f34fa3-attachment.json", "type": "application/json"}], "start": 1775724585389, "stop": 1775724585389}, {"name": "Response → 200, trace_id: 1cd90087594804498498220012afa8f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "edf79ea3-2961-4761-8fa5-0ace58f9a712-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2411ac13-d2af-4755-b2b7-93e18d2f51c6-attachment.json", "type": "application/json"}], "start": 1775724585389, "stop": 1775724585389}], "attachments": [{"name": "cURL", "source": "f77378a7-831b-407c-8d73-11590228825f-attachment.txt", "type": "text/plain"}], "start": 1775724585389, "stop": 1775724585389}, {"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": "86e57204-77f5-484d-ade1-e660918b34ee-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e6a4d761-49d7-486d-a397-1172d9a5c541-attachment.json", "type": "application/json"}], "start": 1775724585431, "stop": 1775724585431}, {"name": "Response → 200, trace_id: e322391804f4d62e1084b1542abbf0c3", "status": "passed", "attachments": [{"name": "response.headers", "source": "0355a022-a8dc-4d58-b2fb-85574d75ecd5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9e827943-ea79-4a30-8ba5-d6d19b5611e4-attachment.json", "type": "application/json"}], "start": 1775724585431, "stop": 1775724585431}], "attachments": [{"name": "cURL", "source": "b31097c1-ba0f-4447-b34b-04ab0dcaa455-attachment.txt", "type": "text/plain"}], "start": 1775724585431, "stop": 1775724585431}, {"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": "af435561-9ce9-42fb-a7fa-370c7487ceee-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ec71c91d-6bec-4035-bf9a-59e11870ff79-attachment.json", "type": "application/json"}], "start": 1775724585461, "stop": 1775724585461}, {"name": "Response → 200, trace_id: cfb8e8831d0f6188876fb61731306065", "status": "passed", "attachments": [{"name": "response.headers", "source": "da6c6f8f-bfbe-494d-aedd-3a91e15fdab7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4efd8777-8277-41d4-8938-66c5932c2fb7-attachment.txt", "type": "text/plain"}], "start": 1775724585461, "stop": 1775724585462}], "attachments": [{"name": "cURL", "source": "67f2a9b7-26ab-47a7-86dd-e1c0df5bbb02-attachment.txt", "type": "text/plain"}], "start": 1775724585461, "stop": 1775724585462}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000493014&pickingTaskKey=45042adcc7d5f62ed490bc117e3e50b7a0b993fb447b9789a778ea8bb1d8efcb", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "deeff71f-5b4b-4ff1-88dd-5465a1f7ab9d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8836a601-6e13-4268-ba43-ce2aa3d7c854-attachment.json", "type": "application/json"}], "start": 1775724585492, "stop": 1775724585492}, {"name": "Response → 200, trace_id: c97501699ed84ac4d5042ae1b4938d0e", "status": "passed", "attachments": [{"name": "response.headers", "source": "12662caf-5591-47ee-90f4-137656c6d2fb-attachment.json", "type": "application/json"}], "start": 1775724585492, "stop": 1775724585492}], "attachments": [{"name": "cURL", "source": "707d6032-a272-4c64-84cc-f613f8077451-attachment.txt", "type": "text/plain"}], "start": 1775724585492, "stop": 1775724585492}, {"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": "325ccd8d-f84a-49e6-93ea-d8441fdf6ca5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f5c9b0a7-3761-43a1-b2d0-a1916126634e-attachment.json", "type": "application/json"}], "start": 1775724585522, "stop": 1775724585523}, {"name": "Response → 200, trace_id: 91e5e640c7ecc22620871ca5e0ee959f", "status": "passed", "attachments": [{"name": "response.headers", "source": "9350d5ad-4728-4e5f-96a8-9a4e339e07eb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f39584b2-cfde-44ff-a242-86f3eee00771-attachment.json", "type": "application/json"}], "start": 1775724585523, "stop": 1775724585523}], "attachments": [{"name": "cURL", "source": "f5ca9c85-0431-4730-8bda-5160ad902bef-attachment.txt", "type": "text/plain"}], "start": 1775724585522, "stop": 1775724585523}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=45042adcc7d5f62ed490bc117e3e50b7a0b993fb447b9789a778ea8bb1d8efcb&skuId=4100000000000053674&cellBarcode=QA-75724580365250048&cellId=488690", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2898336f-03ac-4a7d-afb4-83b0d065494d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b2d03701-0f10-4dca-b70c-34642d6fc123-attachment.json", "type": "application/json"}], "start": 1775724595692, "stop": 1775724595693}, {"name": "Response → 200, trace_id: 74a5ccf8e1d6a1b92962ab983614466f", "status": "passed", "attachments": [{"name": "response.headers", "source": "907b579a-7abf-47b8-ab6a-4833d62418e8-attachment.json", "type": "application/json"}], "start": 1775724595693, "stop": 1775724595693}], "attachments": [{"name": "cURL", "source": "fdc00621-6330-4769-9e64-0ca83fc4dfde-attachment.txt", "type": "text/plain"}], "start": 1775724595692, "stop": 1775724595693}, {"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": "1e12b7b4-d77b-4491-b614-2502747042b9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a55ed4c9-4ebd-4af0-a383-26f062399097-attachment.json", "type": "application/json"}], "start": 1775724595725, "stop": 1775724595725}, {"name": "Response → 200, trace_id: a1befaeea2888e7038b8f2c9841a5519", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8ae5b4f-c90a-4d5f-b34c-a682865ef7f1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9e2e8b3f-ad50-4704-ae7f-b5333c5b0e48-attachment.json", "type": "application/json"}], "start": 1775724595725, "stop": 1775724595725}], "attachments": [{"name": "cURL", "source": "c62db9b3-9a9d-4774-96e4-1646eed6ef2d-attachment.txt", "type": "text/plain"}], "start": 1775724595725, "stop": 1775724595725}, {"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": "3ac31a4a-f028-4008-853a-434cd6699509-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f0a8fd6c-9daf-4d07-968a-90ff5c6384b5-attachment.json", "type": "application/json"}], "start": 1775724595756, "stop": 1775724595757}, {"name": "Response → 200, trace_id: d505564faece08b72c4b865b2e36084c", "status": "passed", "attachments": [{"name": "response.headers", "source": "c5beaf33-2435-427a-8f20-f0b926b4f600-attachment.json", "type": "application/json"}], "start": 1775724595757, "stop": 1775724595757}], "attachments": [{"name": "cURL", "source": "fa6f3ee6-a1f0-461e-812f-576926cd0366-attachment.txt", "type": "text/plain"}], "start": 1775724595756, "stop": 1775724595757}, {"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": "e1466630-da68-46a9-96ab-c85116f0f9ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6f57bfef-13c7-4915-b36c-0ed98f09e3da-attachment.json", "type": "application/json"}], "start": 1775724595840, "stop": 1775724595840}, {"name": "Response → 200, trace_id: 68e8321da71562312e63c46b8c1f8a3a", "status": "passed", "attachments": [{"name": "response.headers", "source": "ed90dc33-65f4-4e64-a28f-1bcd508ae278-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1db48133-5375-4bbb-a98c-23d59ebd73db-attachment.json", "type": "application/json"}], "start": 1775724595840, "stop": 1775724595840}], "attachments": [{"name": "cURL", "source": "508a607b-a0fd-4d53-a400-85743bb77fd7-attachment.txt", "type": "text/plain"}], "start": 1775724595839, "stop": 1775724595840}], "start": 1775724595759, "stop": 1775724595843}, {"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": "517161d3-58fd-4c5f-8537-56f0c0f7ae48-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "85b04c18-a020-4d32-a618-f5d720130d92-attachment.json", "type": "application/json"}], "start": 1775724595925, "stop": 1775724595926}, {"name": "Response → 200, trace_id: 74b0f84c386027f0b2b7d6ed907203f2", "status": "passed", "attachments": [{"name": "response.headers", "source": "a9fc55f5-d7c7-4b02-91cf-c5a943547cd1-attachment.json", "type": "application/json"}], "start": 1775724595926, "stop": 1775724595926}], "attachments": [{"name": "cURL", "source": "df0953e4-edbe-4759-82ba-f72aa319260b-attachment.txt", "type": "text/plain"}], "start": 1775724595925, "stop": 1775724595926}, {"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": "7c99d3e4-d388-4f8a-8f4a-27e3f737abf4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "83d05a10-cc38-4037-b906-8c9727b765ea-attachment.json", "type": "application/json"}], "start": 1775724595952, "stop": 1775724596321}, {"name": "Response → 200, trace_id: 11229aec0f8112a53a7f20bc7c04e410", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e63cc59-5c84-4352-a683-cec6597afd21-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "229019fe-93a9-4a73-b7e3-8ad4ccb5f9bc-attachment.json", "type": "application/json"}], "start": 1775724596321, "stop": 1775724596321}], "attachments": [{"name": "cURL", "source": "ec9655e4-b0da-4498-9580-72881075b1b5-attachment.txt", "type": "text/plain"}], "start": 1775724595952, "stop": 1775724596321}, {"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": "396822da-ef67-4695-9113-acdbf515cb8d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c2b3fd87-9811-47ee-8c9d-26830d4b7d89-attachment.json", "type": "application/json"}], "start": 1775724596372, "stop": 1775724596372}, {"name": "Response → 200, trace_id: 4704930a03bf1aa5f4b273c3f5bf73f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "4d5ec8e3-07d3-47a1-88f1-42796b794c67-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6f8199d0-3eb5-44df-b40e-5333062fd2ac-attachment.json", "type": "application/json"}], "start": 1775724596372, "stop": 1775724596372}], "attachments": [{"name": "cURL", "source": "770d710c-c2b9-410e-9552-22199de1e939-attachment.txt", "type": "text/plain"}], "start": 1775724596371, "stop": 1775724596372}, {"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": "de98b946-c661-4db3-96c9-66ad1c323d1a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6db951c7-a332-4fe2-a11e-0b863cd191b7-attachment.json", "type": "application/json"}], "start": 1775724596418, "stop": 1775724596418}, {"name": "Response → 200, trace_id: 94736ad3b16c234eafa4a95a804ca14a", "status": "passed", "attachments": [{"name": "response.headers", "source": "f0bb07fc-f8e2-463f-8220-e95722a0b3f6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e5c82434-67a6-4011-a554-801592396cce-attachment.json", "type": "application/json"}], "start": 1775724596419, "stop": 1775724596419}], "attachments": [{"name": "cURL", "source": "547cf068-c017-4859-b5b1-b70bdc030713-attachment.txt", "type": "text/plain"}], "start": 1775724596418, "stop": 1775724596419}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161113", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8c4fb2a4-e623-4558-866a-e5f682e4adb9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e0b9cf36-48ad-4bfe-bb31-ee144f448abf-attachment.json", "type": "application/json"}], "start": 1775724596443, "stop": 1775724596444}, {"name": "Response → 200, trace_id: 5e0762caea7f8fa170b8e951e7ea5d3f", "status": "passed", "attachments": [{"name": "response.headers", "source": "fdee31f9-ff63-4663-815b-b237f77cc4d7-attachment.json", "type": "application/json"}], "start": 1775724596444, "stop": 1775724596444}], "attachments": [{"name": "cURL", "source": "6df44265-fcf5-40fc-91aa-9b750989cf15-attachment.txt", "type": "text/plain"}], "start": 1775724596443, "stop": 1775724596444}, {"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": "363f30c4-9f49-49ad-83f8-884a48abfbf4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "91e5be30-855b-41df-8681-04e54a51f0e8-attachment.json", "type": "application/json"}], "start": 1775724596479, "stop": 1775724596479}, {"name": "Response → 200, trace_id: 41de6ac6f568e266afc1adf4a854556b", "status": "passed", "attachments": [{"name": "response.headers", "source": "cfe964e3-caed-4202-92c6-fe9f1c5013b0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b8cb7830-b445-40a9-a128-f048d9a421a2-attachment.json", "type": "application/json"}], "start": 1775724596479, "stop": 1775724596479}], "attachments": [{"name": "cURL", "source": "6b13e392-e854-42b4-ac74-3cff7cc1b2eb-attachment.txt", "type": "text/plain"}], "start": 1775724596479, "stop": 1775724596479}, {"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": "5e0583ce-7862-4e0d-abed-24c612cdcd1d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "316784d0-e3ac-4f80-995c-5b1a43089a6d-attachment.json", "type": "application/json"}], "start": 1775724596554, "stop": 1775724596554}, {"name": "Response → 200, trace_id: 601b814671c5c9a9bfa96a2ab68c74e2", "status": "passed", "attachments": [{"name": "response.headers", "source": "1fd9bf1c-df5a-40cd-90df-398ccb464ac9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "62d88cfc-bcaa-4f4d-adf3-bcaa1ed31c6f-attachment.json", "type": "application/json"}], "start": 1775724596554, "stop": 1775724596554}], "attachments": [{"name": "cURL", "source": "cbdf5d63-8db9-47bb-9daa-7366d1ca0d52-attachment.txt", "type": "text/plain"}], "start": 1775724596554, "stop": 1775724596554}, {"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": "3b1eb515-dbe1-4a07-a9b8-7c02fe8bcd94-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9bf81f49-2f9e-4ba1-a680-4d3b60c4a1d4-attachment.json", "type": "application/json"}], "start": 1775724596590, "stop": 1775724596590}, {"name": "Response → 200, trace_id: fd26a0a020691a0a8448a56a273e484d", "status": "passed", "attachments": [{"name": "response.headers", "source": "bea88580-a9cd-4dcc-9de7-e2ba9a97b5d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e2ffd974-5fa9-4584-a969-c8ecdcbb2c9c-attachment.json", "type": "application/json"}], "start": 1775724596590, "stop": 1775724596590}], "attachments": [{"name": "cURL", "source": "aa19c98c-46ed-4bc2-bc23-e3146a6eef37-attachment.txt", "type": "text/plain"}], "start": 1775724596590, "stop": 1775724596590}, {"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": "df24b164-badc-4c41-a2b2-802dfd738cc7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "db595b60-4af9-4904-a452-586421fb6623-attachment.json", "type": "application/json"}], "start": 1775724596628, "stop": 1775724596628}, {"name": "Response → 200, trace_id: e0b504f09a6179588d23e6c9fedf66f0", "status": "passed", "attachments": [{"name": "response.headers", "source": "be039ebb-24b0-4b3b-ba92-b930a091fc5c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e62c8844-8e08-4fb9-9e97-c229185d5f4d-attachment.json", "type": "application/json"}], "start": 1775724596628, "stop": 1775724596628}], "attachments": [{"name": "cURL", "source": "4266e60d-e370-45b7-bd01-94a36ec4a0b6-attachment.txt", "type": "text/plain"}], "start": 1775724596628, "stop": 1775724596628}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "f0b7afba-306a-4f7f-bad7-132953d11720-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "26a03144-e987-454c-8fa2-264617e75652-attachment.json", "type": "application/json"}], "start": 1775724596643, "stop": 1775724596644}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192744&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7106cf42-65dc-4548-a876-fb4ba0968220-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "aa6d4df5-34c1-40b5-b43d-f9b9bfd88663-attachment.json", "type": "application/json"}], "start": 1775724596675, "stop": 1775724596675}, {"name": "Response → 200, trace_id: 67c4ed35e30732ebf25948666e507dc9", "status": "passed", "attachments": [{"name": "response.headers", "source": "24f99d09-ef64-4b26-b1b2-981060c23037-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5bc8384e-e24a-48a0-9d68-95b7426d8e96-attachment.txt", "type": "text/plain"}], "start": 1775724596675, "stop": 1775724596675}], "attachments": [{"name": "cURL", "source": "ed9abc84-e72f-471d-968a-0838f0ef0df7-attachment.txt", "type": "text/plain"}], "start": 1775724596675, "stop": 1775724596675}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "5cdc81c3-09bd-4979-a17e-63b3edc49cf9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0c03207a-5b9a-46a6-8645-285281b2fcaa-attachment.json", "type": "application/json"}], "start": 1775724596686, "stop": 1775724596687}, {"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": "2cfeeb26-c478-4ba7-997f-039dd6288989-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dbd18cac-9426-4c9b-ace9-43bb28cebf06-attachment.json", "type": "application/json"}], "start": 1775724597732, "stop": 1775724597733}, {"name": "Response → 200, trace_id: 8b5e94ebef0c60f003a11225ba070172", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e1e695b-c3b0-4667-bb98-dae697b5b8e6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a23326db-b32b-4b83-8b27-0e55c94d5265-attachment.json", "type": "application/json"}], "start": 1775724597733, "stop": 1775724597733}], "attachments": [{"name": "cURL", "source": "af909b7f-abd3-41d8-bd3e-b3e191bfc18f-attachment.txt", "type": "text/plain"}], "start": 1775724597732, "stop": 1775724597733}, {"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": "7d3d3630-e229-4744-9aca-0a8fab98ee82-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9f8878c9-0611-48b1-9654-e437ac821f25-attachment.json", "type": "application/json"}], "start": 1775724597757, "stop": 1775724597758}, {"name": "Response → 200, trace_id: 0d4faa0f63732d6c5c95279413157762", "status": "passed", "attachments": [{"name": "response.headers", "source": "47afcce7-e3eb-4d1b-98c6-dc31e258248d-attachment.json", "type": "application/json"}], "start": 1775724597758, "stop": 1775724597758}], "attachments": [{"name": "cURL", "source": "00b84bc3-bd2b-4d36-9849-970add7361ec-attachment.txt", "type": "text/plain"}], "start": 1775724597757, "stop": 1775724597758}, {"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": "d2cde972-9c2e-47a2-be02-ea84e6ea68f4-attachment.json", "type": "application/json"}], "start": 1775724597778, "stop": 1775724597778}, {"name": "Response → 200, trace_id: 6db7b071a2ed7af3610a19ff91b6952c", "status": "passed", "attachments": [{"name": "response.headers", "source": "96768d7c-c12a-46fe-9ec8-b9c3fda90017-attachment.json", "type": "application/json"}], "start": 1775724597778, "stop": 1775724597778}], "attachments": [{"name": "cURL", "source": "e2bfc407-21f1-43df-8b39-b80e1625faa1-attachment.txt", "type": "text/plain"}], "start": 1775724597778, "stop": 1775724597778}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "21d7aa03-1601-4295-b391-738a1b870a69-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5506772d-94b3-4bdd-9265-17cb9f6526c7-attachment.json", "type": "application/json"}], "start": 1775724597793, "stop": 1775724597793}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "a5d39615-e0b6-4e9a-806c-bed23a0ff77a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0ac55abf-b360-4f2b-adef-a64591a2470f-attachment.json", "type": "application/json"}], "start": 1775724597810, "stop": 1775724597810}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88901&amount=2", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8b0be8c9-59df-42fa-8cf4-151c1776b119-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "af981a2c-2608-4dd4-bb5b-a93d7dc230cd-attachment.json", "type": "application/json"}], "start": 1775724598115, "stop": 1775724598115}, {"name": "Response → 200, trace_id: 5bcc143ff02ed306ef029e79e7c5551a", "status": "passed", "attachments": [{"name": "response.headers", "source": "9bfa5750-5846-49a6-b87a-c9b2b50a1f9d-attachment.json", "type": "application/json"}], "start": 1775724598115, "stop": 1775724598115}], "attachments": [{"name": "cURL", "source": "17b37083-cb7a-4fb9-8855-a0b24e9ab643-attachment.txt", "type": "text/plain"}], "start": 1775724598115, "stop": 1775724598115}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775724598119, "stop": 1775724598121}], "attachments": [{"name": "log", "source": "7e39290e-8010-4733-a6d1-388bba5ef8dc-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'), WMSProvider(last_mile='Ozon', 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.OZON: 'OZON'>, provider_name='Ozon')], 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": 1775724581481, "stop": 1775724898135, "uuid": "0949e536-eb59-4bf5-b0ed-a2ca32d23bbf", "historyId": "0adc152c3533c2eaee0c361df3d196c1", "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-1oiarb3l"}, {"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"]}