平台订单详情:失败原因过长时不渲染 keyword 链接(护栏测试)

This commit is contained in:
萝卜
2026-03-14 14:41:20 +00:00
parent 41b0e24320
commit 2aba99f6d1
2 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderShowBmpaFailedLongReasonDoesNotRenderKeywordLinkTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->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);
}
}

View File

@@ -0,0 +1,74 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderShowSyncFailedLongReasonDoesNotRenderKeywordLinkTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->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);
}
}