seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_show_page_does_not_render_sync_error_keyword_link_when_reason_too_long(): void { $this->loginAsPlatformAdmin(); $merchant = Merchant::query()->firstOrFail(); $plan = Plan::query()->create([ 'code' => 'show_sync_long_reason_test', 'name' => '详情页同步失败原因过长护栏测试套餐', 'billing_cycle' => 'monthly', 'price' => 9, 'list_price' => 9, 'status' => 'active', 'sort' => 10, 'published_at' => now(), ]); $longReason = str_repeat('B', 120); $order = PlatformOrder::query()->create([ 'merchant_id' => $merchant->id, 'plan_id' => $plan->id, 'order_no' => 'PO_SHOW_SYNC_LONG_REASON_0001', 'order_type' => 'new_purchase', 'status' => 'activated', 'payment_status' => 'paid', 'plan_name' => $plan->name, 'billing_cycle' => $plan->billing_cycle, 'period_months' => 1, 'quantity' => 1, 'payable_amount' => 9, 'paid_amount' => 9, 'placed_at' => now(), 'paid_at' => now(), 'activated_at' => now(), 'meta' => [ 'subscription_activation_error' => [ 'message' => $longReason, 'at' => now()->subMinutes(2)->toDateTimeString(), 'admin_id' => 1, ], ], ]); $res = $this->get('/admin/platform-orders/' . $order->id); $res->assertOk(); $res->assertDontSee('sync_error_keyword=', false); $res->assertSee('原因过长,请复制到列表页筛选框', false); } }