Files
UNIT3D/tests/Feature/Http/Controllers/Staff/PageControllerTest.php
Roardom a84c6de560 refactor: use laravel 7 seeder naming conventions
In laravel 7 and onward, seeder naming convention was changed to be singular and without `Table`.
2025-06-13 18:05:32 +00:00

112 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
use App\Http\Controllers\Staff\PageController;
use App\Http\Requests\Staff\StorePageRequest;
use App\Http\Requests\Staff\UpdatePageRequest;
use App\Models\Page;
use Database\Seeders\GroupSeeder;
use function Pest\Laravel\assertDatabaseHas;
test('create returns an ok response', function (): void {
$this->seed(GroupSeeder::class);
$this->get(route('staff.pages.create'))
->assertOk()
->assertViewIs('Staff.page.create');
});
test('destroy returns an ok response', function (): void {
$page = Page::factory()->create();
$this->delete(route('staff.pages.destroy', ['page' => $page]))
->assertRedirect(route('staff.pages.index'));
$this->assertModelMissing($page);
});
test('edit returns an ok response', function (): void {
$page = Page::factory()->create();
$this->get(route('staff.pages.edit', ['page' => $page]))
->assertOk()
->assertViewIs('Staff.page.edit')
->assertViewHas('page');
});
test('index returns an ok response', function (): void {
$pages = Page::factory()->times(3)->create();
$this->get(route('staff.pages.index'))
->assertOk()
->assertViewIs('Staff.page.index')
->assertViewHas('pages', $pages);
});
test('store validates with a form request', function (): void {
$this->assertActionUsesFormRequest(
PageController::class,
'store',
StorePageRequest::class
);
});
test('store returns an ok response', function (): void {
$page = Page::factory()->make();
$this->post(route('staff.pages.store'), [
'name' => $page->name,
'content' => $page->content,
])
->assertRedirect(route('staff.pages.index'))
->assertSessionHasNoErrors();
assertDatabaseHas('pages', [
'name' => $page->name,
'content' => $page->content,
]);
});
test('update validates with a form request', function (): void {
$this->assertActionUsesFormRequest(
PageController::class,
'update',
UpdatePageRequest::class
);
});
test('update returns an ok response', function (): void {
$page = Page::factory()->create();
$name = fake()->name;
$content = fake()->text;
$this->patch(route('staff.pages.update', ['page' => $page]), [
'name' => $name,
'content' => $content,
])
->assertRedirect(route('staff.pages.index'))
->assertSessionHasNoErrors();
$page->refresh();
expect($page->name)
->toBe($name)
->and($page->content)
->toBe($content);
});