seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_platform_orders_page_should_render_batch_bmpa_mode_and_scope_when_present(): void { $this->loginAsPlatformAdmin(); $merchant = Merchant::query()->firstOrFail(); $plan = Plan::query()->create([ 'code' => 'po_bmpa_mode_scope_plan', 'name' => 'BMPA mode/scope 渲染测试套餐', 'billing_cycle' => 'monthly', 'price' => 10, 'list_price' => 10, 'status' => 'active', 'sort' => 10, 'published_at' => now(), ]); PlatformOrder::query()->create([ 'merchant_id' => $merchant->id, 'plan_id' => $plan->id, 'order_no' => 'PO_BMPA_MODE_SCOPE_0001', 'order_type' => 'new_purchase', 'status' => 'pending', 'payment_status' => 'unpaid', 'plan_name' => $plan->name, 'billing_cycle' => $plan->billing_cycle, 'period_months' => 1, 'quantity' => 1, 'payable_amount' => 10, 'paid_amount' => 0, 'placed_at' => now()->subMinutes(10), 'meta' => [ 'batch_mark_paid_and_activate' => [ 'at' => now()->toDateTimeString(), 'admin_id' => 1, 'scope' => 'filtered', 'mode' => 'queue', 'run_id' => 'BMPA_TEST_MODE_SCOPE_0001', ], ], ]); $this->get('/admin/platform-orders') ->assertOk() ->assertSee('范围:筛选;方式:队列'); } }