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); + } +}