{"name": "test_no_goods_reject_part_picking_with_rereservation[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192664 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 0x7426003bbb50>\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 0x7425fc091110>)\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 = 4278192664, 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: 4278192664 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": "2b74376b-a284-4ada-a171-ac204fe4b968-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "48fb1330-97b6-49ab-b5c8-ab2fff296661-attachment.json", "type": "application/json"}], "start": 1775605938345, "stop": 1775605938345}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "e3055c90-044f-4125-99c1-a6b7907029ca-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "1650c964-b8bb-432c-b5f8-a79d00e8c6ea-attachment.json", "type": "application/json"}], "start": 1775605938353, "stop": 1775605938353}], "start": 1775605938345, "stop": 1775605938357}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "82155c5e-a69a-4fb2-b06d-53e91c4abb94-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "bbce83da-0dff-4a27-8fb6-fc3ef871b170-attachment.json", "type": "application/json"}], "start": 1775605938365, "stop": 1775605938365}, {"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": "e68e85a2-819b-4763-87ad-45984e10c252-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "53134d79-bb6c-4ca1-94fc-28937a250f2e-attachment.json", "type": "application/json"}], "start": 1775605938395, "stop": 1775605938395}, {"name": "Response → 200, trace_id: 5763f2be70e97afafe78d4faed5776a4", "status": "passed", "attachments": [{"name": "response.headers", "source": "a93480df-3acd-45fe-92b6-4215ef229343-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b04b1484-764a-48d8-9ab4-ffd8942eb0ce-attachment.json", "type": "application/json"}], "start": 1775605938395, "stop": 1775605938395}], "attachments": [{"name": "cURL", "source": "de9410fd-f750-42d0-b1d4-6c82e7a7ce4f-attachment.txt", "type": "text/plain"}], "start": 1775605938395, "stop": 1775605938395}], "start": 1775605938366, "stop": 1775605938398}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "b28d85ea-7c0b-401c-bfe4-47d3fbe47e4a-attachment.json", "type": "application/json"}, {"name": "Response", "source": "8e217209-10a1-4b3e-9738-5e8fdbf171f8-attachment.json", "type": "application/json"}], "start": 1775605938401, "stop": 1775605938431}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775605938431, "stop": 1775605940807}, {"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": "68bad918-5edb-4124-b797-4db6217843f8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2a1ddb90-836f-400b-b229-5dee67d6ee86-attachment.json", "type": "application/json"}], "start": 1775605941861, "stop": 1775605941861}, {"name": "Response → 200, trace_id: ad8c20fe54e3ac8ee331d33809eddf1f", "status": "passed", "attachments": [{"name": "response.headers", "source": "53db48aa-4047-4b25-b77e-c59509a5d631-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "876d2a85-9e7d-4f7f-a1e9-61e3b3446b16-attachment.json", "type": "application/json"}], "start": 1775605941861, "stop": 1775605941861}], "attachments": [{"name": "cURL", "source": "d1766961-d0a6-4d1a-a173-e81408c6f23c-attachment.txt", "type": "text/plain"}], "start": 1775605941861, "stop": 1775605941862}, {"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": "fbd69c98-50da-41f2-9c1c-cddbc9486279-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fa027937-c28c-4b6d-b2a4-28df61e45c2c-attachment.json", "type": "application/json"}], "start": 1775605941905, "stop": 1775605941905}, {"name": "Response → 200, trace_id: 77d2cc1948d67015b59e39e01640f31c", "status": "passed", "attachments": [{"name": "response.headers", "source": "d8376860-891c-4021-a9c0-f5b843dac62f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1d84fc61-e29f-401e-8104-a473a292c9e7-attachment.json", "type": "application/json"}], "start": 1775605941905, "stop": 1775605941905}], "attachments": [{"name": "cURL", "source": "ea320361-9a34-49b3-b630-50ed48614647-attachment.txt", "type": "text/plain"}], "start": 1775605941905, "stop": 1775605941905}, {"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": "d28de10c-7f6f-4ad3-a894-cae148f43472-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9d16c297-5b00-45fd-9be9-5f325cb8e0f0-attachment.json", "type": "application/json"}], "start": 1775605941951, "stop": 1775605941952}, {"name": "Response → 200, trace_id: d84d9848611a58fa19cbdd5badcf3fde", "status": "passed", "attachments": [{"name": "response.headers", "source": "7dd0f25c-01c5-44ba-a2a2-07b31e424cde-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3096df9a-c1a2-44a2-83ee-3d7f07cb3246-attachment.json", "type": "application/json"}], "start": 1775605941952, "stop": 1775605941952}], "attachments": [{"name": "cURL", "source": "460c8caa-e237-4000-b6b6-fa30a3ec824a-attachment.txt", "type": "text/plain"}], "start": 1775605941951, "stop": 1775605941952}, {"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": "1ac15ac5-7f9f-4fb8-9a07-9d08e8d50630-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a8affeeb-530b-4546-8ae8-cd7225451433-attachment.json", "type": "application/json"}], "start": 1775605941996, "stop": 1775605941996}, {"name": "Response → 200, trace_id: 839e91ae947ba427c4eb97f021d2ccf4", "status": "passed", "attachments": [{"name": "response.headers", "source": "75b2fe96-6483-49a5-8e6b-069bef1388d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d631539a-8c72-42d1-a6be-cff84ef7cae6-attachment.json", "type": "application/json"}], "start": 1775605941996, "stop": 1775605941996}], "attachments": [{"name": "cURL", "source": "4a0215ba-2f00-4a7c-af63-d3007a43f81d-attachment.txt", "type": "text/plain"}], "start": 1775605941996, "stop": 1775605941996}, {"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": "e828d5bc-f146-4f41-a836-02d66e371079-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b52258b7-2d58-4440-9218-54ad120e8ec6-attachment.json", "type": "application/json"}], "start": 1775605942024, "stop": 1775605942024}, {"name": "Response → 200, trace_id: 386b74e52d52eb694d3ddadef29b736c", "status": "passed", "attachments": [{"name": "response.headers", "source": "093f5cc2-aaba-42f4-82c1-7e489725f645-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "114f9bbb-60d0-4f4c-899d-0ef5e704f297-attachment.txt", "type": "text/plain"}], "start": 1775605942024, "stop": 1775605942024}], "attachments": [{"name": "cURL", "source": "1857928b-909a-4f18-a826-dd945c21e7f6-attachment.txt", "type": "text/plain"}], "start": 1775605942024, "stop": 1775605942024}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492959&pickingTaskKey=e373a0c4994e8d98a23401008e97726ee6acfe27eac2634df5ef37fab3ee701b", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "24505dfd-da9b-4437-9f1a-fdb3ffa1402c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4a2819c5-66ec-49bc-8669-0512b88bca82-attachment.json", "type": "application/json"}], "start": 1775605942050, "stop": 1775605942050}, {"name": "Response → 200, trace_id: 71e5bc0490fa4b8ded3792081ca2a12b", "status": "passed", "attachments": [{"name": "response.headers", "source": "7af047c2-57f9-4274-84cf-75714ee4ddd1-attachment.json", "type": "application/json"}], "start": 1775605942050, "stop": 1775605942050}], "attachments": [{"name": "cURL", "source": "1c55a537-955d-403c-8561-dd52cd1b9795-attachment.txt", "type": "text/plain"}], "start": 1775605942050, "stop": 1775605942050}, {"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": "7d1c05c6-4798-4e04-9a74-52dd1638e476-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7824f870-6060-4f9c-b564-393612c142a4-attachment.json", "type": "application/json"}], "start": 1775605942079, "stop": 1775605942079}, {"name": "Response → 200, trace_id: 2747de642ff31c88db66729dbbd4f01f", "status": "passed", "attachments": [{"name": "response.headers", "source": "3160f2b1-2f51-408c-8862-6e5d21ac4be5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "30b8e6bd-d1f2-4912-b841-b8735c26ede6-attachment.json", "type": "application/json"}], "start": 1775605942079, "stop": 1775605942080}], "attachments": [{"name": "cURL", "source": "15836c33-423e-4257-9299-6ed7f295bdeb-attachment.txt", "type": "text/plain"}], "start": 1775605942079, "stop": 1775605942080}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=e373a0c4994e8d98a23401008e97726ee6acfe27eac2634df5ef37fab3ee701b&skuId=4100000000000053497&cellBarcode=QA-75605937187401216&cellId=488559", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dd614721-c574-4a5b-bf5c-9f30e25cea2c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "da505eea-a017-4e07-b557-cf3f9241a196-attachment.json", "type": "application/json"}], "start": 1775605952223, "stop": 1775605952223}, {"name": "Response → 200, trace_id: 0e12c2332b099206713e29a107c25c41", "status": "passed", "attachments": [{"name": "response.headers", "source": "a9fb7897-2b74-4b49-a395-aa95ae65023f-attachment.json", "type": "application/json"}], "start": 1775605952223, "stop": 1775605952223}], "attachments": [{"name": "cURL", "source": "b12217ff-6672-45c3-b03f-4a2f811b2153-attachment.txt", "type": "text/plain"}], "start": 1775605952223, "stop": 1775605952223}, {"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": "8efb0d84-f96b-4937-b275-385dc903f2be-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "94900868-5b42-42ea-881f-7218045d17da-attachment.json", "type": "application/json"}], "start": 1775605952257, "stop": 1775605952257}, {"name": "Response → 200, trace_id: 9ff256e2885fc38a8379012858dcf1b3", "status": "passed", "attachments": [{"name": "response.headers", "source": "29bfc2c4-edcb-43fb-b82e-9fbf7d931e15-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c93c9202-191c-4459-9173-29a6ef5cf436-attachment.json", "type": "application/json"}], "start": 1775605952257, "stop": 1775605952257}], "attachments": [{"name": "cURL", "source": "8765dff4-dcf7-48fa-bfa9-822c8be9e221-attachment.txt", "type": "text/plain"}], "start": 1775605952257, "stop": 1775605952257}, {"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": "2f407351-1059-488b-9a25-f6be1d9288bf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "46281f05-937e-4a15-bdda-aafde8651855-attachment.json", "type": "application/json"}], "start": 1775605952286, "stop": 1775605952286}, {"name": "Response → 200, trace_id: cf83c3a1270ef49ddc78a0b4c599adc4", "status": "passed", "attachments": [{"name": "response.headers", "source": "80ddc5a7-61fc-4a54-9df0-8a41ca81d337-attachment.json", "type": "application/json"}], "start": 1775605952287, "stop": 1775605952287}], "attachments": [{"name": "cURL", "source": "729f6e9a-51a3-47be-bb17-e7ae8e900db0-attachment.txt", "type": "text/plain"}], "start": 1775605952286, "stop": 1775605952287}, {"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": "fd9bc000-f49a-4e22-8658-11152ceee9a5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4f7ec136-7490-4840-9847-ab20b67c9d33-attachment.json", "type": "application/json"}], "start": 1775605952372, "stop": 1775605952373}, {"name": "Response → 200, trace_id: 88be2b62d381e676a05b4935d2015f76", "status": "passed", "attachments": [{"name": "response.headers", "source": "87ca496e-4fe7-461f-89ca-694a356e366e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4e62fa3c-6248-40f1-ab9f-fcd5a0cba41e-attachment.json", "type": "application/json"}], "start": 1775605952373, "stop": 1775605952373}], "attachments": [{"name": "cURL", "source": "379916dc-3a82-4f53-936b-3c91771ae2aa-attachment.txt", "type": "text/plain"}], "start": 1775605952372, "stop": 1775605952373}], "start": 1775605952289, "stop": 1775605952376}, {"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": "cb5c3be9-5746-44f2-b9c7-874efc022c11-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fb14a657-8d1b-45f3-a15f-411db1c43fe5-attachment.json", "type": "application/json"}], "start": 1775605952458, "stop": 1775605952459}, {"name": "Response → 200, trace_id: de8788ae253617790dcd59c15167a0bc", "status": "passed", "attachments": [{"name": "response.headers", "source": "ae518f4f-fe14-434b-b740-4f59566837df-attachment.json", "type": "application/json"}], "start": 1775605952459, "stop": 1775605952459}], "attachments": [{"name": "cURL", "source": "8b9b41db-c4e5-475a-bb89-aa6becea1a43-attachment.txt", "type": "text/plain"}], "start": 1775605952458, "stop": 1775605952459}, {"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": "d4032618-ade0-4bbb-be14-5bfe36268f1a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1533279a-a889-49d3-bf92-ec132f8b771e-attachment.json", "type": "application/json"}], "start": 1775605952483, "stop": 1775605952483}, {"name": "Response → 200, trace_id: 8013c4dc1c27201a62e19ca1debf2793", "status": "passed", "attachments": [{"name": "response.headers", "source": "ed4305c8-f043-4c73-8ef4-cda4e0025849-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ceb555c7-ba37-447c-97a7-da22ca0cef55-attachment.json", "type": "application/json"}], "start": 1775605952483, "stop": 1775605952483}], "attachments": [{"name": "cURL", "source": "978cc358-cddc-4659-9850-8eb9ea5207ea-attachment.txt", "type": "text/plain"}], "start": 1775605952482, "stop": 1775605952483}, {"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": "63b8273d-086a-4fea-b7d3-f0191e379c95-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "523d6acf-bb76-423a-8f15-ae2284cf07c7-attachment.json", "type": "application/json"}], "start": 1775605952537, "stop": 1775605952537}, {"name": "Response → 200, trace_id: 9ed621df1db195f0aad4e404c908d6bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ba2bbd6-ce07-4760-9c81-21fbccb0a1d4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "37c6ac5d-edb0-4998-8df2-0781bf057ddd-attachment.json", "type": "application/json"}], "start": 1775605952537, "stop": 1775605952537}], "attachments": [{"name": "cURL", "source": "cd018703-3513-433b-acf1-dc7bad75e464-attachment.txt", "type": "text/plain"}], "start": 1775605952537, "stop": 1775605952537}, {"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": "a7b89b0d-a1f6-4257-b6da-aae1be758415-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4ff2614e-dc5d-4078-bb73-0308ac9553c4-attachment.json", "type": "application/json"}], "start": 1775605952595, "stop": 1775605952595}, {"name": "Response → 200, trace_id: b9ba255fc554aec3a7d3de86b8b52866", "status": "passed", "attachments": [{"name": "response.headers", "source": "3a40f565-7e7a-4cfd-beac-f28c8de00f92-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6c0bbbfe-2301-41a8-a5c2-d44f2d5ca88f-attachment.json", "type": "application/json"}], "start": 1775605952595, "stop": 1775605952595}], "attachments": [{"name": "cURL", "source": "3a1b2547-4a12-46a1-abb4-b329ed6048b0-attachment.txt", "type": "text/plain"}], "start": 1775605952595, "stop": 1775605952595}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161092", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "315727e0-135c-464a-a6e9-56bace2fe19a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "dd6c62d8-d5f7-440f-8b79-a319810ab63f-attachment.json", "type": "application/json"}], "start": 1775605952619, "stop": 1775605952619}, {"name": "Response → 200, trace_id: b9eb1470ffa7ce511a31a6835b558f84", "status": "passed", "attachments": [{"name": "response.headers", "source": "dc400e97-4175-48d6-afe0-be335841b305-attachment.json", "type": "application/json"}], "start": 1775605952619, "stop": 1775605952619}], "attachments": [{"name": "cURL", "source": "efd850f2-0eec-4dac-811a-ff7b286f1fa5-attachment.txt", "type": "text/plain"}], "start": 1775605952619, "stop": 1775605952619}, {"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": "a3808450-aa29-4773-994d-98f4f378c2fc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5bf95fb9-7ae4-4dca-879a-d3de47cf5318-attachment.json", "type": "application/json"}], "start": 1775605952649, "stop": 1775605952649}, {"name": "Response → 200, trace_id: cbd2de114a448ee9e6c1957ab41373f2", "status": "passed", "attachments": [{"name": "response.headers", "source": "54d7495c-2875-439f-ad7a-26c7aafc2596-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "af6db383-11c3-40e5-b6fb-6d63e930f127-attachment.json", "type": "application/json"}], "start": 1775605952649, "stop": 1775605952650}], "attachments": [{"name": "cURL", "source": "a331448b-e3b7-4d50-b446-8215ef8b359e-attachment.txt", "type": "text/plain"}], "start": 1775605952649, "stop": 1775605952650}, {"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": "e5451089-9079-4aac-9133-ea763894e660-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c0c9b711-8bf2-4b17-b7cc-41ea5c0e3763-attachment.json", "type": "application/json"}], "start": 1775605952728, "stop": 1775605952728}, {"name": "Response → 200, trace_id: f0dcf625bfe681321d5100209da38bcc", "status": "passed", "attachments": [{"name": "response.headers", "source": "13581df1-ab82-4916-aab5-952b8ea1f1a1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2491fa75-f62a-4715-a28e-63e0497f9377-attachment.json", "type": "application/json"}], "start": 1775605952728, "stop": 1775605952729}], "attachments": [{"name": "cURL", "source": "b17cec4b-d31c-4c80-bb1a-e53e757e129a-attachment.txt", "type": "text/plain"}], "start": 1775605952728, "stop": 1775605952729}, {"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": "3bc2a7aa-86fe-47e6-a5c1-20cd4dc4c5bd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5657e737-dd08-40e3-b361-1b4265dd98f7-attachment.json", "type": "application/json"}], "start": 1775605952767, "stop": 1775605952767}, {"name": "Response → 200, trace_id: dbaa6f1bb38325457a77ae213bcf312d", "status": "passed", "attachments": [{"name": "response.headers", "source": "e3d8284a-01a4-429e-b6f5-98638601eae2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "61255eff-023e-45af-b6eb-0fd94a6f80aa-attachment.json", "type": "application/json"}], "start": 1775605952767, "stop": 1775605952767}], "attachments": [{"name": "cURL", "source": "880f0902-5e30-412b-a500-6463d0bb4e45-attachment.txt", "type": "text/plain"}], "start": 1775605952767, "stop": 1775605952767}, {"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": "b7793457-9690-4411-97c1-6d18f92c4e97-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "269e1394-5275-4ff2-b9c6-b19b19d10478-attachment.json", "type": "application/json"}], "start": 1775605952809, "stop": 1775605952809}, {"name": "Response → 200, trace_id: 6c1e6db861ff03644d56a83d76762511", "status": "passed", "attachments": [{"name": "response.headers", "source": "b2c750d7-f2ac-4c8a-9bf8-acc9e213c933-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "208e3520-1e7b-4a70-94a5-0e1b40f49e40-attachment.json", "type": "application/json"}], "start": 1775605952809, "stop": 1775605952809}], "attachments": [{"name": "cURL", "source": "9ed0731f-f09f-47ac-b54d-354fe6ea17e1-attachment.txt", "type": "text/plain"}], "start": 1775605952809, "stop": 1775605952809}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "473cd401-e871-4d61-be1e-9844a0ba4164-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c828e393-b030-46bc-862f-60322f9fbac7-attachment.json", "type": "application/json"}], "start": 1775605952825, "stop": 1775605952826}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192664&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "21da83a2-bd65-405a-a2ab-7aca16693c4a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a3b0d995-f06c-429b-8f67-782c56b6fd6b-attachment.json", "type": "application/json"}], "start": 1775605952855, "stop": 1775605952856}, {"name": "Response → 200, trace_id: 19e079a3ceccbaa7fb63dadbde69fea4", "status": "passed", "attachments": [{"name": "response.headers", "source": "d6039d2c-6b1d-49dd-9918-73f4919ec44d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8813ad23-4b0c-4af4-8794-ebb8578c0a7a-attachment.txt", "type": "text/plain"}], "start": 1775605952856, "stop": 1775605952856}], "attachments": [{"name": "cURL", "source": "d5e53c6f-bb8a-4677-b0cd-a87fe3d44f41-attachment.txt", "type": "text/plain"}], "start": 1775605952855, "stop": 1775605952856}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "5b9173e1-fc41-4bb8-8524-466c3d7d5d21-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "09142722-287a-473f-a7cc-afc50134f8b0-attachment.json", "type": "application/json"}], "start": 1775605952867, "stop": 1775605952868}, {"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": "c85dbb71-37be-4273-9c9b-df4a6760d45e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "be21bd75-de5c-408d-8c38-e45740b16879-attachment.json", "type": "application/json"}], "start": 1775605953912, "stop": 1775605953912}, {"name": "Response → 200, trace_id: c5aab3a451924ee13870d959906f5d95", "status": "passed", "attachments": [{"name": "response.headers", "source": "c9961960-5f4a-4d3b-bf7f-c91fa28397bc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "59b4e7d5-8a18-4ae1-a3c7-ea16379f0fa9-attachment.json", "type": "application/json"}], "start": 1775605953912, "stop": 1775605953912}], "attachments": [{"name": "cURL", "source": "34b6e6e0-c668-48bc-8b19-a0a8fa115f84-attachment.txt", "type": "text/plain"}], "start": 1775605953912, "stop": 1775605953912}, {"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": "285d8a2d-0313-4396-9c1e-61284416fc8f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8ca21561-627f-474f-a30f-cf9819a4c5ea-attachment.json", "type": "application/json"}], "start": 1775605953935, "stop": 1775605953936}, {"name": "Response → 200, trace_id: 05f53c0a0a3ca95f1173deb4c26501aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "ef62e00b-c563-4320-aa62-3c8a6000ad8f-attachment.json", "type": "application/json"}], "start": 1775605953936, "stop": 1775605953936}], "attachments": [{"name": "cURL", "source": "1ef36338-0574-47f7-b599-9bd68b3b6ea0-attachment.txt", "type": "text/plain"}], "start": 1775605953935, "stop": 1775605953936}, {"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": "1ebbc04a-62fc-4a21-8120-373875d5d186-attachment.json", "type": "application/json"}], "start": 1775605953957, "stop": 1775605953958}, {"name": "Response → 200, trace_id: ce73d057b3a688bad2e4b219d19af82a", "status": "passed", "attachments": [{"name": "response.headers", "source": "456b0e18-8054-49b4-ba80-e59e0b2f75d5-attachment.json", "type": "application/json"}], "start": 1775605953958, "stop": 1775605953958}], "attachments": [{"name": "cURL", "source": "7667bc51-73d2-4e18-b40c-51697de25999-attachment.txt", "type": "text/plain"}], "start": 1775605953957, "stop": 1775605953958}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "5c898302-ee9b-4ad2-a958-2d4b49922358-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "34daf1f1-8d23-414e-a85a-5a0761c073d1-attachment.json", "type": "application/json"}], "start": 1775605953970, "stop": 1775605953971}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "cd76a109-28ac-4bd4-805b-dcc834988d4c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d56de994-c026-4b95-bc57-da1c5eaf38c7-attachment.json", "type": "application/json"}], "start": 1775605953988, "stop": 1775605953988}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/reject?id=88893&amount=2", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "918f37bd-8961-4d4c-ad0a-98269fbee844-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d2be8338-f965-4345-a5b2-18862484e5ae-attachment.json", "type": "application/json"}], "start": 1775605954302, "stop": 1775605954303}, {"name": "Response → 200, trace_id: 1a024daf4af07e6407be9f839bc89457", "status": "passed", "attachments": [{"name": "response.headers", "source": "bad1ba2d-2677-434d-b84a-43faabacc371-attachment.json", "type": "application/json"}], "start": 1775605954303, "stop": 1775605954303}], "attachments": [{"name": "cURL", "source": "f5983a04-0c18-4cfc-ab3b-dab81f7d7992-attachment.txt", "type": "text/plain"}], "start": 1775605954302, "stop": 1775605954303}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775605954305, "stop": 1775605954308}], "attachments": [{"name": "log", "source": "278878b9-eb72-422f-b349-3f15b8ade50f-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": 1775605938327, "stop": 1775606254321, "uuid": "0907e5ca-f143-4409-8816-4e84c1a8060a", "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-89wqs7t9"}, {"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"]}