- 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
26 lines
837 B
PHP
26 lines
837 B
PHP
<?php
|
|
|
|
use Relaticle\Comments\Events\UserMentioned;
|
|
use Relaticle\Comments\Models\Comment;
|
|
use Relaticle\Comments\Tests\Models\Post;
|
|
use Relaticle\Comments\Tests\Models\User;
|
|
|
|
it('carries correct comment and mentioned user in payload', function () {
|
|
$user = User::factory()->create();
|
|
$mentionedUser = User::factory()->create(['name' => 'john']);
|
|
$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>@john</p>',
|
|
]);
|
|
|
|
$event = new UserMentioned($comment, $mentionedUser);
|
|
|
|
expect($event->comment)->toBe($comment)
|
|
->and($event->mentionedUser)->toBe($mentionedUser);
|
|
});
|