feat(admin): 平台订单支持按同步失败原因关键词筛选并联动订阅失败原因跳转
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
<?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 AdminPlatformOrderSyncErrorKeywordFilterTest 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_platform_orders_page_can_filter_by_sync_error_keyword(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$merchant = Merchant::query()->firstOrFail();
|
||||
$plan = Plan::query()->create([
|
||||
'code' => 'sync_error_kw_test',
|
||||
'name' => '同步失败关键词测试',
|
||||
'billing_cycle' => 'monthly',
|
||||
'price' => 10,
|
||||
'list_price' => 10,
|
||||
'status' => 'active',
|
||||
'sort' => 10,
|
||||
'published_at' => now(),
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO_ERR_KW_0001',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => $plan->name,
|
||||
'billing_cycle' => $plan->billing_cycle,
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 10,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(2),
|
||||
'meta' => [
|
||||
'subscription_activation_error' => [
|
||||
'message' => '模拟失败:站点已过期',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO_ERR_KW_0002',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => $plan->name,
|
||||
'billing_cycle' => $plan->billing_cycle,
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 10,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(1),
|
||||
'meta' => [
|
||||
'subscription_activation_error' => [
|
||||
'message' => '余额不足',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?sync_error_keyword=' . urlencode('已过期'))
|
||||
->assertOk()
|
||||
->assertSee('PO_ERR_KW_0001')
|
||||
->assertDontSee('PO_ERR_KW_0002');
|
||||
|
||||
// 未命中关键词:应不展示任何一条
|
||||
$this->get('/admin/platform-orders?sync_error_keyword=' . urlencode('不存在的关键词'))
|
||||
->assertOk()
|
||||
->assertDontSee('PO_ERR_KW_0001')
|
||||
->assertDontSee('PO_ERR_KW_0002');
|
||||
}
|
||||
}
|
||||
@@ -95,6 +95,11 @@ class AdminSiteSubscriptionShowTest extends TestCase
|
||||
'last_amount' => 10,
|
||||
'last_channel' => 'bank_transfer',
|
||||
],
|
||||
'subscription_activation_error' => [
|
||||
'message' => '模拟失败:站点已过期',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
@@ -107,6 +112,7 @@ class AdminSiteSubscriptionShowTest extends TestCase
|
||||
->assertSee('可同步(已支付+已生效+未同步)')
|
||||
->assertSee('未同步(无记录)')
|
||||
->assertSee('失败原因Top3')
|
||||
->assertSee('/admin/platform-orders?site_subscription_id=' . $sub->id . '&sync_status=failed&sync_error_keyword=' . urlencode('模拟失败:站点已过期'), false)
|
||||
->assertSee('/admin/platform-orders?site_subscription_id=' . $sub->id . '&sync_status=synced', false)
|
||||
->assertSee('/admin/platform-orders?site_subscription_id=' . $sub->id . '&sync_status=failed', false)
|
||||
->assertSee('/admin/platform-orders?site_subscription_id=' . $sub->id . '&syncable_only=1', false)
|
||||
|
||||
Reference in New Issue
Block a user