Files
Xboard/tests/Unit/Jobs/SendEmailJobTest.php
T
yinjianm a4e78b864a fix(api): 修复邮件队列超时并补齐调度进程
延长 SendEmailJob 超时并改为超时直接失败,补充重试退避、
失败日志与收件人脱敏,避免 send_email 队列批量超时重试。

新增 MAIL_TIMEOUT 与 QUEUE_RETRY_AFTER 配置,并抽出邮件运行时
配置与 HTML 内容服务,确保 Horizon 常驻进程使用最新邮件配置。

为 Docker、supervisor 与 compose 样例补齐 scheduler 进程,并在
节点管理端开启墙检测托管时立即触发一次检测,保证定时任务持续生效。
2026-04-28 13:32:58 +08:00

70 lines
2.0 KiB
PHP

<?php
namespace Tests\Unit\Jobs;
use App\Jobs\SendEmailJob;
use PHPUnit\Framework\TestCase;
use RuntimeException;
class SendEmailJobTest extends TestCase
{
public function test_job_uses_smtp_safe_timeout_and_backoff(): void
{
$job = new SendEmailJob([
'email' => 'user@example.com',
'subject' => 'Subject',
'template_name' => 'notify',
]);
$this->assertSame(3, $job->tries);
$this->assertSame(60, $job->timeout);
$this->assertTrue($job->failOnTimeout);
$this->assertSame([60, 300], $job->backoff());
}
public function test_handle_throws_when_mail_service_returns_error(): void
{
$job = new class([
'email' => 'user@example.com',
'subject' => 'Subject',
'template_name' => 'notify',
]) extends SendEmailJob {
protected function sendEmail(array $params): array
{
return ['error' => 'SMTP connection failed'];
}
};
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Failed to send email: SMTP connection failed');
$job->handle();
}
public function test_mass_email_content_gets_send_time_marker_before_send(): void
{
$job = new class([
'email' => 'user@example.com',
'subject' => 'Subject',
'template_name' => 'notify',
'template_value' => [
'content' => 'Hello',
],
], 'send_email_mass') extends SendEmailJob {
public array $capturedParams = [];
protected function sendEmail(array $params): array
{
$this->capturedParams = $params;
return ['error' => null];
}
};
$job->handle();
$this->assertStringStartsWith('Hello', $job->capturedParams['template_value']['content']);
$this->assertStringContainsString('[Send-Time:', $job->capturedParams['template_value']['content']);
}
}