Files
animethemes-server/tests/Feature/Jobs/SendDiscordNotificationTest.php
T
2026-07-08 17:46:31 -03:00

93 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Constants\FeatureConstants;
use App\Contracts\Events\DiscordMessageEvent;
use App\Jobs\Middleware\RateLimited;
use App\Jobs\SendDiscordNotificationJob;
use App\Notifications\DiscordNotification;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Notifications\AnonymousNotifiable;
use Illuminate\Support\Facades\Notification;
use Laravel\Pennant\Feature;
use NotificationChannels\Discord\DiscordMessage;
test('send discord notification job sends notification', function (): void {
Feature::activate(FeatureConstants::ALLOW_DISCORD_NOTIFICATIONS);
Notification::fake();
$event = new class implements DiscordMessageEvent
{
use Dispatchable;
/**
* Get Discord message payload.
*/
public function getDiscordMessage(): DiscordMessage
{
return DiscordMessage::create();
}
/**
* Get Discord channel the message will be sent to.
*/
public function getDiscordChannel(): string
{
return '';
}
/**
* Determine if the message should be sent.
*/
public function shouldSendDiscordMessage(): bool
{
return true;
}
};
$job = new SendDiscordNotificationJob($event);
$job->handle();
Notification::assertSentTo(
new AnonymousNotifiable(),
DiscordNotification::class,
);
});
test('rate limited', function (): void {
$event = new class implements DiscordMessageEvent
{
use Dispatchable;
/**
* Get Discord message payload.
*/
public function getDiscordMessage(): DiscordMessage
{
return DiscordMessage::create();
}
/**
* Get Discord channel the message will be sent to.
*/
public function getDiscordChannel(): string
{
return '';
}
/**
* Determine if the message should be sent.
*/
public function shouldSendDiscordMessage(): bool
{
return true;
}
};
$job = new SendDiscordNotificationJob($event);
$middleware = collect($job->middleware())->first();
$this->assertInstanceOf(RateLimited::class, $middleware);
});