{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192590 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 0x748080662550>\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 0x748079179d90>)\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 = 4278192590, 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: 4278192590 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": "fc63d1a5-b1da-4348-9e9d-1162cfad49a7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0386e59e-7040-46f0-adb1-340b2806b87e-attachment.json", "type": "application/json"}], "start": 1775460963947, "stop": 1775460963947}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "e7601008-b18c-44ef-bb4c-4633534134bf-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "25115349-737c-47e2-a275-c8a4aeea1ea2-attachment.json", "type": "application/json"}], "start": 1775460963954, "stop": 1775460963954}], "start": 1775460963947, "stop": 1775460963957}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "0c0e4876-74c9-4889-9de0-c9ded398fcf1-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "e1f8d4a3-2cf1-4416-854b-015675d20ad5-attachment.json", "type": "application/json"}], "start": 1775460963966, "stop": 1775460963966}, {"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": "6b89185d-f74c-4bd5-8766-a964d69ff551-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f78425ce-7f4c-44b4-b84b-82ba62568d15-attachment.json", "type": "application/json"}], "start": 1775460964002, "stop": 1775460964002}, {"name": "Response → 200, trace_id: 31a011dbcb19bcca0892f5b8688a2bb6", "status": "passed", "attachments": [{"name": "response.headers", "source": "a003a205-d64f-4e41-9de3-ca726e733b7e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a1b2b4b9-db39-4cc6-8674-df5850488fd3-attachment.json", "type": "application/json"}], "start": 1775460964002, "stop": 1775460964002}], "attachments": [{"name": "cURL", "source": "dbed5959-b29d-4831-90de-83bf5b86255d-attachment.txt", "type": "text/plain"}], "start": 1775460964002, "stop": 1775460964002}], "start": 1775460963968, "stop": 1775460964005}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "c7790bf8-1a81-48f4-aad0-bcbd887b9090-attachment.json", "type": "application/json"}, {"name": "Response", "source": "4c12e278-4c86-4b71-91cc-d2497e502771-attachment.json", "type": "application/json"}], "start": 1775460964008, "stop": 1775460964039}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775460964040, "stop": 1775460966421}, {"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": "52c3d946-7b03-4718-9ea2-757d52cd4c0c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ff46f982-e34f-4a64-9a10-f3c4817a6095-attachment.json", "type": "application/json"}], "start": 1775460967503, "stop": 1775460967504}, {"name": "Response → 200, trace_id: e3fd47c3e13d45c1e474ab750acf7e21", "status": "passed", "attachments": [{"name": "response.headers", "source": "62dd1988-6c2c-40a4-aa4e-2018f2277ce6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2571c6ea-7f5b-4270-8a79-e4929877ebd8-attachment.json", "type": "application/json"}], "start": 1775460967504, "stop": 1775460967504}], "attachments": [{"name": "cURL", "source": "2abb6ea0-5a90-4866-ad19-dd5eff0a6b13-attachment.txt", "type": "text/plain"}], "start": 1775460967503, "stop": 1775460967504}, {"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": "e9f32f24-49a7-42cd-9b3f-1118d86d64a8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1482441d-2e13-4b12-bcaa-efb636d56d13-attachment.json", "type": "application/json"}], "start": 1775460967546, "stop": 1775460967547}, {"name": "Response → 200, trace_id: c73bc7ea51af4f56e621c14902e1a5bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "1e00cbdb-435f-4b35-886c-cc73138f2582-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b38d8e7f-41b8-4bdd-8c0c-43ce6cd8d510-attachment.json", "type": "application/json"}], "start": 1775460967547, "stop": 1775460967547}], "attachments": [{"name": "cURL", "source": "febf5872-7a46-4770-89df-4b8cd4228dfe-attachment.txt", "type": "text/plain"}], "start": 1775460967546, "stop": 1775460967547}, {"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": "7328164d-d8fd-47e3-a768-24c52516c1c9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d7e59571-930c-4731-a4f2-cb112ccff232-attachment.json", "type": "application/json"}], "start": 1775460967592, "stop": 1775460967593}, {"name": "Response → 200, trace_id: 6f0e317569b173f6faef8dd74f5d2fc2", "status": "passed", "attachments": [{"name": "response.headers", "source": "f765c602-6089-4480-b62e-fb9162907d27-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "48afbdd2-27ab-4389-b4c3-a3d82e29d2d6-attachment.json", "type": "application/json"}], "start": 1775460967593, "stop": 1775460967593}], "attachments": [{"name": "cURL", "source": "8d120d02-d6c5-47b7-b692-de09fbe3af80-attachment.txt", "type": "text/plain"}], "start": 1775460967592, "stop": 1775460967593}, {"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": "d5c1f7de-4352-457e-b7f1-33c7a680e033-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "29e5d424-5fb9-4728-8a31-1f0f46cd914c-attachment.json", "type": "application/json"}], "start": 1775460967632, "stop": 1775460967632}, {"name": "Response → 200, trace_id: 67d5275bc94ef4d071d91569b2691303", "status": "passed", "attachments": [{"name": "response.headers", "source": "2f2b2459-2007-4eb0-9e84-77271868aee6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "02ef9855-776a-4727-807a-845bd432e8e8-attachment.json", "type": "application/json"}], "start": 1775460967632, "stop": 1775460967633}], "attachments": [{"name": "cURL", "source": "6b3a1ebb-efbd-48fb-aa83-574f9a7cd345-attachment.txt", "type": "text/plain"}], "start": 1775460967632, "stop": 1775460967633}, {"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": "af3ae310-b123-4166-b05f-fb27ed859d24-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "19d78dde-d1d3-4c90-a614-acc959209c9d-attachment.json", "type": "application/json"}], "start": 1775460967659, "stop": 1775460967659}, {"name": "Response → 200, trace_id: 0cff7cf42bcc61c3a82b9a813140ff60", "status": "passed", "attachments": [{"name": "response.headers", "source": "faca5c3d-87b8-4e03-82eb-2ae8e1003182-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2e80ecd5-9644-4a52-8057-77fa45a4a094-attachment.txt", "type": "text/plain"}], "start": 1775460967659, "stop": 1775460967659}], "attachments": [{"name": "cURL", "source": "fdf26685-6a0f-4fc4-b713-bf1815b52da1-attachment.txt", "type": "text/plain"}], "start": 1775460967659, "stop": 1775460967659}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492913&pickingTaskKey=8efba8ff6a27308b868b610676dc5eeea4462f7f41c8f9a62b1639edc3fe0718", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3b159382-07df-4330-b49a-756ca7f8ce87-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "6c36cbbd-18e3-4c31-bd61-79edb75e1ea0-attachment.json", "type": "application/json"}], "start": 1775460967690, "stop": 1775460967690}, {"name": "Response → 200, trace_id: 34ce6887922ad84e92cec3a326700c31", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6efac72-d5f8-440f-a3ae-1fcbf2747173-attachment.json", "type": "application/json"}], "start": 1775460967690, "stop": 1775460967690}], "attachments": [{"name": "cURL", "source": "11f874d3-3029-43c6-94be-b2a1e58c0efc-attachment.txt", "type": "text/plain"}], "start": 1775460967690, "stop": 1775460967691}, {"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": "30a2c740-3e4c-4f70-8185-ab296147f10f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "787c07a9-1333-4994-b964-0d4536a96bef-attachment.json", "type": "application/json"}], "start": 1775460967719, "stop": 1775460967720}, {"name": "Response → 200, trace_id: b2f10318be2926fbd5b7fde6f09d110b", "status": "passed", "attachments": [{"name": "response.headers", "source": "76830a0e-efce-4f61-9d59-59f3136d20a8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7b3fc4cd-4299-485f-a34d-6f397224c3df-attachment.json", "type": "application/json"}], "start": 1775460967720, "stop": 1775460967720}], "attachments": [{"name": "cURL", "source": "a90e834f-852b-441d-88e2-971341ee6938-attachment.txt", "type": "text/plain"}], "start": 1775460967719, "stop": 1775460967720}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=8efba8ff6a27308b868b610676dc5eeea4462f7f41c8f9a62b1639edc3fe0718&skuId=4100000000000053270&cellBarcode=QA-75460962784367104&cellId=488412", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3d72f289-0509-4a77-8ec4-f5c3582f3082-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "faa01062-ca70-4c74-b8b0-d050c2565498-attachment.json", "type": "application/json"}], "start": 1775460977872, "stop": 1775460977873}, {"name": "Response → 200, trace_id: 691ea08564f9d9c78b1b8c098526fd6d", "status": "passed", "attachments": [{"name": "response.headers", "source": "3b28b2c1-e46a-411c-9197-7da5b5e6b585-attachment.json", "type": "application/json"}], "start": 1775460977873, "stop": 1775460977873}], "attachments": [{"name": "cURL", "source": "9329b227-b01f-43be-ba45-a3c63ccf748a-attachment.txt", "type": "text/plain"}], "start": 1775460977872, "stop": 1775460977873}, {"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": "fd9dac1b-6119-425d-9e0a-8178f68cf6db-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "cbec4afd-44fd-43bf-94f2-e7f1468544da-attachment.json", "type": "application/json"}], "start": 1775460977908, "stop": 1775460977909}, {"name": "Response → 200, trace_id: 18b98a4c8af32cbb86cc8af25f3688e0", "status": "passed", "attachments": [{"name": "response.headers", "source": "40e77acc-81ba-45b7-8a3a-305d956e8c53-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b13a3211-405b-46df-a93e-307f25001fec-attachment.json", "type": "application/json"}], "start": 1775460977909, "stop": 1775460977909}], "attachments": [{"name": "cURL", "source": "9faaf31d-4b68-48e9-b6c2-1d98692086fa-attachment.txt", "type": "text/plain"}], "start": 1775460977908, "stop": 1775460977909}, {"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": "a755534e-d690-406b-bdab-dd6382bc9c77-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "31f4e16c-35bc-44a9-9a00-b7b71db799ce-attachment.json", "type": "application/json"}], "start": 1775460977940, "stop": 1775460977941}, {"name": "Response → 200, trace_id: ce263ff832dd35a6d548f8380e844fe1", "status": "passed", "attachments": [{"name": "response.headers", "source": "7cf7c536-d037-49fd-965b-e0bf77fe1a55-attachment.json", "type": "application/json"}], "start": 1775460977941, "stop": 1775460977941}], "attachments": [{"name": "cURL", "source": "387ae298-c0bf-4f99-a9a3-51e3813365ae-attachment.txt", "type": "text/plain"}], "start": 1775460977940, "stop": 1775460977941}, {"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": "58e6e5f8-800e-48b0-9896-3799b86d97ba-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "46f0f94b-9dcd-4ce3-a592-50074c6cc318-attachment.json", "type": "application/json"}], "start": 1775460978004, "stop": 1775460978004}, {"name": "Response → 200, trace_id: d9feb05c5d889a16e602993b5d2a3b41", "status": "passed", "attachments": [{"name": "response.headers", "source": "121012da-20e8-49e7-8ffe-59f15e2b81cd-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2b81d33e-e41f-4f30-bbfc-90d5097ba760-attachment.json", "type": "application/json"}], "start": 1775460978004, "stop": 1775460978005}], "attachments": [{"name": "cURL", "source": "db68e60d-0f68-4437-9456-9101e657e9c7-attachment.txt", "type": "text/plain"}], "start": 1775460978004, "stop": 1775460978005}], "start": 1775460977943, "stop": 1775460978008}, {"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": "f7ee837a-e95c-4aeb-9710-bc2ba86d7d88-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e57e729e-d916-402f-b534-043ca7b35a2c-attachment.json", "type": "application/json"}], "start": 1775460978077, "stop": 1775460978078}, {"name": "Response → 200, trace_id: 6600ab7221474fd6d5cf26b6ae5d58f7", "status": "passed", "attachments": [{"name": "response.headers", "source": "ddb86b62-ef19-430d-9a0d-403ad0fd9beb-attachment.json", "type": "application/json"}], "start": 1775460978078, "stop": 1775460978078}], "attachments": [{"name": "cURL", "source": "350e2b80-f576-4f8a-b0b7-5c3471c968fa-attachment.txt", "type": "text/plain"}], "start": 1775460978077, "stop": 1775460978078}, {"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": "1ec014c4-363b-4fda-bb8e-0dca72b2c7dd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c7ed399f-3f65-4f87-bd8f-6f23fe1f6ee6-attachment.json", "type": "application/json"}], "start": 1775460978105, "stop": 1775460978105}, {"name": "Response → 200, trace_id: 302a29182a58db6085683368c5412d75", "status": "passed", "attachments": [{"name": "response.headers", "source": "f775e918-63f1-454d-8a38-ac1ea40b642b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "099e5bc2-1721-49f2-ab26-4f268bb8dd99-attachment.json", "type": "application/json"}], "start": 1775460978105, "stop": 1775460978106}], "attachments": [{"name": "cURL", "source": "b84be69c-e9b0-487b-84d0-6c2e6daca3b7-attachment.txt", "type": "text/plain"}], "start": 1775460978105, "stop": 1775460978106}, {"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": "d38211a0-55f4-4019-a4e3-0d1c2338ca57-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c72b3b2d-226a-4a50-b3b8-ab20d5adbdcc-attachment.json", "type": "application/json"}], "start": 1775460978148, "stop": 1775460978148}, {"name": "Response → 200, trace_id: 0064baf1b3dd891842c2fe26a1af3159", "status": "passed", "attachments": [{"name": "response.headers", "source": "9be4cae3-fe42-4a34-bda2-af8bf3cc9306-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "69748b74-a61d-4a5c-9ef8-92c91b66b5d0-attachment.json", "type": "application/json"}], "start": 1775460978148, "stop": 1775460978148}], "attachments": [{"name": "cURL", "source": "06332e7b-cbcc-4ebb-94ff-b67e2c7c72cf-attachment.txt", "type": "text/plain"}], "start": 1775460978148, "stop": 1775460978149}, {"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": "06ed420b-52b7-4365-a250-8a1d5df17d68-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "97f37e4c-fd8d-44b4-ae88-8590f51e652d-attachment.json", "type": "application/json"}], "start": 1775460978196, "stop": 1775460978196}, {"name": "Response → 200, trace_id: a79a6ab4cb0f04ac2b3e462a9e8318af", "status": "passed", "attachments": [{"name": "response.headers", "source": "e63db65a-23a5-4240-8f47-d1a8fc7994d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a93d3359-f3a5-467e-a781-f22285eaf40e-attachment.json", "type": "application/json"}], "start": 1775460978196, "stop": 1775460978196}], "attachments": [{"name": "cURL", "source": "85c69a1d-e387-4dc2-ab79-68d92d65575e-attachment.txt", "type": "text/plain"}], "start": 1775460978196, "stop": 1775460978197}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161074", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e3ee893a-5c41-49a9-ac3c-81e6f9567be7-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9623e63b-8377-48f1-b58a-fbbe1d8eed15-attachment.json", "type": "application/json"}], "start": 1775460978220, "stop": 1775460978221}, {"name": "Response → 200, trace_id: c1c81da346f82752a5153ee9d55951b8", "status": "passed", "attachments": [{"name": "response.headers", "source": "c31aa034-ff40-43a3-b4fb-187cf55ffde0-attachment.json", "type": "application/json"}], "start": 1775460978221, "stop": 1775460978221}], "attachments": [{"name": "cURL", "source": "40c09462-221e-410f-a2ef-32bbcb6cae30-attachment.txt", "type": "text/plain"}], "start": 1775460978220, "stop": 1775460978221}, {"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": "aa5e6f40-8b22-478a-bbd2-0f3765c0778e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6003127f-2a3b-4a8c-b535-f7562398a36f-attachment.json", "type": "application/json"}], "start": 1775460978256, "stop": 1775460978256}, {"name": "Response → 200, trace_id: 03cd3465c42d3b2cd0afab8d2f7815f0", "status": "passed", "attachments": [{"name": "response.headers", "source": "bbee4dc0-6db0-41fa-8f3d-6afc8e84262c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b9cf451e-28e2-435d-b92f-a13b27e47b81-attachment.json", "type": "application/json"}], "start": 1775460978256, "stop": 1775460978256}], "attachments": [{"name": "cURL", "source": "4c370345-05b9-428e-8e07-2d3a9df7d01c-attachment.txt", "type": "text/plain"}], "start": 1775460978256, "stop": 1775460978256}, {"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": "f6ef7f83-2b9f-476a-bad0-a8773878be2f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "615e2ccb-f574-4fa5-8aaa-6322859bf2a2-attachment.json", "type": "application/json"}], "start": 1775460978327, "stop": 1775460978328}, {"name": "Response → 200, trace_id: 04195ba055d2ed1fd1a8b172ee06e811", "status": "passed", "attachments": [{"name": "response.headers", "source": "e2d64cd0-8fdb-4cf2-b669-ea8b37b33a58-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "22266d30-bef4-4507-9231-1a9d80647aad-attachment.json", "type": "application/json"}], "start": 1775460978328, "stop": 1775460978328}], "attachments": [{"name": "cURL", "source": "140a0635-5f7d-452e-9fd4-c1b85fbbb0e5-attachment.txt", "type": "text/plain"}], "start": 1775460978327, "stop": 1775460978328}, {"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": "b4d2637e-e7de-4194-bd94-0edcd0a28410-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "74bf632e-9d6d-4e02-a335-c6402ed53583-attachment.json", "type": "application/json"}], "start": 1775460978363, "stop": 1775460978363}, {"name": "Response → 200, trace_id: 37d3b24a517ec9c09fcd955cdb5a7bb3", "status": "passed", "attachments": [{"name": "response.headers", "source": "57e8edf2-8b8e-4d1f-b230-aad5c01a2aec-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d3608721-5ec8-411b-aad2-39b0029cdacd-attachment.json", "type": "application/json"}], "start": 1775460978363, "stop": 1775460978363}], "attachments": [{"name": "cURL", "source": "94fddc65-3c8e-4330-95b4-f9edc86fbf5e-attachment.txt", "type": "text/plain"}], "start": 1775460978363, "stop": 1775460978364}, {"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": "1ed33a09-3283-4fb3-9635-d5e46e5109e1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "eba46b00-99f7-45bf-83c5-69ec7809f721-attachment.json", "type": "application/json"}], "start": 1775460978399, "stop": 1775460978399}, {"name": "Response → 200, trace_id: 8993e754422d6ab1e45dbf5c1d057ddc", "status": "passed", "attachments": [{"name": "response.headers", "source": "023a669c-8960-4dbd-9016-6ba2f623400e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "90bbe972-fc4d-422b-b408-fc3d88a74333-attachment.json", "type": "application/json"}], "start": 1775460978400, "stop": 1775460978400}], "attachments": [{"name": "cURL", "source": "54704f96-5c61-4c3a-ad1d-0a418ad6c737-attachment.txt", "type": "text/plain"}], "start": 1775460978399, "stop": 1775460978400}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "7e9eacbc-f80f-44c3-92ae-f5afc9fc9d13-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3dda9fc6-6a8b-492f-9efc-7c27dc4bf207-attachment.json", "type": "application/json"}], "start": 1775460978416, "stop": 1775460978416}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192590&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8c1e9874-6cd5-4b28-8001-ea7d15e4b96a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "31f0a45b-278d-408e-bf1d-8eb9b80a292d-attachment.json", "type": "application/json"}], "start": 1775460978445, "stop": 1775460978446}, {"name": "Response → 200, trace_id: 4c5f64fdc5ab0332976ad00025628849", "status": "passed", "attachments": [{"name": "response.headers", "source": "d1f37d5e-fdab-4150-b632-8177c2f66a68-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6ecf2eb4-d951-45a9-b84c-8a270a03fd84-attachment.txt", "type": "text/plain"}], "start": 1775460978446, "stop": 1775460978446}], "attachments": [{"name": "cURL", "source": "63139447-a739-4fe9-b75e-8a0636386624-attachment.txt", "type": "text/plain"}], "start": 1775460978445, "stop": 1775460978446}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "e2d77f80-82ee-4776-bd83-6cde77974b15-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "87185cb7-4d75-4c4c-af7c-63082d05e107-attachment.json", "type": "application/json"}], "start": 1775460978456, "stop": 1775460978457}, {"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": "fd61faf7-9001-47c1-90b9-26e03def8c01-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dbc223eb-d713-4063-ac98-ae56f224abcb-attachment.json", "type": "application/json"}], "start": 1775460979503, "stop": 1775460979503}, {"name": "Response → 200, trace_id: 4d646e065f28c6753cbd5c5f8457fc33", "status": "passed", "attachments": [{"name": "response.headers", "source": "f8f156e4-c378-47a8-b5e6-5fa41f05f8ec-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7438f1cc-da0d-4688-9d62-ca0ad3969698-attachment.json", "type": "application/json"}], "start": 1775460979503, "stop": 1775460979504}], "attachments": [{"name": "cURL", "source": "1fab875d-5920-422b-8f87-10ce1dbc2e04-attachment.txt", "type": "text/plain"}], "start": 1775460979503, "stop": 1775460979504}, {"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": "d0dada60-9f33-4b5e-97ee-1c0614da1c2d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3f11990e-efff-44dc-858b-519765793f4e-attachment.json", "type": "application/json"}], "start": 1775460979531, "stop": 1775460979531}, {"name": "Response → 200, trace_id: a67c4454cab17069835e2e2b347012c5", "status": "passed", "attachments": [{"name": "response.headers", "source": "c012f612-4f16-4bd3-a352-16b19718fcb8-attachment.json", "type": "application/json"}], "start": 1775460979531, "stop": 1775460979531}], "attachments": [{"name": "cURL", "source": "77ed0ad5-af31-4fb3-9732-1711e956fa24-attachment.txt", "type": "text/plain"}], "start": 1775460979531, "stop": 1775460979531}, {"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": "78eb36b1-e195-4abd-8f7b-e3a544dab99f-attachment.json", "type": "application/json"}], "start": 1775460979552, "stop": 1775460979552}, {"name": "Response → 200, trace_id: a72531a1193e9cc54298a9bc2c7745ea", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e4eef1b-d362-4e3f-ab0e-c4b1c54a5bdf-attachment.json", "type": "application/json"}], "start": 1775460979552, "stop": 1775460979552}], "attachments": [{"name": "cURL", "source": "fa29c2ca-a66d-49e7-ac88-cf61c0f7260e-attachment.txt", "type": "text/plain"}], "start": 1775460979552, "stop": 1775460979552}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "c77d6219-1676-4019-8fa9-ef66fae16535-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "043f6531-c103-457a-a629-28482d3fb011-attachment.json", "type": "application/json"}], "start": 1775460979568, "stop": 1775460979568}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "16371759-f0f8-4a95-b7c6-761a9bfdca38-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "927f9216-af25-4862-9c31-62a363e6663d-attachment.json", "type": "application/json"}], "start": 1775460979585, "stop": 1775460979586}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88885&amount=2", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b70bb3e3-16bc-4b38-b57b-53e3d437b029-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0e749e08-889b-4d5c-8494-095e8361f01f-attachment.json", "type": "application/json"}], "start": 1775460979891, "stop": 1775460979892}, {"name": "Response → 200, trace_id: 3c6b0da5f12c16943e0d41a3931c4980", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca548829-49c1-4d9c-83aa-167d0d10fb8a-attachment.json", "type": "application/json"}], "start": 1775460979892, "stop": 1775460979892}], "attachments": [{"name": "cURL", "source": "7c224c53-ae30-4f99-a931-f4749232a109-attachment.txt", "type": "text/plain"}], "start": 1775460979891, "stop": 1775460979892}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775460979895, "stop": 1775460979897}], "attachments": [{"name": "log", "source": "f5254c85-83e8-466c-8575-492b16106677-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": 1775460963930, "stop": 1775461279911, "uuid": "f8a75b94-015e-4bcc-a068-331d50a9e0fd", "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-pikdvvke"}, {"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"]}