{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192510 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 0x77447cb5a190>\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 0x774475126a10>)\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 = 4278192510, 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: 4278192510 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": "8d13955b-759f-4d1e-9fff-91d048491891-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "18528860-5cc6-4951-8638-e0a2aa1f315f-attachment.json", "type": "application/json"}], "start": 1775411813772, "stop": 1775411813772}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "c810dafc-b3ae-463f-9196-910580bee1e6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "119078bb-d452-45d8-a811-db3d2a2fb2d5-attachment.json", "type": "application/json"}], "start": 1775411813780, "stop": 1775411813780}], "start": 1775411813772, "stop": 1775411813784}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "8ec796dd-e97e-462c-a7d7-a73b57ca6e2d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "df04069e-8989-46c6-99f3-d1b96164d022-attachment.json", "type": "application/json"}], "start": 1775411813793, "stop": 1775411813793}, {"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": "b9535dc4-5f15-4a5c-a2af-d553ca902cb9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c6e12556-ab82-4cc2-be68-e2b89e73d04e-attachment.json", "type": "application/json"}], "start": 1775411813830, "stop": 1775411813830}, {"name": "Response → 200, trace_id: 2d3112ce591250fb34b7693237a464cc", "status": "passed", "attachments": [{"name": "response.headers", "source": "29438196-2f52-455b-aa0c-f239a92582f9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5a95ef64-e7e4-437a-b369-fd1f8ff964bf-attachment.json", "type": "application/json"}], "start": 1775411813830, "stop": 1775411813830}], "attachments": [{"name": "cURL", "source": "f8772e35-3404-46e6-a28d-02cd6b5237b0-attachment.txt", "type": "text/plain"}], "start": 1775411813830, "stop": 1775411813830}], "start": 1775411813794, "stop": 1775411813833}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "6bdb2fe3-cbd9-423f-82b4-b5e63068a0d4-attachment.json", "type": "application/json"}, {"name": "Response", "source": "297eb51c-2d27-4d32-8d73-e1c76025b5d0-attachment.json", "type": "application/json"}], "start": 1775411813837, "stop": 1775411813865}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775411813865, "stop": 1775411816229}, {"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": "06d87313-32b7-4dea-830e-ab52099fdde8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c01bae3e-aa31-422e-af63-38f326dab8c1-attachment.json", "type": "application/json"}], "start": 1775411817347, "stop": 1775411817347}, {"name": "Response → 200, trace_id: cd465707279ef25832d0d0bff30394b3", "status": "passed", "attachments": [{"name": "response.headers", "source": "a35dc17c-eb66-441f-a39d-c6235e7db478-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9ba82901-d411-4682-841d-bad2d7bb93d6-attachment.json", "type": "application/json"}], "start": 1775411817347, "stop": 1775411817347}], "attachments": [{"name": "cURL", "source": "6fe7056c-b8c7-4384-8a13-a7986f5b73eb-attachment.txt", "type": "text/plain"}], "start": 1775411817347, "stop": 1775411817347}, {"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": "79945ba3-920e-4e13-a290-0c850de82d1e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f7190f06-c9b8-4caf-8840-35a045bf6e12-attachment.json", "type": "application/json"}], "start": 1775411817394, "stop": 1775411817395}, {"name": "Response → 200, trace_id: f1b42f2abebd5d05f74c84ed8fd8516d", "status": "passed", "attachments": [{"name": "response.headers", "source": "143f16fd-6c07-4911-b24d-9d6db65b68d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a51f474c-1c8f-4cc7-bcd4-98bf21dd4137-attachment.json", "type": "application/json"}], "start": 1775411817395, "stop": 1775411817395}], "attachments": [{"name": "cURL", "source": "9b10b631-e310-487c-a1c8-ae68cf65b61c-attachment.txt", "type": "text/plain"}], "start": 1775411817394, "stop": 1775411817395}, {"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": "3c5f0975-bc4e-4272-af97-5e7e47a24aad-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4d5dc107-aa6c-4c24-ac37-0d906dea4676-attachment.json", "type": "application/json"}], "start": 1775411817442, "stop": 1775411817442}, {"name": "Response → 200, trace_id: 331c309ec2457e876ad4c421a3840396", "status": "passed", "attachments": [{"name": "response.headers", "source": "5d14f11a-2c7f-423b-a937-bfafe7d86f8e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a3173a79-2611-441b-b56f-dc586560725a-attachment.json", "type": "application/json"}], "start": 1775411817443, "stop": 1775411817443}], "attachments": [{"name": "cURL", "source": "20fde813-b673-4ba2-a188-3c9094161c28-attachment.txt", "type": "text/plain"}], "start": 1775411817442, "stop": 1775411817443}, {"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": "5eda95fb-2a48-419a-8a24-560ea40d7a0b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3b32cf96-317e-4d7c-b779-995b6d945f76-attachment.json", "type": "application/json"}], "start": 1775411817487, "stop": 1775411817487}, {"name": "Response → 200, trace_id: d67bc189f009c9ff298a9a79bc395921", "status": "passed", "attachments": [{"name": "response.headers", "source": "bd7b6891-d52f-44a4-adf0-a39aed26da1d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7f34d39f-5795-435d-a7c2-cf1842a3288f-attachment.json", "type": "application/json"}], "start": 1775411817487, "stop": 1775411817487}], "attachments": [{"name": "cURL", "source": "a065e5df-5bc9-4cf8-81d8-6fd1fbf94def-attachment.txt", "type": "text/plain"}], "start": 1775411817486, "stop": 1775411817487}, {"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": "3df12fce-f5b7-4599-ba42-1ce731da01e4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8aae650d-3f69-45d5-bed9-94ff4a914a37-attachment.json", "type": "application/json"}], "start": 1775411817520, "stop": 1775411817521}, {"name": "Response → 200, trace_id: fa0dde27b20d85e4f070e22ab22f8e2b", "status": "passed", "attachments": [{"name": "response.headers", "source": "bba968b3-7e8b-4d3a-b851-3ca67357cbd6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f5890629-ff1c-4ccd-a05d-3541e4664fa9-attachment.txt", "type": "text/plain"}], "start": 1775411817521, "stop": 1775411817521}], "attachments": [{"name": "cURL", "source": "a075555f-c821-4806-b0bf-0eb9456e5bcb-attachment.txt", "type": "text/plain"}], "start": 1775411817520, "stop": 1775411817521}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492845&pickingTaskKey=373664c151ee34d365f58440f8564f8c5af42302053526789b58e23d43534a11", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eff3f45b-5434-4637-a2df-24dca606f149-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "bdf0f049-f5ad-4076-9d87-0f8fb9c7271e-attachment.json", "type": "application/json"}], "start": 1775411817549, "stop": 1775411817549}, {"name": "Response → 200, trace_id: c651a63a6be7db010bb48e292d2bf9a5", "status": "passed", "attachments": [{"name": "response.headers", "source": "1f22401f-0747-4838-96ac-826b7bb996e5-attachment.json", "type": "application/json"}], "start": 1775411817549, "stop": 1775411817549}], "attachments": [{"name": "cURL", "source": "8954142e-cdd1-49ef-bddb-7d8c5c3f342e-attachment.txt", "type": "text/plain"}], "start": 1775411817549, "stop": 1775411817549}, {"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": "37d2d790-2736-4bc9-909d-8149a0f55b63-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c5b47219-7cd2-4cbf-80e5-6eac83feae38-attachment.json", "type": "application/json"}], "start": 1775411817578, "stop": 1775411817578}, {"name": "Response → 200, trace_id: ed789c3bf1fc8f180b1042962f0f3664", "status": "passed", "attachments": [{"name": "response.headers", "source": "3d242d16-d892-4369-85b9-857bdbc2680e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "57cfa69c-dd0e-4fc6-8a96-74f587f8ff7c-attachment.json", "type": "application/json"}], "start": 1775411817578, "stop": 1775411817579}], "attachments": [{"name": "cURL", "source": "83a3ae30-003a-4436-bbb2-52e5c4ea10d9-attachment.txt", "type": "text/plain"}], "start": 1775411817578, "stop": 1775411817579}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=373664c151ee34d365f58440f8564f8c5af42302053526789b58e23d43534a11&skuId=4100000000000053066&cellBarcode=QA-75411812598145792&cellId=488258", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6a4d9364-fc7b-4329-a9c2-45cf5b70c389-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5c2e7d92-7c06-4c73-b1ea-0847499c035d-attachment.json", "type": "application/json"}], "start": 1775411827737, "stop": 1775411827738}, {"name": "Response → 200, trace_id: ecdfb70a92f84d56901c6a9447e7b604", "status": "passed", "attachments": [{"name": "response.headers", "source": "5271c691-e734-4802-a8fb-4734bd6f55ec-attachment.json", "type": "application/json"}], "start": 1775411827738, "stop": 1775411827738}], "attachments": [{"name": "cURL", "source": "ad0dc696-e4d2-4fb6-8075-71de8d28d3e4-attachment.txt", "type": "text/plain"}], "start": 1775411827737, "stop": 1775411827738}, {"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": "35d6490f-f641-45fc-8b18-7c3d7ec389a1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "09d7c7d6-e09e-48a2-bfdd-2243f5d04cbb-attachment.json", "type": "application/json"}], "start": 1775411827772, "stop": 1775411827772}, {"name": "Response → 200, trace_id: 840203d6dfa964883af3269f1721bbf0", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8eab1c9-78e9-4223-8f7c-74a5f67effb5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6ba20286-a683-4f6d-a3d0-86052c18c251-attachment.json", "type": "application/json"}], "start": 1775411827772, "stop": 1775411827772}], "attachments": [{"name": "cURL", "source": "7e8be727-b783-44d9-95d4-be51a1fa41d8-attachment.txt", "type": "text/plain"}], "start": 1775411827772, "stop": 1775411827772}, {"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": "9015a84e-8481-4f62-ae0e-d803e1fe0c33-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "22b433de-1441-47b0-a489-8a165e9b7cf2-attachment.json", "type": "application/json"}], "start": 1775411827801, "stop": 1775411827801}, {"name": "Response → 200, trace_id: cb92c7876c8130c017d3d70c77e3ef3c", "status": "passed", "attachments": [{"name": "response.headers", "source": "c8aeb212-7664-4e0d-a466-bf109debc02e-attachment.json", "type": "application/json"}], "start": 1775411827801, "stop": 1775411827801}], "attachments": [{"name": "cURL", "source": "645ea004-529f-400d-a254-e3a2f5f06774-attachment.txt", "type": "text/plain"}], "start": 1775411827801, "stop": 1775411827801}, {"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": "9122be1c-74ba-42be-be00-a5a61e380ef8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2933574c-5cfb-4eba-957e-82b68e761b18-attachment.json", "type": "application/json"}], "start": 1775411827865, "stop": 1775411827865}, {"name": "Response → 200, trace_id: 40bbf00bd91e794422d0d0c8613652b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "7f55d46f-6c50-4683-9823-124604314f50-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8f6198b2-2938-41e1-9ccd-7838eb3f7204-attachment.json", "type": "application/json"}], "start": 1775411827865, "stop": 1775411827865}], "attachments": [{"name": "cURL", "source": "3c632a79-b7d3-4a40-9b49-914fb329b559-attachment.txt", "type": "text/plain"}], "start": 1775411827865, "stop": 1775411827866}], "start": 1775411827804, "stop": 1775411827869}, {"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": "c0334af5-3d11-4b7b-9fd6-45ed1088484a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fc306973-c8f5-4f8d-9a9e-ac5a368c4a31-attachment.json", "type": "application/json"}], "start": 1775411827940, "stop": 1775411827940}, {"name": "Response → 200, trace_id: ed920154640083c65d3c52cb61cac097", "status": "passed", "attachments": [{"name": "response.headers", "source": "c054f246-80c4-4edf-9149-55c50ff59c37-attachment.json", "type": "application/json"}], "start": 1775411827940, "stop": 1775411827940}], "attachments": [{"name": "cURL", "source": "cc940d3c-047b-415b-be49-88043adbae6c-attachment.txt", "type": "text/plain"}], "start": 1775411827940, "stop": 1775411827940}, {"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": "ce60df84-acf3-48dc-8ef4-1e21bb9a4a3a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "58adf6a0-13d7-404a-9429-ce51c3ac61b2-attachment.json", "type": "application/json"}], "start": 1775411827967, "stop": 1775411827967}, {"name": "Response → 200, trace_id: 54ec2cefa20de64069e076da0be3fcad", "status": "passed", "attachments": [{"name": "response.headers", "source": "08fffde0-9def-48a4-a5d1-a6c140e4be66-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a27338f1-63e4-4e91-8b67-e28213573659-attachment.json", "type": "application/json"}], "start": 1775411827967, "stop": 1775411827967}], "attachments": [{"name": "cURL", "source": "d1022fba-daeb-44e3-a176-f70a9f5e00ca-attachment.txt", "type": "text/plain"}], "start": 1775411827967, "stop": 1775411827967}, {"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": "471c93a5-c830-4a7d-994e-b3e7e5de328d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "34b00c05-ae40-41e8-be4f-440de8364b5f-attachment.json", "type": "application/json"}], "start": 1775411828016, "stop": 1775411828016}, {"name": "Response → 200, trace_id: a1ea91df4b8639eebf5e1be7379da057", "status": "passed", "attachments": [{"name": "response.headers", "source": "08f70847-4a05-4498-8988-7b4b41d0e284-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5ba4c765-e03c-4230-ae25-86db40b636e5-attachment.json", "type": "application/json"}], "start": 1775411828016, "stop": 1775411828016}], "attachments": [{"name": "cURL", "source": "cd7d26c3-57f9-4ae0-87f2-c1385618d343-attachment.txt", "type": "text/plain"}], "start": 1775411828016, "stop": 1775411828017}, {"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": "d448d00c-1866-4efb-be23-9ee3f1033b97-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "783bb69d-3f3b-4986-baa4-7192ed64ce92-attachment.json", "type": "application/json"}], "start": 1775411828064, "stop": 1775411828064}, {"name": "Response → 200, trace_id: 5a1d4fe4f4f3491f3872fab990f97df9", "status": "passed", "attachments": [{"name": "response.headers", "source": "c16c41c3-c6f2-4958-bc16-347b2990ac0b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9af2fc7f-ee7e-47af-9f53-cfa025036222-attachment.json", "type": "application/json"}], "start": 1775411828064, "stop": 1775411828064}], "attachments": [{"name": "cURL", "source": "2a3f6de1-daed-4d45-9efa-8c6cbb7ee343-attachment.txt", "type": "text/plain"}], "start": 1775411828064, "stop": 1775411828064}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161048", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "516f189a-ba7c-4e94-88f9-ee78cfc6d8ae-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "09891a66-e271-4d92-92cf-f701010587e9-attachment.json", "type": "application/json"}], "start": 1775411828088, "stop": 1775411828089}, {"name": "Response → 200, trace_id: 9400e05f7178a0e29d5a813d9fcb7d5d", "status": "passed", "attachments": [{"name": "response.headers", "source": "0cdbc261-9d51-443b-96a7-ce80b3d60505-attachment.json", "type": "application/json"}], "start": 1775411828089, "stop": 1775411828089}], "attachments": [{"name": "cURL", "source": "eb21a29d-e701-4069-b4f8-d0bf800617c3-attachment.txt", "type": "text/plain"}], "start": 1775411828088, "stop": 1775411828089}, {"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": "1ae7803d-c984-4f33-b649-bf277233e2c0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f5fefe02-ff6a-447e-8d35-3c689ed748a2-attachment.json", "type": "application/json"}], "start": 1775411828121, "stop": 1775411828121}, {"name": "Response → 200, trace_id: dc3bddbd0e90b2a6726acf11a30fea70", "status": "passed", "attachments": [{"name": "response.headers", "source": "ff9e130f-ca21-42b4-a817-bbeb1f282a5d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "900d9f6a-fd0d-4062-847e-37a50fd88f36-attachment.json", "type": "application/json"}], "start": 1775411828121, "stop": 1775411828121}], "attachments": [{"name": "cURL", "source": "3155f6ba-09e3-4c6d-8c1c-4a57be608183-attachment.txt", "type": "text/plain"}], "start": 1775411828121, "stop": 1775411828121}, {"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": "6c3d8aa6-9b0a-4d95-9bfa-b0f02731bf3b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c5a7c336-646d-4017-adba-34ffab92f92e-attachment.json", "type": "application/json"}], "start": 1775411828196, "stop": 1775411828196}, {"name": "Response → 200, trace_id: 3a357c242461a5735b6bed6cf0ce512f", "status": "passed", "attachments": [{"name": "response.headers", "source": "108f0f4a-34cc-4b96-8d37-2a0cd93638fd-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "872d5c10-229c-4faa-88f4-ac891ea1ad2a-attachment.json", "type": "application/json"}], "start": 1775411828197, "stop": 1775411828197}], "attachments": [{"name": "cURL", "source": "a78946f7-a445-4c02-ad09-96f568b10321-attachment.txt", "type": "text/plain"}], "start": 1775411828196, "stop": 1775411828197}, {"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": "322a8578-24d2-475f-8f16-ad22408bc149-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f216da80-c771-4edf-85ed-77ad6ac6df42-attachment.json", "type": "application/json"}], "start": 1775411828235, "stop": 1775411828235}, {"name": "Response → 200, trace_id: c1bf428de003c09ac2bbf1f72beb8c55", "status": "passed", "attachments": [{"name": "response.headers", "source": "261f66b2-1910-4e97-97e2-90bfe8d0d471-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e20519b5-49f7-43ba-aeb1-ddd405df17f6-attachment.json", "type": "application/json"}], "start": 1775411828235, "stop": 1775411828235}], "attachments": [{"name": "cURL", "source": "93a06e0a-b706-4296-a844-1a6a7ab48c27-attachment.txt", "type": "text/plain"}], "start": 1775411828235, "stop": 1775411828235}, {"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": "1a71d3c0-945b-47e5-8d77-a17e67d61a13-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "45fb811a-d620-4d54-ac52-8af6fd96743e-attachment.json", "type": "application/json"}], "start": 1775411828276, "stop": 1775411828276}, {"name": "Response → 200, trace_id: 5ed786c0306f6a674a22dd36900318e0", "status": "passed", "attachments": [{"name": "response.headers", "source": "50b9594c-465a-4602-aeac-8d9d2dc8f191-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c5b2a2e9-67ad-4ad9-8b31-61bb306a445a-attachment.json", "type": "application/json"}], "start": 1775411828276, "stop": 1775411828276}], "attachments": [{"name": "cURL", "source": "352617da-5479-4461-8a2a-c87c3d72c692-attachment.txt", "type": "text/plain"}], "start": 1775411828276, "stop": 1775411828276}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "789a9eb2-e5c5-4951-8539-e53a273a2e41-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1f7cc1c1-5c20-4c48-8229-e749607c69b4-attachment.json", "type": "application/json"}], "start": 1775411828293, "stop": 1775411828293}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192510&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5858bf2c-ac68-48cf-ae4e-2a07064b08b0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ea76fb88-058e-4a68-964c-95781aadab60-attachment.json", "type": "application/json"}], "start": 1775411828325, "stop": 1775411828325}, {"name": "Response → 200, trace_id: 3ecd273e93c20bdb89082e99fa411af0", "status": "passed", "attachments": [{"name": "response.headers", "source": "61276aba-9544-4955-80a2-ae99b872cb7b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fa76ec72-b767-4e9b-8ee3-12054a1b2828-attachment.txt", "type": "text/plain"}], "start": 1775411828325, "stop": 1775411828325}], "attachments": [{"name": "cURL", "source": "bf0faf42-5292-45e2-9740-954979c2553f-attachment.txt", "type": "text/plain"}], "start": 1775411828325, "stop": 1775411828325}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "a863fe89-1375-4bbf-ad2b-705d25bf8ac5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "16ea16ad-96c9-422e-aa22-f0341f57dc40-attachment.json", "type": "application/json"}], "start": 1775411828334, "stop": 1775411828334}, {"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": "acac0a33-969d-4ec1-adcd-1c6da8f1420b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b1d8d798-fdcd-4c44-b96f-30d1c981f218-attachment.json", "type": "application/json"}], "start": 1775411829383, "stop": 1775411829383}, {"name": "Response → 200, trace_id: ff7b67ed6a68d400dd47d0bb72d62059", "status": "passed", "attachments": [{"name": "response.headers", "source": "f504ef8e-9c1c-4d52-8db5-edbc439d5d29-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c2ec5b0d-ff57-4423-8843-a2fe0d3d3f28-attachment.json", "type": "application/json"}], "start": 1775411829383, "stop": 1775411829384}], "attachments": [{"name": "cURL", "source": "2eccdcd5-7cf2-41c9-8d27-55fe457a9778-attachment.txt", "type": "text/plain"}], "start": 1775411829383, "stop": 1775411829384}, {"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": "ba0be26c-c1b0-4fb3-bb44-37d694f4324f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c42ddb95-532a-48b3-bb2a-5ef4a51a8dc6-attachment.json", "type": "application/json"}], "start": 1775411829411, "stop": 1775411829411}, {"name": "Response → 200, trace_id: 4e188211a8d27c8f5092cb7a7afbf591", "status": "passed", "attachments": [{"name": "response.headers", "source": "0616f5c1-42d1-4f60-a8e3-063cab1a97fd-attachment.json", "type": "application/json"}], "start": 1775411829411, "stop": 1775411829411}], "attachments": [{"name": "cURL", "source": "5ea31eda-2db4-4632-ae07-a73f75f3042b-attachment.txt", "type": "text/plain"}], "start": 1775411829411, "stop": 1775411829411}, {"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": "13a5cf77-eaa2-4da3-984a-a99943a22347-attachment.json", "type": "application/json"}], "start": 1775411829435, "stop": 1775411829435}, {"name": "Response → 200, trace_id: ada2b4de7ed82aa996123bbb88150314", "status": "passed", "attachments": [{"name": "response.headers", "source": "d722fde7-d33f-4d35-ac03-9a68dd18cb92-attachment.json", "type": "application/json"}], "start": 1775411829435, "stop": 1775411829435}], "attachments": [{"name": "cURL", "source": "3c576549-df31-458e-950d-2debd7b9f0c8-attachment.txt", "type": "text/plain"}], "start": 1775411829434, "stop": 1775411829435}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "2a8d1c0b-8217-494e-bd28-cb5e51a46f6c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c9222e45-98f6-4eee-a209-c2c7d7f68e53-attachment.json", "type": "application/json"}], "start": 1775411829451, "stop": 1775411829451}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "ce68aa8c-6031-4d46-ae7a-ecc91899ebba-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "39a368b6-d726-4235-b419-f274075c816a-attachment.json", "type": "application/json"}], "start": 1775411829469, "stop": 1775411829469}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88877&amount=1", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "68458d08-0110-48a4-9756-d418f1f2006c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "17acea21-9579-438e-b95f-c08b0b04d642-attachment.json", "type": "application/json"}], "start": 1775411829790, "stop": 1775411829790}, {"name": "Response → 200, trace_id: 33e8d457f48972798f711a9eab5d71aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "9ccdf8ec-dd37-4e9c-9e93-d7448be36826-attachment.json", "type": "application/json"}], "start": 1775411829790, "stop": 1775411829790}], "attachments": [{"name": "cURL", "source": "93b7383d-c45a-4f07-ab2b-80ce77f854b0-attachment.txt", "type": "text/plain"}], "start": 1775411829790, "stop": 1775411829790}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775411829793, "stop": 1775411829795}], "attachments": [{"name": "log", "source": "7d3217a3-fc30-432e-b08a-11d9c51adad9-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": 1775411813755, "stop": 1775412129808, "uuid": "04bf8070-1fca-4739-a570-2dbc494f2492", "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-c71r5aee"}, {"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"]}