Files
animethemes-server/tests/Feature/Events/List/ExternalProfileTest.php
T
2025-07-29 23:31:12 -03:00

49 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
use App\Events\List\ExternalProfile\ExternalProfileCreated;
use App\Events\List\ExternalProfile\ExternalProfileDeleted;
use App\Events\List\ExternalProfile\ExternalProfileUpdated;
use App\Models\List\ExternalProfile;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Event;
test('external profile created event dispatched', function () {
ExternalProfile::factory()->createOne();
Event::assertDispatched(ExternalProfileCreated::class);
});
test('external profile deleted event dispatched', function () {
$profile = ExternalProfile::factory()->createOne();
$profile->delete();
Event::assertDispatched(ExternalProfileDeleted::class);
});
test('external profile updated event dispatched', function () {
$profile = ExternalProfile::factory()->createOne();
$changes = ExternalProfile::factory()->makeOne();
$profile->fill($changes->getAttributes());
$profile->save();
Event::assertDispatched(ExternalProfileUpdated::class);
});
test('external profile updated event embed fields', function () {
$profile = ExternalProfile::factory()->createOne();
$changes = ExternalProfile::factory()->makeOne();
$profile->fill($changes->getAttributes());
$profile->save();
Event::assertDispatched(ExternalProfileUpdated::class, function (ExternalProfileUpdated $event) {
$message = $event->getDiscordMessage();
return ! empty(Arr::get($message->embed, 'fields'));
});
});