- 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
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Relaticle\Comments\CommentsConfig;
|
|
|
|
it('returns false for isBroadcastingEnabled by default', function () {
|
|
expect(CommentsConfig::isBroadcastingEnabled())->toBeFalse();
|
|
});
|
|
|
|
it('returns true for isBroadcastingEnabled when config overridden', function () {
|
|
config()->set('comments.broadcasting.enabled', true);
|
|
|
|
expect(CommentsConfig::isBroadcastingEnabled())->toBeTrue();
|
|
});
|
|
|
|
it('returns comments as default broadcast channel prefix', function () {
|
|
expect(CommentsConfig::getBroadcastChannelPrefix())->toBe('comments');
|
|
});
|
|
|
|
it('returns custom broadcast channel prefix when overridden', function () {
|
|
config()->set('comments.broadcasting.channel_prefix', 'my-app-comments');
|
|
|
|
expect(CommentsConfig::getBroadcastChannelPrefix())->toBe('my-app-comments');
|
|
});
|
|
|
|
it('returns 10s as default polling interval', function () {
|
|
expect(CommentsConfig::getPollingInterval())->toBe('10s');
|
|
});
|
|
|
|
it('returns custom polling interval when overridden', function () {
|
|
config()->set('comments.polling.interval', '30s');
|
|
|
|
expect(CommentsConfig::getPollingInterval())->toBe('30s');
|
|
});
|