完善百家乐买单补偿自动领取与聊天室播报
This commit is contained in:
@@ -10,11 +10,15 @@
|
||||
namespace Tests\Feature;
|
||||
|
||||
use App\Enums\CurrencySource;
|
||||
use App\Events\MessageSent;
|
||||
use App\Jobs\AiClaimBaccaratLossCoverJob;
|
||||
use App\Jobs\SaveMessageJob;
|
||||
use App\Models\BaccaratLossCoverEvent;
|
||||
use App\Models\BaccaratLossCoverRecord;
|
||||
use App\Models\BaccaratRound;
|
||||
use App\Models\GameConfig;
|
||||
use App\Models\User;
|
||||
use App\Services\BaccaratLossCoverService;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Support\Facades\Event;
|
||||
use Illuminate\Support\Facades\Queue;
|
||||
@@ -133,6 +137,9 @@ class BaccaratLossCoverControllerTest extends TestCase
|
||||
*/
|
||||
public function test_user_can_claim_baccarat_loss_cover_and_currency_log_is_written(): void
|
||||
{
|
||||
Event::fake([MessageSent::class]);
|
||||
Queue::fake([SaveMessageJob::class]);
|
||||
|
||||
$user = User::factory()->create(['jjb' => 200]);
|
||||
$event = BaccaratLossCoverEvent::factory()->create([
|
||||
'status' => 'claimable',
|
||||
@@ -171,6 +178,12 @@ class BaccaratLossCoverControllerTest extends TestCase
|
||||
'amount' => 300,
|
||||
'source' => CurrencySource::BACCARAT_LOSS_COVER_CLAIM->value,
|
||||
]);
|
||||
|
||||
Event::assertDispatched(MessageSent::class);
|
||||
Queue::assertPushed(SaveMessageJob::class, function (SaveMessageJob $job): bool {
|
||||
return str_contains($job->messageData['content'], '领取了 <b>300</b> 金币补偿')
|
||||
&& str_contains($job->messageData['content'], 'claimBaccaratLossCover');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -200,4 +213,88 @@ class BaccaratLossCoverControllerTest extends TestCase
|
||||
$response->assertJsonPath('events.0.my_record.claim_status', 'claimed');
|
||||
$response->assertJsonPath('events.0.my_record.claimed_amount', 400);
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证活动进入可领取状态后会为 AI 小班长派发自动领取任务。
|
||||
*/
|
||||
public function test_claimable_event_dispatches_ai_auto_claim_job(): void
|
||||
{
|
||||
Queue::fake();
|
||||
|
||||
$aiUser = User::factory()->create([
|
||||
'username' => 'AI小班长',
|
||||
'jjb' => 1000,
|
||||
]);
|
||||
|
||||
$event = BaccaratLossCoverEvent::factory()->create([
|
||||
'status' => 'active',
|
||||
'starts_at' => now()->subHour(),
|
||||
'ends_at' => now()->subMinute(),
|
||||
'claim_deadline_at' => now()->addHours(12),
|
||||
]);
|
||||
|
||||
BaccaratLossCoverRecord::factory()->create([
|
||||
'event_id' => $event->id,
|
||||
'user_id' => $aiUser->id,
|
||||
'compensation_amount' => 260,
|
||||
'total_loss_amount' => 260,
|
||||
'claim_status' => 'pending',
|
||||
]);
|
||||
|
||||
app(BaccaratLossCoverService::class)->closeDueActiveEvents();
|
||||
|
||||
Queue::assertPushed(AiClaimBaccaratLossCoverJob::class, function (AiClaimBaccaratLossCoverJob $job) use ($event): bool {
|
||||
return $job->eventId === $event->id;
|
||||
});
|
||||
|
||||
$this->assertDatabaseHas('baccarat_loss_cover_events', [
|
||||
'id' => $event->id,
|
||||
'status' => 'claimable',
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证 AI 小班长自动领取任务会发放补偿并写入金币流水。
|
||||
*/
|
||||
public function test_ai_auto_claim_job_claims_compensation_and_writes_currency_log(): void
|
||||
{
|
||||
$aiUser = User::factory()->create([
|
||||
'username' => 'AI小班长',
|
||||
'jjb' => 200,
|
||||
]);
|
||||
|
||||
$event = BaccaratLossCoverEvent::factory()->create([
|
||||
'status' => 'claimable',
|
||||
'claim_deadline_at' => now()->addHours(12),
|
||||
'total_loss_amount' => 320,
|
||||
]);
|
||||
|
||||
BaccaratLossCoverRecord::factory()->create([
|
||||
'event_id' => $event->id,
|
||||
'user_id' => $aiUser->id,
|
||||
'total_bet_amount' => 600,
|
||||
'total_loss_amount' => 320,
|
||||
'compensation_amount' => 320,
|
||||
'claim_status' => 'pending',
|
||||
]);
|
||||
|
||||
$job = new AiClaimBaccaratLossCoverJob($event->id);
|
||||
$job->handle(app(BaccaratLossCoverService::class));
|
||||
|
||||
$this->assertSame(520, (int) $aiUser->fresh()->jjb);
|
||||
|
||||
$this->assertDatabaseHas('baccarat_loss_cover_records', [
|
||||
'event_id' => $event->id,
|
||||
'user_id' => $aiUser->id,
|
||||
'claim_status' => 'claimed',
|
||||
'claimed_amount' => 320,
|
||||
]);
|
||||
|
||||
$this->assertDatabaseHas('user_currency_logs', [
|
||||
'user_id' => $aiUser->id,
|
||||
'currency' => 'gold',
|
||||
'amount' => 320,
|
||||
'source' => CurrencySource::BACCARAT_LOSS_COVER_CLAIM->value,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user