90 lines
3.3 KiB
PHP
90 lines
3.3 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 AdminPlatformOrderSyncFailedReasonTop5RetryLinkTest 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_sync_failed_reason_top5_shows_retry_link_to_syncable_only_scope(): void
|
||
{
|
||
$this->loginAsPlatformAdmin();
|
||
|
||
$merchant = Merchant::query()->firstOrFail();
|
||
$plan = Plan::query()->create([
|
||
'code' => 'sync_failed_reason_retry_link_test',
|
||
'name' => '同步失败原因重试链接测试套餐',
|
||
'billing_cycle' => 'monthly',
|
||
'price' => 10,
|
||
'list_price' => 10,
|
||
'status' => 'active',
|
||
'sort' => 10,
|
||
'published_at' => now(),
|
||
]);
|
||
|
||
// 构造一条失败原因数据,触发 TOP5
|
||
PlatformOrder::query()->create([
|
||
'merchant_id' => $merchant->id,
|
||
'plan_id' => $plan->id,
|
||
'order_no' => 'PO_SYNC_FAILED_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' => 10,
|
||
'paid_amount' => 10,
|
||
'placed_at' => now(),
|
||
'paid_at' => now(),
|
||
'activated_at' => now(),
|
||
'meta' => [
|
||
'subscription_activation_error' => [
|
||
'message' => '模拟失败原因TOP5',
|
||
'at' => now()->toDateTimeString(),
|
||
'admin_id' => 1,
|
||
],
|
||
],
|
||
]);
|
||
|
||
// 先模拟:从“只看同步失败(fail_only=1)”进入
|
||
$page = $this->get('/admin/platform-orders?fail_only=1');
|
||
$page->assertOk();
|
||
|
||
// 失败原因链接存在
|
||
$page->assertSee('sync_status=failed', false);
|
||
$page->assertSee('sync_error_keyword=', false);
|
||
|
||
// “切到可同步重试”链接存在:
|
||
// - 应包含 syncable_only=1
|
||
// - 且必须清掉 fail_only=1 与 sync_status=failed(注意:页面其它区域可能仍包含 fail_only=1&syncable_only=1 的统计链接,因此这里要针对“重试链接”本身断言)
|
||
$page->assertSee('切到可同步重试');
|
||
|
||
$retryHref = '/admin/platform-orders?sync_error_keyword=' . urlencode('模拟失败原因TOP5') . '&sync_status=unsynced&syncable_only=1';
|
||
$page->assertSee($retryHref, false);
|
||
|
||
// 不应出现“带 fail_only=1 的重试链接”
|
||
$page->assertDontSee('/admin/platform-orders?fail_only=1&sync_error_keyword=' . urlencode('模拟失败原因TOP5') . '&sync_status=unsynced&syncable_only=1', false);
|
||
|
||
// 也不应出现“sync_status=failed + syncable_only=1”的冲突组合
|
||
$page->assertDontSee('sync_status=failed&syncable_only=1', false);
|
||
}
|
||
}
|