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

66 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
use App\Events\Document\Page\PageCreated;
use App\Events\Document\Page\PageDeleted;
use App\Events\Document\Page\PageRestored;
use App\Events\Document\Page\PageUpdated;
use App\Models\Document\Page;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Event;
test('page created event dispatched', function () {
Page::factory()->createOne();
Event::assertDispatched(PageCreated::class);
});
test('page deleted event dispatched', function () {
$page = Page::factory()->createOne();
$page->delete();
Event::assertDispatched(PageDeleted::class);
});
test('page restored event dispatched', function () {
$page = Page::factory()->createOne();
$page->restore();
Event::assertDispatched(PageRestored::class);
});
test('page restores quietly', function () {
$page = Page::factory()->createOne();
$page->restore();
Event::assertNotDispatched(PageUpdated::class);
});
test('page updated event dispatched', function () {
$page = Page::factory()->createOne();
$changes = Page::factory()->makeOne();
$page->fill($changes->getAttributes());
$page->save();
Event::assertDispatched(PageUpdated::class);
});
test('page updated event embed fields', function () {
$page = Page::factory()->createOne();
$changes = Page::factory()->makeOne();
$page->fill($changes->getAttributes());
$page->save();
Event::assertDispatched(PageUpdated::class, function (PageUpdated $event) {
$message = $event->getDiscordMessage();
return ! empty(Arr::get($message->embed, 'fields'));
});
});