93 lines
2.3 KiB
PHP
93 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature\Admin;
|
|
|
|
use App\Jobs\SendWebMentions;
|
|
use App\Models\Note;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Queue;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
class NotesTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
#[Test]
|
|
public function notesPageLoads(): void
|
|
{
|
|
$user = User::factory()->make();
|
|
|
|
$response = $this->actingAs($user)->get('/admin/notes');
|
|
$response->assertViewIs('admin.notes.index');
|
|
}
|
|
|
|
#[Test]
|
|
public function noteCreatePageLoads(): void
|
|
{
|
|
$user = User::factory()->make();
|
|
|
|
$response = $this->actingAs($user)->get('/admin/notes/create');
|
|
$response->assertViewIs('admin.notes.create');
|
|
}
|
|
|
|
#[Test]
|
|
public function adminCanCreateNewNote(): void
|
|
{
|
|
$user = User::factory()->make();
|
|
|
|
$this->actingAs($user)->post('/admin/notes', [
|
|
'content' => 'A new test note',
|
|
]);
|
|
|
|
$this->assertDatabaseHas('notes', [
|
|
'note' => 'A new test note',
|
|
]);
|
|
}
|
|
|
|
#[Test]
|
|
public function noteEditFormLoads(): void
|
|
{
|
|
$user = User::factory()->make();
|
|
$note = Note::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->get('/admin/notes/' . $note->id . '/edit');
|
|
$response->assertViewIs('admin.notes.edit');
|
|
}
|
|
|
|
#[Test]
|
|
public function adminCanEditNote(): void
|
|
{
|
|
Queue::fake();
|
|
$user = User::factory()->make();
|
|
$note = Note::factory()->create();
|
|
|
|
$this->actingAs($user)->post('/admin/notes/' . $note->id, [
|
|
'_method' => 'PUT',
|
|
'content' => 'An edited note',
|
|
'webmentions' => true,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('notes', [
|
|
'note' => 'An edited note',
|
|
]);
|
|
Queue::assertPushed(SendWebMentions::class);
|
|
}
|
|
|
|
#[Test]
|
|
public function adminCanDeleteNote(): void
|
|
{
|
|
$user = User::factory()->make();
|
|
$note = Note::factory()->create();
|
|
|
|
$this->actingAs($user)->post('/admin/notes/' . $note->id, [
|
|
'_method' => 'DELETE',
|
|
]);
|
|
$this->assertSoftDeleted('notes', [
|
|
'id' => $note->id,
|
|
]);
|
|
}
|
|
}
|