- Rename IsCommenter trait to CanComment, Commenter interface to Commentator - Move models to Models/ namespace (Comment, Reaction, Attachment, Subscription) - Rename user_type/user_id polymorphic columns to commenter_type/commenter_id - Rename Config class to CommentsConfig, update config key tables->table_names - Rename getCommentName() to getCommentDisplayName() on commentator models - Add column_names config section for commenter morph customization - Add table_names config with all 5 tables individually configurable - Expand translation file with structured i18n groups - Update all Blade views, Livewire components, events, listeners, and tests
125 lines
4.0 KiB
PHP
125 lines
4.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Event;
|
|
use Livewire\Livewire;
|
|
use Relaticle\Comments\Events\CommentCreated;
|
|
use Relaticle\Comments\Events\CommentDeleted;
|
|
use Relaticle\Comments\Events\CommentUpdated;
|
|
use Relaticle\Comments\Livewire\CommentItem;
|
|
use Relaticle\Comments\Livewire\Comments;
|
|
use Relaticle\Comments\Models\Comment;
|
|
use Relaticle\Comments\Tests\Models\Post;
|
|
use Relaticle\Comments\Tests\Models\User;
|
|
|
|
it('fires CommentCreated event when adding a comment', function () {
|
|
Event::fake([CommentCreated::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$post = Post::factory()->create();
|
|
|
|
$this->actingAs($user);
|
|
|
|
Livewire::test(Comments::class, ['model' => $post])
|
|
->set('newComment', '<p>New comment</p>')
|
|
->call('addComment');
|
|
|
|
Event::assertDispatched(CommentCreated::class, function (CommentCreated $event) use ($post) {
|
|
return $event->comment->body === '<p>New comment</p>'
|
|
&& $event->commentable->id === $post->id;
|
|
});
|
|
});
|
|
|
|
it('fires CommentUpdated event when editing a comment', function () {
|
|
Event::fake([CommentUpdated::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$post = Post::factory()->create();
|
|
|
|
$comment = Comment::factory()->create([
|
|
'commentable_id' => $post->id,
|
|
'commentable_type' => $post->getMorphClass(),
|
|
'commenter_id' => $user->getKey(),
|
|
'commenter_type' => $user->getMorphClass(),
|
|
'body' => '<p>Original</p>',
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
Livewire::test(CommentItem::class, ['comment' => $comment])
|
|
->call('startEdit')
|
|
->set('editBody', '<p>Edited</p>')
|
|
->call('saveEdit');
|
|
|
|
Event::assertDispatched(CommentUpdated::class, function (CommentUpdated $event) use ($comment) {
|
|
return $event->comment->id === $comment->id;
|
|
});
|
|
});
|
|
|
|
it('fires CommentDeleted event when deleting a comment', function () {
|
|
Event::fake([CommentDeleted::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$post = Post::factory()->create();
|
|
|
|
$comment = Comment::factory()->create([
|
|
'commentable_id' => $post->id,
|
|
'commentable_type' => $post->getMorphClass(),
|
|
'commenter_id' => $user->getKey(),
|
|
'commenter_type' => $user->getMorphClass(),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
Livewire::test(CommentItem::class, ['comment' => $comment])
|
|
->call('deleteComment');
|
|
|
|
Event::assertDispatched(CommentDeleted::class, function (CommentDeleted $event) use ($comment) {
|
|
return $event->comment->id === $comment->id;
|
|
});
|
|
});
|
|
|
|
it('fires CommentCreated event when adding a reply', function () {
|
|
Event::fake([CommentCreated::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$post = Post::factory()->create();
|
|
|
|
$comment = Comment::factory()->create([
|
|
'commentable_id' => $post->id,
|
|
'commentable_type' => $post->getMorphClass(),
|
|
'commenter_id' => $user->getKey(),
|
|
'commenter_type' => $user->getMorphClass(),
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
|
|
Livewire::test(CommentItem::class, ['comment' => $comment])
|
|
->call('startReply')
|
|
->set('replyBody', '<p>Reply text</p>')
|
|
->call('addReply');
|
|
|
|
Event::assertDispatched(CommentCreated::class, function (CommentCreated $event) use ($comment) {
|
|
return $event->comment->parent_id === $comment->id
|
|
&& $event->comment->body === '<p>Reply text</p>';
|
|
});
|
|
});
|
|
|
|
it('carries correct comment and commentable in event payload', function () {
|
|
Event::fake([CommentCreated::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$post = Post::factory()->create();
|
|
|
|
$this->actingAs($user);
|
|
|
|
Livewire::test(Comments::class, ['model' => $post])
|
|
->set('newComment', '<p>Payload test</p>')
|
|
->call('addComment');
|
|
|
|
Event::assertDispatched(CommentCreated::class, function (CommentCreated $event) use ($post, $user) {
|
|
return $event->comment instanceof Comment
|
|
&& $event->commentable->id === $post->id
|
|
&& $event->comment->commenter_id === $user->id;
|
|
});
|
|
});
|