73 lines
2.2 KiB
PHP
73 lines
2.2 KiB
PHP
<?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);
|
|
}
|
|
}
|