140 lines
4.3 KiB
PHP
140 lines
4.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* 文件功能:AI小班长百家乐下注任务测试
|
|
*
|
|
* 覆盖 AI 在“你玩游戏我买单”活动时间窗口内的最高限额下注策略,
|
|
* 并验证下注会正确挂到买单活动记录上。
|
|
*/
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Jobs\AiBaccaratBetJob;
|
|
use App\Jobs\SaveMessageJob;
|
|
use App\Models\BaccaratLossCoverEvent;
|
|
use App\Models\BaccaratRound;
|
|
use App\Models\GameConfig;
|
|
use App\Models\Sysparam;
|
|
use App\Models\User;
|
|
use App\Services\BaccaratPredictionService;
|
|
use App\Services\ChatStateService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Queue;
|
|
use Mockery\MockInterface;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* 验证 AI小班长在百家乐中的特殊下注策略。
|
|
*/
|
|
class AiBaccaratBetJobTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
/**
|
|
* 初始化百家乐开关与下注限额配置。
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
GameConfig::updateOrCreate(
|
|
['game_key' => 'baccarat'],
|
|
[
|
|
'name' => 'Baccarat',
|
|
'icon' => 'baccarat',
|
|
'description' => 'Baccarat Game',
|
|
'enabled' => true,
|
|
'params' => [
|
|
'min_bet' => 100,
|
|
'max_bet' => 50000,
|
|
],
|
|
]
|
|
);
|
|
|
|
Sysparam::updateOrCreate(['alias' => 'chatbot_enabled'], ['body' => '1']);
|
|
Sysparam::clearCache('chatbot_enabled');
|
|
}
|
|
|
|
/**
|
|
* 买单活动时间窗口命中时,AI 会按百家乐最大下注额下注,并把下注挂到活动名下。
|
|
*/
|
|
public function test_ai_bets_baccarat_max_bet_when_loss_cover_time_window_is_active(): void
|
|
{
|
|
Event::fake();
|
|
Queue::fake([SaveMessageJob::class]);
|
|
|
|
$this->mock(ChatStateService::class, function (MockInterface $mock): void {
|
|
$mock->shouldReceive('nextMessageId')->andReturn(1);
|
|
$mock->shouldReceive('pushMessage')->zeroOrMoreTimes();
|
|
$mock->shouldReceive('getAllActiveRoomIds')->andReturn([1]);
|
|
});
|
|
|
|
$this->mock(BaccaratPredictionService::class, function (MockInterface $mock): void {
|
|
$mock->shouldReceive('predict')
|
|
->once()
|
|
->andReturn([
|
|
'action' => 'big',
|
|
'percentage' => 1,
|
|
'reason' => '测试用低仓位建议',
|
|
]);
|
|
});
|
|
|
|
$aiUser = User::factory()->create([
|
|
'username' => 'AI小班长',
|
|
'jjb' => 1000000,
|
|
'bank_jjb' => 200000,
|
|
]);
|
|
|
|
$event = BaccaratLossCoverEvent::factory()->create([
|
|
'status' => 'scheduled',
|
|
'starts_at' => now()->subMinutes(2),
|
|
'ends_at' => now()->addMinutes(10),
|
|
]);
|
|
|
|
$round = BaccaratRound::forceCreate([
|
|
'status' => 'betting',
|
|
'bet_opens_at' => now()->subSeconds(10),
|
|
'bet_closes_at' => now()->addMinute(),
|
|
'total_bet_big' => 0,
|
|
'total_bet_small' => 0,
|
|
'total_bet_triple' => 0,
|
|
'bet_count' => 0,
|
|
'bet_count_big' => 0,
|
|
'bet_count_small' => 0,
|
|
'bet_count_triple' => 0,
|
|
'total_payout' => 0,
|
|
]);
|
|
|
|
$job = new AiBaccaratBetJob($round);
|
|
$job->handle(app(\App\Services\UserCurrencyService::class), app(\App\Services\AiFinanceService::class));
|
|
|
|
$this->assertDatabaseHas('baccarat_bets', [
|
|
'round_id' => $round->id,
|
|
'user_id' => $aiUser->id,
|
|
'loss_cover_event_id' => $event->id,
|
|
'bet_type' => 'big',
|
|
'amount' => 50000,
|
|
'status' => 'pending',
|
|
]);
|
|
|
|
$this->assertDatabaseHas('baccarat_loss_cover_records', [
|
|
'event_id' => $event->id,
|
|
'user_id' => $aiUser->id,
|
|
'total_bet_amount' => 50000,
|
|
'claim_status' => 'not_eligible',
|
|
]);
|
|
|
|
$this->assertDatabaseHas('baccarat_loss_cover_events', [
|
|
'id' => $event->id,
|
|
'participant_count' => 1,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'id' => $aiUser->id,
|
|
'jjb' => 950000,
|
|
'bank_jjb' => 200000,
|
|
]);
|
|
}
|
|
}
|