Files
animethemes-server/tests/Feature/Jobs/SendDiscordNotificationTest.php
T
paranarimasuandGitHub 088ea287c5 feat: initial migration to pennant features for feature flags and global site config [incremental] (#573)
* feat: initial commit for feature management

* style: fix StyleCI findings

* fix(api): prohibit features of nonnull scope from API & fix(admin): wrong translate key

* style: fix Static Analysis error
2023-04-23 18:54:34 -05:00

128 lines
3.2 KiB
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature\Jobs;
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;
use Tests\TestCase;
/**
* Class SendDiscordNotificationTest.
*/
class SendDiscordNotificationTest extends TestCase
{
/**
* The Send Discord Notification Job shall send a DiscordNotification.
*
* @return void
*/
public function testSendDiscordNotificationJobSendsNotification(): void
{
Feature::activate(FeatureConstants::ALLOW_DISCORD_NOTIFICATIONS);
Notification::fake();
$event = new class implements DiscordMessageEvent
{
use Dispatchable;
/**
* Get Discord message payload.
*
* @return DiscordMessage
*/
public function getDiscordMessage(): DiscordMessage
{
return DiscordMessage::create();
}
/**
* Get Discord channel the message will be sent to.
*
* @return string
*/
public function getDiscordChannel(): string
{
return '';
}
/**
* Determine if the message should be sent.
*
* @return bool
*/
public function shouldSendDiscordMessage(): bool
{
return true;
}
};
$job = new SendDiscordNotificationJob($event);
$job->handle();
Notification::assertSentTo(
new AnonymousNotifiable(),
DiscordNotification::class,
);
}
/**
* The Send Discord Notification Job shall use the RateLimited middleware.
*
* @return void
*/
public function testRateLimited(): void
{
$event = new class implements DiscordMessageEvent
{
use Dispatchable;
/**
* Get Discord message payload.
*
* @return DiscordMessage
*/
public function getDiscordMessage(): DiscordMessage
{
return DiscordMessage::create();
}
/**
* Get Discord channel the message will be sent to.
*
* @return string
*/
public function getDiscordChannel(): string
{
return '';
}
/**
* Determine if the message should be sent.
*
* @return bool
*/
public function shouldSendDiscordMessage(): bool
{
return true;
}
};
$job = new SendDiscordNotificationJob($event);
$middleware = collect($job->middleware())->first();
static::assertInstanceOf(RateLimited::class, $middleware);
}
}