{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192709 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 0x7e154c8bfbd0>\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 0x7e154865b050>)\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 = 4278192709, 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: 4278192709 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": "3f46bb81-c721-4389-a13e-4bfb4ec92985-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "363479bb-20cb-49c8-b189-ab250cd480da-attachment.json", "type": "application/json"}], "start": 1775692355994, "stop": 1775692355994}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "4b123a1c-37af-423e-bd06-cb26eedf3226-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "5cfcbcea-7041-4f45-a505-174235f3992f-attachment.json", "type": "application/json"}], "start": 1775692356002, "stop": 1775692356002}], "start": 1775692355994, "stop": 1775692356005}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "d8b5a474-1b1c-4c30-8f7f-4fb6deecafaa-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "76ec260d-cead-4830-a098-86a60cc7be72-attachment.json", "type": "application/json"}], "start": 1775692356014, "stop": 1775692356014}, {"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": "51475322-8e42-4137-8163-ce70eabfbb5b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bd87d732-b2ef-4337-b6d9-1bc498a514ad-attachment.json", "type": "application/json"}], "start": 1775692356045, "stop": 1775692356046}, {"name": "Response → 200, trace_id: c6de06e8e1e53ef36a4580058344eae8", "status": "passed", "attachments": [{"name": "response.headers", "source": "2a3c9cc8-be09-4623-b993-c3c104adde44-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8898d920-0516-49bb-93af-8f46321a5c30-attachment.json", "type": "application/json"}], "start": 1775692356046, "stop": 1775692356046}], "attachments": [{"name": "cURL", "source": "5fdb2d1d-0154-474f-95d9-9c877b3d6f14-attachment.txt", "type": "text/plain"}], "start": 1775692356045, "stop": 1775692356046}], "start": 1775692356015, "stop": 1775692356049}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "d905fd29-08ae-4851-b4c3-8096386991ca-attachment.json", "type": "application/json"}, {"name": "Response", "source": "02223cd4-0927-4328-a065-4afe0bc8b6a0-attachment.json", "type": "application/json"}], "start": 1775692356052, "stop": 1775692356083}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775692356084, "stop": 1775692358448}, {"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": "f61057f9-56c1-4907-b682-ea1020e59ac7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "eea90d7e-a9d6-4117-b4ee-4c74983c3424-attachment.json", "type": "application/json"}], "start": 1775692359827, "stop": 1775692359827}, {"name": "Response → 200, trace_id: eb4b912dec77d98fb224e4e1521927cc", "status": "passed", "attachments": [{"name": "response.headers", "source": "eea34508-8a8b-4366-897d-506a37aae64c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4622c566-a365-476e-966f-c71955a54536-attachment.json", "type": "application/json"}], "start": 1775692359827, "stop": 1775692359827}], "attachments": [{"name": "cURL", "source": "42f67333-cce4-49ec-bb83-62356d5b61ed-attachment.txt", "type": "text/plain"}], "start": 1775692359827, "stop": 1775692359827}, {"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": "10dab5ff-68fe-4b6c-8555-2442157997b0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "26b54430-d135-4203-9dee-2b40826bfc93-attachment.json", "type": "application/json"}], "start": 1775692359871, "stop": 1775692359871}, {"name": "Response → 200, trace_id: 7c425a4ca9b3609997dc9d9fac80b44d", "status": "passed", "attachments": [{"name": "response.headers", "source": "155113e3-09a5-40cd-8a50-f9c866f4ec9b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8241a337-d120-46bb-93a0-99b4024e8257-attachment.json", "type": "application/json"}], "start": 1775692359871, "stop": 1775692359872}], "attachments": [{"name": "cURL", "source": "6270b5ab-9208-4e8b-a9f2-6aa3674edc38-attachment.txt", "type": "text/plain"}], "start": 1775692359871, "stop": 1775692359872}, {"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": "db92023b-8bfe-41b4-8f6c-644ce027422b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5889fcf1-cc93-419a-b1da-524c7169c93b-attachment.json", "type": "application/json"}], "start": 1775692359919, "stop": 1775692359919}, {"name": "Response → 200, trace_id: 55081dfa6658a97e2fbf5f4843f1bbee", "status": "passed", "attachments": [{"name": "response.headers", "source": "574b1b17-c0ec-4058-9830-a06bbf67de4f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8890ae2b-3bdb-46e2-b440-f95920dc3a96-attachment.json", "type": "application/json"}], "start": 1775692359919, "stop": 1775692359919}], "attachments": [{"name": "cURL", "source": "2143ef42-8404-4e9d-8fab-bc95b54aa7a2-attachment.txt", "type": "text/plain"}], "start": 1775692359918, "stop": 1775692359919}, {"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": "e54a3db4-f121-4f91-86b6-c9d8e3bc799a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "da6474ce-d50e-4685-b90d-7c6d7a0520f0-attachment.json", "type": "application/json"}], "start": 1775692359964, "stop": 1775692359964}, {"name": "Response → 200, trace_id: 1241cc748904ff6784eed8793656b729", "status": "passed", "attachments": [{"name": "response.headers", "source": "4bb8b0f1-79a1-44a0-a7a6-7709027d9239-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7404adf5-cc14-46f1-af33-ab621357ba17-attachment.json", "type": "application/json"}], "start": 1775692359964, "stop": 1775692359964}], "attachments": [{"name": "cURL", "source": "a07155db-deb2-44b6-b57b-73722e211598-attachment.txt", "type": "text/plain"}], "start": 1775692359964, "stop": 1775692359964}, {"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": "5d4094dd-dbb4-4be5-b2f0-43fc3ac94d40-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "75c9afc2-f0be-4005-88c1-782fb6eacaa2-attachment.json", "type": "application/json"}], "start": 1775692359996, "stop": 1775692359996}, {"name": "Response → 200, trace_id: 7d1d1e512e281b9d1257dc5c3906c783", "status": "passed", "attachments": [{"name": "response.headers", "source": "ec9521af-88f1-4207-a623-c16203b17259-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8bd8cf60-f2ea-4894-ba5d-3bca0c964cf9-attachment.txt", "type": "text/plain"}], "start": 1775692359996, "stop": 1775692359997}], "attachments": [{"name": "cURL", "source": "3998f5d3-07ea-4e83-b199-a91866b18d30-attachment.txt", "type": "text/plain"}], "start": 1775692359996, "stop": 1775692359997}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492989&pickingTaskKey=ff4b92e7d5298f4656172485c354e8e389aa479ecfa7a43d7a897f09dd262a89", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6b14226a-3429-4d10-b335-960cfde6ac9e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c8d73e62-611e-4cba-9386-5dd93943065d-attachment.json", "type": "application/json"}], "start": 1775692360024, "stop": 1775692360025}, {"name": "Response → 200, trace_id: 876d7333303ba97d097d21d74d94298b", "status": "passed", "attachments": [{"name": "response.headers", "source": "38ccc3fc-d2db-422e-b08c-bd7d3ab5e528-attachment.json", "type": "application/json"}], "start": 1775692360025, "stop": 1775692360025}], "attachments": [{"name": "cURL", "source": "b2e6a604-0a6d-4de8-afe1-d9ba890223da-attachment.txt", "type": "text/plain"}], "start": 1775692360024, "stop": 1775692360025}, {"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": "d31b8bfc-e072-419e-8d0a-3aa028506930-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ed3f0669-7215-4e9d-8be4-f5a4a34ae14d-attachment.json", "type": "application/json"}], "start": 1775692360055, "stop": 1775692360055}, {"name": "Response → 200, trace_id: 48b5a961af5f534c12997cf29fcd8567", "status": "passed", "attachments": [{"name": "response.headers", "source": "a088d433-e7fb-434a-8489-4d2c0fe859ed-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c350e5d3-4dad-461f-98a3-c4d152a88578-attachment.json", "type": "application/json"}], "start": 1775692360055, "stop": 1775692360055}], "attachments": [{"name": "cURL", "source": "ce55b068-6df9-407c-9bd1-af16a52fe8bd-attachment.txt", "type": "text/plain"}], "start": 1775692360055, "stop": 1775692360055}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=ff4b92e7d5298f4656172485c354e8e389aa479ecfa7a43d7a897f09dd262a89&skuId=4100000000000053633&cellBarcode=QA-75692354831608832&cellId=488649", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d6138d99-3930-4262-81e9-d0fab0ffef86-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "448b5203-0b27-4415-b227-30f7767c3737-attachment.json", "type": "application/json"}], "start": 1775692370229, "stop": 1775692370229}, {"name": "Response → 200, trace_id: 2ed89f014e5472540658540702232104", "status": "passed", "attachments": [{"name": "response.headers", "source": "2a71f15d-3216-49c2-a6f2-731afa8eaeb3-attachment.json", "type": "application/json"}], "start": 1775692370229, "stop": 1775692370229}], "attachments": [{"name": "cURL", "source": "4c70c277-e980-4a88-b859-64124d553ee7-attachment.txt", "type": "text/plain"}], "start": 1775692370229, "stop": 1775692370229}, {"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": "9ecc15f2-2e38-4b4d-8fbb-41fb3cd02eb6-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "84795043-108a-4b39-a12a-3d988b0d0c87-attachment.json", "type": "application/json"}], "start": 1775692370263, "stop": 1775692370263}, {"name": "Response → 200, trace_id: 797d64824dd6d1c6725d8b4f27b02fb8", "status": "passed", "attachments": [{"name": "response.headers", "source": "bde3080a-c118-4297-a817-a8b84130ceb3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d8766b2a-a92b-4fc6-aa62-7b2112869ce8-attachment.json", "type": "application/json"}], "start": 1775692370263, "stop": 1775692370264}], "attachments": [{"name": "cURL", "source": "f537cd2f-865f-43d0-8302-3885fd75d15a-attachment.txt", "type": "text/plain"}], "start": 1775692370263, "stop": 1775692370264}, {"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": "5a005225-bd3a-4e0d-b05e-0c3c897128f8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "356c6830-7625-4804-a560-61b560315975-attachment.json", "type": "application/json"}], "start": 1775692370292, "stop": 1775692370292}, {"name": "Response → 200, trace_id: b979d0fc34227b32904fc00872245e35", "status": "passed", "attachments": [{"name": "response.headers", "source": "c60a3f97-5223-49a7-bcff-4921700eb15f-attachment.json", "type": "application/json"}], "start": 1775692370292, "stop": 1775692370292}], "attachments": [{"name": "cURL", "source": "4145014d-f387-4a1f-87f4-d6a8b4e2f1bf-attachment.txt", "type": "text/plain"}], "start": 1775692370292, "stop": 1775692370292}, {"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": "35d902c7-7911-474d-a37e-8dbda3132182-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "752e6c5f-6621-425c-90ad-d25579d67055-attachment.json", "type": "application/json"}], "start": 1775692370376, "stop": 1775692370377}, {"name": "Response → 200, trace_id: f2917fdb9f1aaef15d3f9ee377571f21", "status": "passed", "attachments": [{"name": "response.headers", "source": "1f400ba4-9be8-44b6-9267-1836f9a06fae-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "310f7ae4-404f-4cd1-bb98-bbc3d5c3555b-attachment.json", "type": "application/json"}], "start": 1775692370377, "stop": 1775692370377}], "attachments": [{"name": "cURL", "source": "f24b9c2b-1f93-4eec-8e37-9103eb618c8c-attachment.txt", "type": "text/plain"}], "start": 1775692370376, "stop": 1775692370377}], "start": 1775692370295, "stop": 1775692370381}, {"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": "6c672f25-4a3f-4e8e-b760-a1c92734291a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "679b9bb9-f52b-4bec-ab07-27c802cfdb10-attachment.json", "type": "application/json"}], "start": 1775692370459, "stop": 1775692370460}, {"name": "Response → 200, trace_id: c588caa49267510c4881caa3469ba4cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "d1e4eea4-41b7-4455-a103-c3631701f13b-attachment.json", "type": "application/json"}], "start": 1775692370460, "stop": 1775692370460}], "attachments": [{"name": "cURL", "source": "47521d36-470c-4e35-9a1f-a5da5e3d56df-attachment.txt", "type": "text/plain"}], "start": 1775692370459, "stop": 1775692370460}, {"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": "762ed958-7082-4ca1-b4b1-3eb393823fad-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5a372b8b-76d8-44b2-a837-4b026ff7c25f-attachment.json", "type": "application/json"}], "start": 1775692370487, "stop": 1775692370487}, {"name": "Response → 200, trace_id: 7e594ab8eacfc27343ad2ce801f3af3a", "status": "passed", "attachments": [{"name": "response.headers", "source": "c98fc3e7-3b36-4fcd-84a4-82401697411a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ec35a7ba-2d22-474c-b410-6310f1624b57-attachment.json", "type": "application/json"}], "start": 1775692370487, "stop": 1775692370487}], "attachments": [{"name": "cURL", "source": "5f2855aa-f4e7-411c-9a60-53cdf0a76bc8-attachment.txt", "type": "text/plain"}], "start": 1775692370487, "stop": 1775692370487}, {"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": "ba65cf97-847f-4176-b51e-ef62baf32a57-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "89145361-e93c-4419-b73c-004c10063be6-attachment.json", "type": "application/json"}], "start": 1775692370543, "stop": 1775692370543}, {"name": "Response → 200, trace_id: 3cfe829e06b27d54c00db10fcd0b50bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "732d856a-5174-4387-a503-228b47f2eca6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a3ee5e28-9b8b-4031-b93b-3122350d99cd-attachment.json", "type": "application/json"}], "start": 1775692370543, "stop": 1775692370544}], "attachments": [{"name": "cURL", "source": "164f10e7-aeba-4694-9653-172a5699dee2-attachment.txt", "type": "text/plain"}], "start": 1775692370543, "stop": 1775692370544}, {"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": "285e4bc2-8fe1-4b83-8f7a-4b229f72d6b0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4081a799-b49a-4118-8bf9-fafc0c928ea8-attachment.json", "type": "application/json"}], "start": 1775692370603, "stop": 1775692370603}, {"name": "Response → 200, trace_id: 7564a150612a7cf55afb5789a005e2cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "9b940614-3c6d-4b20-aa7f-c6bb449965d3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e4d931c8-2c1f-40a6-bb7e-6aeaa849e6b6-attachment.json", "type": "application/json"}], "start": 1775692370603, "stop": 1775692370603}], "attachments": [{"name": "cURL", "source": "7010e9ed-19c2-4ed3-9ac1-4dd029b29c05-attachment.txt", "type": "text/plain"}], "start": 1775692370603, "stop": 1775692370603}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161103", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6518456f-74dc-40fe-87e1-b0273a7b9d0b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "20320fc9-a52c-48cb-b4cd-c8c26b239142-attachment.json", "type": "application/json"}], "start": 1775692370627, "stop": 1775692370627}, {"name": "Response → 200, trace_id: f0442d36546d418b632a49730173775f", "status": "passed", "attachments": [{"name": "response.headers", "source": "f6a1d61a-5e74-4745-bc62-e64f286f3bff-attachment.json", "type": "application/json"}], "start": 1775692370627, "stop": 1775692370627}], "attachments": [{"name": "cURL", "source": "ca6ffe26-d20b-4cee-b1ca-55ce3660d601-attachment.txt", "type": "text/plain"}], "start": 1775692370627, "stop": 1775692370627}, {"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": "fa68f6da-9d76-4f49-ac25-4b91542c0d9c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "48fe8a90-188a-46f0-9146-605dc048243a-attachment.json", "type": "application/json"}], "start": 1775692370660, "stop": 1775692370660}, {"name": "Response → 200, trace_id: d2d78052f931835297ab88e7848caf79", "status": "passed", "attachments": [{"name": "response.headers", "source": "27c1536c-a294-4bbf-b6b8-9b1323468fdf-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ba7b7bd0-1b84-4e0e-a337-435fb3662a0a-attachment.json", "type": "application/json"}], "start": 1775692370660, "stop": 1775692370660}], "attachments": [{"name": "cURL", "source": "d1543e4d-b5b7-4107-8b4f-ffa910d2049d-attachment.txt", "type": "text/plain"}], "start": 1775692370660, "stop": 1775692370660}, {"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": "98eb89f2-45ac-41ed-a61c-028f2caeeb22-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8c98fef9-d83f-47ad-82b2-2ca07f7eca98-attachment.json", "type": "application/json"}], "start": 1775692370742, "stop": 1775692370742}, {"name": "Response → 200, trace_id: 38b083445d900de004dd116bd5f9c21f", "status": "passed", "attachments": [{"name": "response.headers", "source": "7a2e1f3e-b39c-4f84-8cff-cd47aa2c76cb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d64d4c04-d5d3-42f5-8589-1aa64f2e17ac-attachment.json", "type": "application/json"}], "start": 1775692370742, "stop": 1775692370742}], "attachments": [{"name": "cURL", "source": "3fbcf5ac-a32e-4619-a11e-28e8c3c85ecd-attachment.txt", "type": "text/plain"}], "start": 1775692370742, "stop": 1775692370743}, {"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": "065f0add-960c-4663-85ba-8de473bbe62a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "83bf508d-2675-435e-b12a-cbb8726789b1-attachment.json", "type": "application/json"}], "start": 1775692370829, "stop": 1775692370829}, {"name": "Response → 200, trace_id: 57fb1e1d0f2d117139081fe98a135ab9", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2db551b-d810-4127-bfc5-f52a1905c04b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b2a8a04b-306b-4f2d-aeb9-f2712c5b6a56-attachment.json", "type": "application/json"}], "start": 1775692370829, "stop": 1775692370830}], "attachments": [{"name": "cURL", "source": "bd43c4cc-38b9-4d23-863e-09f91e584bd6-attachment.txt", "type": "text/plain"}], "start": 1775692370829, "stop": 1775692370830}, {"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": "bae690a0-c692-403e-972f-e679bcb56463-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "caecaf54-83f0-4769-aa71-e77a89ffb3a4-attachment.json", "type": "application/json"}], "start": 1775692370871, "stop": 1775692370871}, {"name": "Response → 200, trace_id: 83d6ead024e5861e863f5314a5783f8c", "status": "passed", "attachments": [{"name": "response.headers", "source": "b71ac167-f724-45ce-bf36-231a35b8f8b7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ffa0dcba-8d61-4bfa-ba5f-76fcc385754d-attachment.json", "type": "application/json"}], "start": 1775692370871, "stop": 1775692370871}], "attachments": [{"name": "cURL", "source": "5473b697-0d19-49a2-92b2-e6cc3113f3d0-attachment.txt", "type": "text/plain"}], "start": 1775692370871, "stop": 1775692370871}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "9f482d31-d03e-4b14-9a9d-f0823af50b11-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "84945039-dd59-40ee-ba40-d16b05340946-attachment.json", "type": "application/json"}], "start": 1775692370887, "stop": 1775692370887}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192709&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c9377951-1083-4cba-bd24-e0a61aaf7781-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f7c43b4e-5501-41cb-af02-18c9c1a2f375-attachment.json", "type": "application/json"}], "start": 1775692370918, "stop": 1775692370918}, {"name": "Response → 200, trace_id: 926f30dd29458b8d33003bc348b12bf5", "status": "passed", "attachments": [{"name": "response.headers", "source": "b0e59624-f1e4-4657-9add-83b7b2a73442-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0c3d01f7-b4cb-4fed-ad71-9d6f92a75dba-attachment.txt", "type": "text/plain"}], "start": 1775692370918, "stop": 1775692370918}], "attachments": [{"name": "cURL", "source": "7c58d583-3796-4715-a1bc-5dc37a42059a-attachment.txt", "type": "text/plain"}], "start": 1775692370918, "stop": 1775692370918}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "6ba54ee5-9d66-41a7-a176-d6ee2014c5e1-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fa1f5875-898c-445a-a6e6-475c9345da56-attachment.json", "type": "application/json"}], "start": 1775692370928, "stop": 1775692370928}, {"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": "62f66255-3616-47a3-8ef5-0df872ed6944-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ad9069ac-3767-4eb2-bf7e-d9be3ce6a41c-attachment.json", "type": "application/json"}], "start": 1775692371981, "stop": 1775692371982}, {"name": "Response → 200, trace_id: a50f1c9f9e89b9fcc095fa2e77024b84", "status": "passed", "attachments": [{"name": "response.headers", "source": "88c032b3-708f-4390-81bf-0e820103fd0c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e8051c13-b5df-4dbd-9342-47725df0b64a-attachment.json", "type": "application/json"}], "start": 1775692371982, "stop": 1775692371982}], "attachments": [{"name": "cURL", "source": "a22a6582-1b52-46d6-aea5-9ed86528ff99-attachment.txt", "type": "text/plain"}], "start": 1775692371981, "stop": 1775692371982}, {"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": "9a9908be-bb00-4b30-92b5-a61fc89d4b57-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0bff714f-f018-4175-9dd3-f47db9cd678c-attachment.json", "type": "application/json"}], "start": 1775692372010, "stop": 1775692372011}, {"name": "Response → 200, trace_id: 0cf887a4c2a7348c24909295d0fef9d6", "status": "passed", "attachments": [{"name": "response.headers", "source": "e7679e4a-9d57-47c3-af04-98492a671d6f-attachment.json", "type": "application/json"}], "start": 1775692372011, "stop": 1775692372011}], "attachments": [{"name": "cURL", "source": "dc198255-c113-488d-b809-872e2e0b602e-attachment.txt", "type": "text/plain"}], "start": 1775692372010, "stop": 1775692372011}, {"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": "882cdfa7-5822-4b39-862d-57f9abcdea50-attachment.json", "type": "application/json"}], "start": 1775692372035, "stop": 1775692372036}, {"name": "Response → 200, trace_id: 2e3126026668505e02209aea198e60d0", "status": "passed", "attachments": [{"name": "response.headers", "source": "a0524f16-d97f-400a-9dd3-82bfb587ee4d-attachment.json", "type": "application/json"}], "start": 1775692372036, "stop": 1775692372036}], "attachments": [{"name": "cURL", "source": "0f836565-064d-4582-a69e-f714c53fe6ec-attachment.txt", "type": "text/plain"}], "start": 1775692372035, "stop": 1775692372036}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "da885285-11d0-4c85-a486-ef42705b6807-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "48aa4af2-fdbe-41be-a54a-c5b8514a971e-attachment.json", "type": "application/json"}], "start": 1775692372050, "stop": 1775692372050}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "5477d199-29bf-42df-9dee-078d46316bf9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "cbf4dcf2-4995-4ffd-9511-28338101a81f-attachment.json", "type": "application/json"}], "start": 1775692372067, "stop": 1775692372067}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88897&amount=1", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c6870b66-3a62-4ce8-960d-d6ad0b4563a5-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2757e251-5855-4bc5-8e84-b4b128f84879-attachment.json", "type": "application/json"}], "start": 1775692372369, "stop": 1775692372369}, {"name": "Response → 200, trace_id: 1468ff8bfc52ad5d28069811cfb4501a", "status": "passed", "attachments": [{"name": "response.headers", "source": "38596efa-89ee-4edd-80cb-6a9fcb630974-attachment.json", "type": "application/json"}], "start": 1775692372369, "stop": 1775692372370}], "attachments": [{"name": "cURL", "source": "057e8d7e-f25a-479f-b4ab-5a3949e3fe1c-attachment.txt", "type": "text/plain"}], "start": 1775692372369, "stop": 1775692372370}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775692372373, "stop": 1775692372375}], "attachments": [{"name": "log", "source": "30d8b79d-d4fc-4bb9-b78b-4b537f6d637b-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": 1775692355978, "stop": 1775692672388, "uuid": "6c308244-dfbe-4cbf-8554-6735a5caa757", "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-7lntf51k"}, {"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"]}