Files
saasshop/tests/Feature/AdminPlatformOrderBatchActivateSubscriptionsShouldNotDispatchDuplicateJobWithin1MinuteTest.php

88 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace Tests\Feature;
use App\Jobs\BatchActivateSubscriptionsJob;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Queue;
use Tests\TestCase;
class AdminPlatformOrderBatchActivateSubscriptionsShouldNotDispatchDuplicateJobWithin1MinuteTest 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_should_block_duplicate_dispatch_within_1_minute(): void
{
$this->loginAsPlatformAdmin();
Queue::fake();
Cache::flush();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'batch_activate_subscriptions_dedupe_plan',
'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_BAS_DEDUPE_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()->subMinutes(10),
'paid_at' => now()->subMinutes(9),
'activated_at' => now()->subMinutes(8),
]);
// 第一次:应投递
$this->post('/admin/platform-orders/batch-activate-subscriptions', [
'scope' => 'filtered',
'syncable_only' => '1',
'limit' => 50,
])->assertRedirect();
// 第二次同一集合1 分钟内):应被阻断,不再投递
$res2 = $this->post('/admin/platform-orders/batch-activate-subscriptions', [
'scope' => 'filtered',
'syncable_only' => '1',
'limit' => 50,
]);
$res2->assertRedirect();
$res2->assertSessionHas('warning');
// 提示应带出 run_id短展示关键片段避免运营不知道是哪一批。
$res2->assertSessionHas('warning', fn ($v) => is_string($v) && str_contains($v, 'run_id='));
Queue::assertPushed(BatchActivateSubscriptionsJob::class, 1);
}
}