{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192480 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 0x76debdd966d0>\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 0x76deb7fb1c50>)\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 = 4278192480, 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: 4278192480 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": "3bd3fb15-1818-464b-980e-ae9edce22533-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f62785d8-b9ad-42e4-a509-4944aaef8520-attachment.json", "type": "application/json"}], "start": 1775347146777, "stop": 1775347146778}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "2b0a3b77-f2b9-499f-a65a-c1033ebbd922-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "51d80dbf-2811-40fc-aec8-f5cd3ec47573-attachment.json", "type": "application/json"}], "start": 1775347146785, "stop": 1775347146786}], "start": 1775347146778, "stop": 1775347146789}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "b9c48fd4-7a5a-4f3e-b74d-18e5c9cc5ddf-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "94ef5c1f-4407-4fc5-b1cb-f7328b9d1fa6-attachment.json", "type": "application/json"}], "start": 1775347146798, "stop": 1775347146798}, {"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": "7a8dc7fc-1bf5-4236-850a-6520fd8b1a2a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c3973dc6-171b-4e1b-bca4-11134c96e366-attachment.json", "type": "application/json"}], "start": 1775347146833, "stop": 1775347146834}, {"name": "Response → 200, trace_id: ef47b724dbf1d2403634b6b6123d48b8", "status": "passed", "attachments": [{"name": "response.headers", "source": "ade55d56-591b-4035-89ae-c77bcb0f3177-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "10d256d5-e9d8-4c81-afbd-a9ce2f167f73-attachment.json", "type": "application/json"}], "start": 1775347146834, "stop": 1775347146834}], "attachments": [{"name": "cURL", "source": "bfee30dd-b057-4aeb-aa4f-d3288f723cba-attachment.txt", "type": "text/plain"}], "start": 1775347146833, "stop": 1775347146834}], "start": 1775347146800, "stop": 1775347146837}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "a0d8fe2d-9364-4f3a-a1c9-e0e4405d34bd-attachment.json", "type": "application/json"}, {"name": "Response", "source": "41a7f557-14f1-445b-9722-a7593e68adef-attachment.json", "type": "application/json"}], "start": 1775347146841, "stop": 1775347146874}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775347146875, "stop": 1775347149256}, {"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": "475eab9d-3949-4532-a5be-58b6e61146d5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1af7aca9-82f4-4eb2-a722-7275adccb190-attachment.json", "type": "application/json"}], "start": 1775347150349, "stop": 1775347150350}, {"name": "Response → 200, trace_id: f3ecb11993a86bf6d62e6478de356d43", "status": "passed", "attachments": [{"name": "response.headers", "source": "7438d908-722b-416b-b7ad-b473022bb9f8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f5e3816a-34a2-495a-a15f-afe67c62ccdd-attachment.json", "type": "application/json"}], "start": 1775347150350, "stop": 1775347150350}], "attachments": [{"name": "cURL", "source": "71dfd866-f99c-422f-bbd6-d0142646b699-attachment.txt", "type": "text/plain"}], "start": 1775347150349, "stop": 1775347150350}, {"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": "f6892ec6-6444-4c85-91e7-e0ec5db1428b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ff23d3a3-6deb-4e08-bf51-c134242a8dcb-attachment.json", "type": "application/json"}], "start": 1775347150401, "stop": 1775347150401}, {"name": "Response → 200, trace_id: ad0e618b56fb0cc1b2af857e94af37ef", "status": "passed", "attachments": [{"name": "response.headers", "source": "07633227-03c5-4d4e-b324-4e25899cb53c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dc27dd0f-7eb3-4a61-8f2d-ebfad3f07ede-attachment.json", "type": "application/json"}], "start": 1775347150401, "stop": 1775347150401}], "attachments": [{"name": "cURL", "source": "3b55461c-e0cc-4b26-b598-84c65db48751-attachment.txt", "type": "text/plain"}], "start": 1775347150401, "stop": 1775347150401}, {"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": "1ccab9bd-5164-422c-bfeb-b6143ef64c95-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "64e72080-d82a-42ca-805c-bc50f09ef8da-attachment.json", "type": "application/json"}], "start": 1775347150447, "stop": 1775347150447}, {"name": "Response → 200, trace_id: f24ed3c7745eb74bf5871c23f8495f7b", "status": "passed", "attachments": [{"name": "response.headers", "source": "ac17b56f-ad8b-48c9-a9f1-b7b7f8369a95-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "93c8a254-41ef-4a0a-852b-bb29ea7e12cc-attachment.json", "type": "application/json"}], "start": 1775347150447, "stop": 1775347150447}], "attachments": [{"name": "cURL", "source": "cf1d388d-5f5a-4b70-ae57-ce822d494cc2-attachment.txt", "type": "text/plain"}], "start": 1775347150447, "stop": 1775347150447}, {"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": "b79e1a80-e25a-4bc0-bbbc-73249f16299d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0aa8ee65-040e-482a-a23e-9f9954e66785-attachment.json", "type": "application/json"}], "start": 1775347150495, "stop": 1775347150495}, {"name": "Response → 200, trace_id: 0c3dcb786909b9163ed0df481b9a2221", "status": "passed", "attachments": [{"name": "response.headers", "source": "24c57717-bf52-4c8e-b399-246afb34398f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d7c98454-2672-4644-a64f-eed14ca5107b-attachment.json", "type": "application/json"}], "start": 1775347150495, "stop": 1775347150496}], "attachments": [{"name": "cURL", "source": "f3897083-8803-4f91-83c7-712ac1b41cb1-attachment.txt", "type": "text/plain"}], "start": 1775347150495, "stop": 1775347150496}, {"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": "e3476e6a-3bf2-4de8-9c04-4e81cedf959f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e9c849aa-8c98-400e-abf5-99113dc5e0af-attachment.json", "type": "application/json"}], "start": 1775347150525, "stop": 1775347150525}, {"name": "Response → 200, trace_id: 14deb9b8c5d5936c96a28665931ffb55", "status": "passed", "attachments": [{"name": "response.headers", "source": "3c561732-7a59-4acf-9d70-d78bbe37189a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9dbc1e44-172f-4cda-8d01-855217b26148-attachment.txt", "type": "text/plain"}], "start": 1775347150525, "stop": 1775347150525}], "attachments": [{"name": "cURL", "source": "9f7aa634-b947-4082-93f5-e32f366e2865-attachment.txt", "type": "text/plain"}], "start": 1775347150525, "stop": 1775347150525}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492795&pickingTaskKey=13a255ad5a709babe5596e550e081b2d05ebadef2ca2c7a77a3a3fbe32311109", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "005a2671-8f4b-45ed-be54-1babafef0f5c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4c72642b-9776-495d-b366-d04b08702e6c-attachment.json", "type": "application/json"}], "start": 1775347150552, "stop": 1775347150553}, {"name": "Response → 200, trace_id: d9b5048e71db22933ef6870c7814fbb1", "status": "passed", "attachments": [{"name": "response.headers", "source": "534107df-0406-43b5-9d94-523c96bc93c9-attachment.json", "type": "application/json"}], "start": 1775347150553, "stop": 1775347150553}], "attachments": [{"name": "cURL", "source": "273e7ca1-2e28-4506-84ea-b5516b2dee26-attachment.txt", "type": "text/plain"}], "start": 1775347150552, "stop": 1775347150553}, {"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": "c795f384-8548-4190-a17c-b9810104c6b1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f2e2ad65-1586-4e8e-b5bd-989f6eb2a418-attachment.json", "type": "application/json"}], "start": 1775347150582, "stop": 1775347150582}, {"name": "Response → 200, trace_id: 69afc48e71b80d4745a07f3bf41cd000", "status": "passed", "attachments": [{"name": "response.headers", "source": "01a661ad-8871-4343-9874-40926338d4fa-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cc72c201-4370-4aa8-a77f-a932246fc61d-attachment.json", "type": "application/json"}], "start": 1775347150582, "stop": 1775347150582}], "attachments": [{"name": "cURL", "source": "60b22007-09bb-43d0-bc87-5ec566982ea5-attachment.txt", "type": "text/plain"}], "start": 1775347150582, "stop": 1775347150582}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=13a255ad5a709babe5596e550e081b2d05ebadef2ca2c7a77a3a3fbe32311109&skuId=4100000000000052974&cellBarcode=QA-75347145575819008&cellId=488165", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a2c2c6aa-ffcd-439f-bc1a-7e6abd8f9bf0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9d23c7df-d99d-4d6f-a815-c4aa3501415e-attachment.json", "type": "application/json"}], "start": 1775347160763, "stop": 1775347160763}, {"name": "Response → 200, trace_id: 661a0728c918de5b1c1ff55ffa62b137", "status": "passed", "attachments": [{"name": "response.headers", "source": "72b51eec-c7c3-4bb6-80a1-1cb080c81359-attachment.json", "type": "application/json"}], "start": 1775347160763, "stop": 1775347160763}], "attachments": [{"name": "cURL", "source": "7dac95ae-d02b-4fb9-b490-a335d64595b1-attachment.txt", "type": "text/plain"}], "start": 1775347160763, "stop": 1775347160763}, {"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": "b240efcf-fb74-47e0-8957-4d113a65ffcf-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8ba9788f-43f7-41f2-bb9c-be12a4845497-attachment.json", "type": "application/json"}], "start": 1775347160813, "stop": 1775347160813}, {"name": "Response → 200, trace_id: 02d9f60e8bd5602d0880f06403c64c87", "status": "passed", "attachments": [{"name": "response.headers", "source": "1dee41a6-baf2-4506-9c2e-973435280137-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8a8e65b0-c952-4c58-889d-b77eb3504f2d-attachment.json", "type": "application/json"}], "start": 1775347160813, "stop": 1775347160814}], "attachments": [{"name": "cURL", "source": "25ff6887-e8cc-42c6-99ad-390b3e0c50d1-attachment.txt", "type": "text/plain"}], "start": 1775347160813, "stop": 1775347160814}, {"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": "9fedfe89-0699-403f-be57-d3c9908b4842-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4953fe30-ed1f-4b79-894a-9861a2020781-attachment.json", "type": "application/json"}], "start": 1775347160845, "stop": 1775347160845}, {"name": "Response → 200, trace_id: bcf71291f3fe2f1c208e6c9f48b98cea", "status": "passed", "attachments": [{"name": "response.headers", "source": "6544188e-ae8c-4086-9fd1-8212028d1265-attachment.json", "type": "application/json"}], "start": 1775347160845, "stop": 1775347160845}], "attachments": [{"name": "cURL", "source": "19c49a7a-11a5-4443-933e-491554152e48-attachment.txt", "type": "text/plain"}], "start": 1775347160845, "stop": 1775347160845}, {"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": "5ce2d4ff-ecbf-4909-acb6-4efd3c0027f0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55546306-e917-4e35-bb99-5962dcc7006b-attachment.json", "type": "application/json"}], "start": 1775347160915, "stop": 1775347160915}, {"name": "Response → 200, trace_id: 60f24eae74a328a4ec8533dd80b6660b", "status": "passed", "attachments": [{"name": "response.headers", "source": "c848e5c1-f9ba-45a6-8da6-5eef48148c8b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c8d462ff-3914-4a09-8008-7e776537accf-attachment.json", "type": "application/json"}], "start": 1775347160915, "stop": 1775347160915}], "attachments": [{"name": "cURL", "source": "bbb8b3e5-1e71-4301-b21d-9c763ece2eb8-attachment.txt", "type": "text/plain"}], "start": 1775347160915, "stop": 1775347160915}], "start": 1775347160848, "stop": 1775347160918}, {"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": "ffe97fd3-f54a-4b1a-b176-d294082246de-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7c407f24-7ae3-4d07-9afd-65421b0644c9-attachment.json", "type": "application/json"}], "start": 1775347160986, "stop": 1775347160986}, {"name": "Response → 200, trace_id: 815ab0737b878f255f7bb7d294ca7168", "status": "passed", "attachments": [{"name": "response.headers", "source": "a90f2711-c88d-4671-ad19-cec6886bdd54-attachment.json", "type": "application/json"}], "start": 1775347160986, "stop": 1775347160986}], "attachments": [{"name": "cURL", "source": "0970d872-5e33-4344-b79b-cd8b122b0021-attachment.txt", "type": "text/plain"}], "start": 1775347160986, "stop": 1775347160986}, {"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": "6fb7c164-56aa-494a-9e7c-e70ef3c5594b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6005a4d5-9773-46ac-b8ab-bceee0204453-attachment.json", "type": "application/json"}], "start": 1775347161016, "stop": 1775347161016}, {"name": "Response → 200, trace_id: 8cc66bf843f286098f422eb40efe1ed3", "status": "passed", "attachments": [{"name": "response.headers", "source": "8272584e-f0be-491d-aeca-c9dcafcd8824-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dce7b2d8-a891-4c28-8e97-a9d36fc39456-attachment.json", "type": "application/json"}], "start": 1775347161016, "stop": 1775347161016}], "attachments": [{"name": "cURL", "source": "d55b7000-507a-4585-b9db-1593df9fab38-attachment.txt", "type": "text/plain"}], "start": 1775347161016, "stop": 1775347161017}, {"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": "4dd756e5-9863-4205-8054-0cbc7b69a0da-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b1e5fc41-64fb-41a3-b34e-41efbe45062e-attachment.json", "type": "application/json"}], "start": 1775347161063, "stop": 1775347161063}, {"name": "Response → 200, trace_id: 3dd76090c0ba2700ed249fc1aec7617e", "status": "passed", "attachments": [{"name": "response.headers", "source": "9f508550-dc62-484b-9c52-b17e83644d08-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "075a3cec-e222-48b9-a591-275ea765ccf9-attachment.json", "type": "application/json"}], "start": 1775347161063, "stop": 1775347161064}], "attachments": [{"name": "cURL", "source": "52c974dc-a5fa-4671-9531-0cf5c10ea015-attachment.txt", "type": "text/plain"}], "start": 1775347161063, "stop": 1775347161064}, {"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": "324ba508-7cfa-4c34-b8ce-7e3f62c65fac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d174d0d6-8990-41d4-8917-16d504a4cdb2-attachment.json", "type": "application/json"}], "start": 1775347161114, "stop": 1775347161114}, {"name": "Response → 200, trace_id: bde5237a4d6c71640d6694beeffa1da2", "status": "passed", "attachments": [{"name": "response.headers", "source": "33b0cbba-ab5f-4ee4-90e8-d696eb11cd25-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ab9896e5-356b-419b-b499-1d20d44bf2ef-attachment.json", "type": "application/json"}], "start": 1775347161114, "stop": 1775347161114}], "attachments": [{"name": "cURL", "source": "a2a3065a-ddcb-44fd-8600-acf0abb00a05-attachment.txt", "type": "text/plain"}], "start": 1775347161114, "stop": 1775347161114}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161041", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a4493cf1-5d52-407e-8453-71119cd5d299-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f6ede79d-003d-4b71-b465-abd52a8bb3b7-attachment.json", "type": "application/json"}], "start": 1775347161138, "stop": 1775347161138}, {"name": "Response → 200, trace_id: 84e6f2a18b62f5fcb0a0a94cab3852e1", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3196a70-d7d7-4976-99e3-793db7cecc3e-attachment.json", "type": "application/json"}], "start": 1775347161138, "stop": 1775347161138}], "attachments": [{"name": "cURL", "source": "1fa06331-bf60-4380-8d10-c73ebd163bfc-attachment.txt", "type": "text/plain"}], "start": 1775347161138, "stop": 1775347161138}, {"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": "5f0c7a2c-b154-4e37-9662-9a990b867212-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e02158ba-f473-4f2f-9712-73628f3dc410-attachment.json", "type": "application/json"}], "start": 1775347161180, "stop": 1775347161180}, {"name": "Response → 200, trace_id: 1fadbc6dc71e3245752b8368e01138d8", "status": "passed", "attachments": [{"name": "response.headers", "source": "95b3d954-196a-45cd-b1b2-b1e2fa12310a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "57ba18d5-853c-4c7f-89fa-6ae959682d56-attachment.json", "type": "application/json"}], "start": 1775347161180, "stop": 1775347161180}], "attachments": [{"name": "cURL", "source": "ff0748e5-72f3-44f7-92a8-704cb404230a-attachment.txt", "type": "text/plain"}], "start": 1775347161180, "stop": 1775347161180}, {"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": "cc091d03-cda4-4328-b1b9-ca2cbae96313-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b7d0edd7-7e50-4d3b-9eb5-454fbae82948-attachment.json", "type": "application/json"}], "start": 1775347161252, "stop": 1775347161252}, {"name": "Response → 200, trace_id: 1d9d03b88902f82c654d2304dc4ebc0e", "status": "passed", "attachments": [{"name": "response.headers", "source": "e7fdf93a-3972-420c-a63f-96cca60e412d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2be47142-b87e-4d07-8ece-9b24910afdf1-attachment.json", "type": "application/json"}], "start": 1775347161252, "stop": 1775347161252}], "attachments": [{"name": "cURL", "source": "7a9d6402-1adc-44e4-8b8c-ed814a5d45d6-attachment.txt", "type": "text/plain"}], "start": 1775347161252, "stop": 1775347161252}, {"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": "f1022ea9-3b6a-4ad5-a295-a4b94523b598-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "be071467-cc25-4461-9b8d-cc52bbc9d9a8-attachment.json", "type": "application/json"}], "start": 1775347161292, "stop": 1775347161292}, {"name": "Response → 200, trace_id: e4409e198701c077e120c8dbb929e671", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3a13b69-2f48-4d6b-b58a-332ba826f0b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "29a51eb9-d3f6-432e-9e03-b698589884c6-attachment.json", "type": "application/json"}], "start": 1775347161292, "stop": 1775347161292}], "attachments": [{"name": "cURL", "source": "2e1be2a3-ef74-44ba-9e58-50a258fd2fdb-attachment.txt", "type": "text/plain"}], "start": 1775347161292, "stop": 1775347161292}, {"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": "35ed0a5a-7eed-4add-830d-c3be979b0d9b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "17aae99e-740d-491f-9547-18765b53014d-attachment.json", "type": "application/json"}], "start": 1775347161332, "stop": 1775347161332}, {"name": "Response → 200, trace_id: d0222ad26df15c28223c22a6c607987a", "status": "passed", "attachments": [{"name": "response.headers", "source": "bcaa7bfb-a369-405c-ae3d-915eefe9c9b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b665b860-a91a-414e-a6ba-c0e4d011123f-attachment.json", "type": "application/json"}], "start": 1775347161332, "stop": 1775347161332}], "attachments": [{"name": "cURL", "source": "67861d96-f610-4d59-a07b-41dc247a6913-attachment.txt", "type": "text/plain"}], "start": 1775347161332, "stop": 1775347161332}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "43e3cb66-3960-412d-a838-0b3894965ae2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5070fc3c-9f37-49e4-b1da-3a410549adec-attachment.json", "type": "application/json"}], "start": 1775347161348, "stop": 1775347161348}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192480&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b210671c-7f73-48a3-9be8-9c5d062b82e9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "34dd5867-5cb3-48b9-9a52-cf0fb7465119-attachment.json", "type": "application/json"}], "start": 1775347161382, "stop": 1775347161383}, {"name": "Response → 200, trace_id: b0cfe6eade58c955c08aff2c2f324780", "status": "passed", "attachments": [{"name": "response.headers", "source": "3a8542d3-d3ee-4567-aaf9-0fc9a5f6bc24-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c241582d-a7a8-4cbe-97b9-b3f51da3744d-attachment.txt", "type": "text/plain"}], "start": 1775347161383, "stop": 1775347161383}], "attachments": [{"name": "cURL", "source": "4c0ba540-36fc-43b6-b702-38738540e655-attachment.txt", "type": "text/plain"}], "start": 1775347161382, "stop": 1775347161383}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "b3699940-8846-4313-a358-80fd477e2919-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "be540d6c-b1cf-4cd5-b2cc-faf10b9681c5-attachment.json", "type": "application/json"}], "start": 1775347161392, "stop": 1775347161392}, {"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": "a0fed39a-5058-4d81-8793-0d95af9654c7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2c6c4849-496a-4fe2-95ea-263649c856a6-attachment.json", "type": "application/json"}], "start": 1775347162441, "stop": 1775347162441}, {"name": "Response → 200, trace_id: 9a58266ceef0f9b0f30d82d1f750bcde", "status": "passed", "attachments": [{"name": "response.headers", "source": "624fb5b1-c82b-46d8-945d-312b54ed8528-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bb52c8d0-56b7-4436-a7f8-ad97f75c4e43-attachment.json", "type": "application/json"}], "start": 1775347162441, "stop": 1775347162442}], "attachments": [{"name": "cURL", "source": "e18510bc-01af-4e9e-a320-5f08ec845ec3-attachment.txt", "type": "text/plain"}], "start": 1775347162441, "stop": 1775347162442}, {"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": "f57a2bfc-1bfe-4223-837e-b7235f80b6ad-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dcf7db75-002c-4786-a4ba-adeda7618b4d-attachment.json", "type": "application/json"}], "start": 1775347162467, "stop": 1775347162467}, {"name": "Response → 200, trace_id: add3bbc5b9c621b5bcac73f6029bca6d", "status": "passed", "attachments": [{"name": "response.headers", "source": "8e966b72-95ef-43cf-9d41-707eabd3ffd9-attachment.json", "type": "application/json"}], "start": 1775347162467, "stop": 1775347162467}], "attachments": [{"name": "cURL", "source": "5a61acce-bde6-4ff2-8764-7b18ac3cc217-attachment.txt", "type": "text/plain"}], "start": 1775347162467, "stop": 1775347162467}, {"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": "c7346c01-761d-4761-b102-6197ef8b3376-attachment.json", "type": "application/json"}], "start": 1775347162488, "stop": 1775347162489}, {"name": "Response → 200, trace_id: b7168d255f97c584151e13fdbf85d8dd", "status": "passed", "attachments": [{"name": "response.headers", "source": "33c70a8a-8584-41cd-95c9-c7ce57ab2015-attachment.json", "type": "application/json"}], "start": 1775347162489, "stop": 1775347162489}], "attachments": [{"name": "cURL", "source": "e969c7c6-ad13-4ac9-b4da-2d3895db50db-attachment.txt", "type": "text/plain"}], "start": 1775347162488, "stop": 1775347162489}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "bbf04d97-6065-48bb-af6a-f72106f2f672-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e347a8ca-03a2-4b4b-9fdd-f86544fabdcc-attachment.json", "type": "application/json"}], "start": 1775347162503, "stop": 1775347162503}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "1dcdee02-e4fe-496e-ae21-e3e16783c968-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3e0e4914-179c-401d-a696-0bf6dd9d6e6d-attachment.json", "type": "application/json"}], "start": 1775347162521, "stop": 1775347162521}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88873&amount=2", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dd8314b2-fadb-4a3e-9982-a759e0e5164e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b4bd3159-6354-4b77-b6a7-7d0557bb66ca-attachment.json", "type": "application/json"}], "start": 1775347162846, "stop": 1775347162846}, {"name": "Response → 200, trace_id: 64893740e59ab8b2976485916c05696b", "status": "passed", "attachments": [{"name": "response.headers", "source": "02eaccd6-2e6a-4ed0-9961-0f4e878b1d14-attachment.json", "type": "application/json"}], "start": 1775347162846, "stop": 1775347162846}], "attachments": [{"name": "cURL", "source": "95dfc912-c33e-4442-b498-a001c0f8c554-attachment.txt", "type": "text/plain"}], "start": 1775347162846, "stop": 1775347162846}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775347162849, "stop": 1775347162852}], "attachments": [{"name": "log", "source": "aebcd223-a39d-4974-bcc7-c811972053b9-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": 1775347146761, "stop": 1775347462866, "uuid": "07acb3cb-de70-466b-b0d1-6646aea6743e", "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-immwplba"}, {"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"]}