From 2aba99f6d11804ad93f52ff3ca2367976dd6f433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Sat, 14 Mar 2026 14:41:20 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=EF=BC=9A=E5=A4=B1=E8=B4=A5=E5=8E=9F=E5=9B=A0=E8=BF=87?= =?UTF-8?q?=E9=95=BF=E6=97=B6=E4=B8=8D=E6=B8=B2=E6=9F=93=20keyword=20?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=EF=BC=88=E6=8A=A4=E6=A0=8F=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...LongReasonDoesNotRenderKeywordLinkTest.php | 72 ++++++++++++++++++ ...LongReasonDoesNotRenderKeywordLinkTest.php | 74 +++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderShowBmpaFailedLongReasonDoesNotRenderKeywordLinkTest.php create mode 100644 tests/Feature/AdminPlatformOrderShowSyncFailedLongReasonDoesNotRenderKeywordLinkTest.php diff --git a/tests/Feature/AdminPlatformOrderShowBmpaFailedLongReasonDoesNotRenderKeywordLinkTest.php b/tests/Feature/AdminPlatformOrderShowBmpaFailedLongReasonDoesNotRenderKeywordLinkTest.php new file mode 100644 index 0000000..d913f81 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderShowBmpaFailedLongReasonDoesNotRenderKeywordLinkTest.php @@ -0,0 +1,72 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_show_page_does_not_render_bmpa_error_keyword_link_when_reason_too_long(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'show_bmpa_long_reason_test', + 'name' => '详情页BMPA失败原因过长护栏测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 9, + 'list_price' => 9, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + $longReason = str_repeat('A', 120); + + $order = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_SHOW_BMPA_LONG_REASON_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' => 9, + 'paid_amount' => 0, + 'placed_at' => now(), + 'meta' => [ + 'batch_mark_paid_and_activate_error' => [ + 'message' => $longReason, + 'at' => now()->subMinutes(2)->toDateTimeString(), + 'admin_id' => 1, + ], + ], + ]); + + $res = $this->get('/admin/platform-orders/' . $order->id); + $res->assertOk(); + + $res->assertDontSee('bmpa_error_keyword=', false); + $res->assertSee('原因过长,请复制到列表页筛选框', false); + } +} diff --git a/tests/Feature/AdminPlatformOrderShowSyncFailedLongReasonDoesNotRenderKeywordLinkTest.php b/tests/Feature/AdminPlatformOrderShowSyncFailedLongReasonDoesNotRenderKeywordLinkTest.php new file mode 100644 index 0000000..a231471 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderShowSyncFailedLongReasonDoesNotRenderKeywordLinkTest.php @@ -0,0 +1,74 @@ +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); + } +}