Files
relaticle-comments/tests/Feature/ServiceProviderTest.php
manukminasyan fd5bc5271b refactor: rename for Laravel conventions and better DX
- 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
2026-03-27 14:53:12 +04:00

39 lines
1.2 KiB
PHP

<?php
use Illuminate\Database\Eloquent\Relations\Relation;
use Relaticle\Comments\CommentsConfig;
use Relaticle\Comments\Models\Comment;
it('registers the config file', function () {
expect(config('comments'))->toBeArray();
expect(config('comments.threading.max_depth'))->toBe(2);
expect(config('comments.pagination.per_page'))->toBe(10);
});
it('resolves the comment model from config', function () {
expect(CommentsConfig::getCommentModel())->toBe(Comment::class);
});
it('resolves the comment table from config', function () {
expect(CommentsConfig::getCommentTable())->toBe('comments');
});
it('resolves max depth from config', function () {
expect(CommentsConfig::getMaxDepth())->toBe(2);
});
it('registers the morph map for comment', function () {
$map = Relation::morphMap();
expect($map)->toHaveKey('comment');
expect($map['comment'])->toBe(Comment::class);
});
it('creates the comments table via migration', function () {
expect(Schema::hasTable('comments'))->toBeTrue();
expect(Schema::hasColumns('comments', [
'id', 'commentable_type', 'commentable_id',
'commenter_type', 'commenter_id', 'parent_id', 'body',
'edited_at', 'deleted_at', 'created_at', 'updated_at',
]))->toBeTrue();
});