chore: init saasshop repo + sql migrations runner + gitee go
This commit is contained in:
319
tests/Feature/AdminPlatformOrderTest.php
Normal file
319
tests/Feature/AdminPlatformOrderTest.php
Normal file
@@ -0,0 +1,319 @@
|
||||
<?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 AdminPlatformOrderTest 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_admin_can_open_platform_orders_page(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$this->get('/admin/platform-orders')
|
||||
->assertOk()
|
||||
->assertSee('平台订单')
|
||||
->assertSee('筛选条件')
|
||||
->assertSee('平台订单列表')
|
||||
->assertSee('最近批量同步')
|
||||
->assertSee('最近24小时批量同步过');
|
||||
}
|
||||
|
||||
public function test_guest_cannot_open_platform_orders_page(): void
|
||||
{
|
||||
$this->get('/admin/platform-orders')
|
||||
->assertRedirect('/admin/login');
|
||||
}
|
||||
|
||||
public function test_platform_orders_page_can_filter_by_status_and_payment_status(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$merchant = Merchant::query()->firstOrFail();
|
||||
$plan = Plan::query()->create([
|
||||
'code' => 'pro_monthly_test',
|
||||
'name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'price' => 199,
|
||||
'list_price' => 199,
|
||||
'status' => 'active',
|
||||
'sort' => 10,
|
||||
'published_at' => now(),
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100101',
|
||||
'order_type' => 'new_purchase',
|
||||
'status' => 'activated',
|
||||
'payment_status' => 'paid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'list_amount' => 199,
|
||||
'discount_amount' => 0,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 199,
|
||||
'placed_at' => now()->subHour(),
|
||||
'paid_at' => now()->subMinutes(30),
|
||||
'activated_at' => now()->subMinutes(20),
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100102',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'list_amount' => 199,
|
||||
'discount_amount' => 0,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(10),
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?status=activated&payment_status=paid')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100101')
|
||||
->assertDontSee('PO202603100102')
|
||||
->assertSee('专业版(月付)');
|
||||
|
||||
// 只看同步失败:构造一条带有 subscription_activation_error 的订单
|
||||
PlatformOrder::query()->where('order_no', 'PO202603100102')->update([
|
||||
'meta' => [
|
||||
'subscription_activation_error' => [
|
||||
'message' => '模拟失败',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
// 额外构造一条同原因失败,用于失败原因聚合统计
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100104',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(9),
|
||||
'meta' => [
|
||||
'subscription_activation_error' => [
|
||||
'message' => '模拟失败',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
// 再构造一条不同原因失败
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100105',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(8),
|
||||
'meta' => [
|
||||
'subscription_activation_error' => [
|
||||
'message' => '余额不足',
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?fail_only=1')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100102')
|
||||
->assertDontSee('PO202603100101');
|
||||
|
||||
// 失败原因聚合(Top5)应可见
|
||||
$this->get('/admin/platform-orders')
|
||||
->assertOk()
|
||||
->assertSee('同步失败原因 TOP5')
|
||||
->assertSee('模拟失败')
|
||||
->assertSee('余额不足');
|
||||
|
||||
// 只看已同步:构造一条带有 subscription_activation 的订单 + 批量同步审计(用于列表展示)
|
||||
PlatformOrder::query()->where('order_no', 'PO202603100101')->update([
|
||||
'meta' => [
|
||||
'subscription_activation' => [
|
||||
'subscription_id' => 123,
|
||||
'synced_at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
],
|
||||
'audit' => [
|
||||
[
|
||||
'action' => 'batch_activate_subscription',
|
||||
'scope' => 'filtered',
|
||||
'at' => '2026-03-10 00:00:00',
|
||||
'admin_id' => 1,
|
||||
],
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders')
|
||||
->assertOk()
|
||||
->assertSee('2026-03-10 00:00:00')
|
||||
->assertSee('管理员:1');
|
||||
|
||||
// 最近24小时批量同步筛选:构造一条近24h,一条超过24h
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100107',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'activated',
|
||||
'payment_status' => 'paid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 199,
|
||||
'placed_at' => now()->subMinutes(3),
|
||||
'paid_at' => now()->subMinutes(2),
|
||||
'activated_at' => now()->subMinutes(1),
|
||||
'meta' => [
|
||||
'batch_activation' => [
|
||||
'at' => now()->subHours(1)->format('Y-m-d H:i:s'),
|
||||
'admin_id' => 1,
|
||||
'scope' => 'filtered',
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100108',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'activated',
|
||||
'payment_status' => 'paid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 199,
|
||||
'placed_at' => now()->subMinutes(13),
|
||||
'paid_at' => now()->subMinutes(12),
|
||||
'activated_at' => now()->subMinutes(11),
|
||||
'meta' => [
|
||||
'batch_activation' => [
|
||||
'at' => now()->subHours(30)->format('Y-m-d H:i:s'),
|
||||
'admin_id' => 1,
|
||||
'scope' => 'filtered',
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?batch_synced_24h=1')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100107')
|
||||
->assertDontSee('PO202603100108');
|
||||
|
||||
$this->get('/admin/platform-orders?synced_only=1')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100101')
|
||||
->assertDontSee('PO202603100102');
|
||||
|
||||
// sync_status 下拉筛选:synced / failed / unsynced
|
||||
$this->get('/admin/platform-orders?sync_status=synced')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100101')
|
||||
->assertDontSee('PO202603100102');
|
||||
|
||||
$this->get('/admin/platform-orders?sync_status=failed')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100102')
|
||||
->assertDontSee('PO202603100101');
|
||||
|
||||
// unsynced:构造一条既无 subscription_activation 也无 error 的订单
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100103',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'pending',
|
||||
'payment_status' => 'unpaid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 0,
|
||||
'placed_at' => now()->subMinutes(5),
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?sync_status=unsynced')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100103')
|
||||
->assertDontSee('PO202603100101')
|
||||
->assertDontSee('PO202603100102');
|
||||
|
||||
// 只看可同步:已支付 + 已生效 + 未同步
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO202603100106',
|
||||
'order_type' => 'renewal',
|
||||
'status' => 'activated',
|
||||
'payment_status' => 'paid',
|
||||
'plan_name' => '专业版(月付)',
|
||||
'billing_cycle' => 'monthly',
|
||||
'period_months' => 1,
|
||||
'quantity' => 1,
|
||||
'payable_amount' => 199,
|
||||
'paid_amount' => 199,
|
||||
'placed_at' => now()->subMinutes(4),
|
||||
'paid_at' => now()->subMinutes(3),
|
||||
'activated_at' => now()->subMinutes(2),
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?syncable_only=1')
|
||||
->assertOk()
|
||||
->assertSee('PO202603100106')
|
||||
->assertDontSee('PO202603100101')
|
||||
->assertDontSee('PO202603100102');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user