## Description Adds the account-level `unread_count_for_filters` feature flag as the dark-launch gate for filtered sidebar unread counts. This reuses the deprecated `quoted_email_reply` flag slot, resets the reused bit for existing accounts, and removes stale defaults so new accounts do not reference the old flag. This also adds the feature where we are now calculating the unread counts for built in filters like mentions, participating and unattended along with unread count for saved filters/folders. Closes [CW-7262](https://linear.app/chatwoot/issue/CW-7262/unread-counts-for-filters-folders) ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality not to work as expected) - [ ] This change requires a documentation update
61 lines
2.1 KiB
Ruby
61 lines
2.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Conversations::UnreadCounts::Notifier do
|
|
let!(:conversation) { create(:conversation) }
|
|
let(:refresher) { instance_double(Conversations::UnreadCounts::Refresher, perform: refresh_result) }
|
|
let(:refresh_result) { true }
|
|
|
|
before do
|
|
conversation.account.enable_features!(:conversation_unread_counts)
|
|
allow(Conversations::UnreadCounts::Refresher).to receive(:new).and_return(refresher)
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
end
|
|
|
|
it 'dispatches unread count changed event after a successful refresh' do
|
|
described_class.new(conversation).perform
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch).with(
|
|
'conversation.unread_count_changed',
|
|
kind_of(Time),
|
|
conversation: conversation
|
|
)
|
|
end
|
|
|
|
context 'when refresh does not change unread count memberships' do
|
|
let(:refresh_result) { false }
|
|
|
|
it 'does not dispatch unread count changed event' do
|
|
described_class.new(conversation).perform
|
|
|
|
expect(Rails.configuration.dispatcher).not_to have_received(:dispatch)
|
|
end
|
|
|
|
it 'dispatches unread count changed event when filtered counts are enabled' do
|
|
conversation.account.enable_features!(:unread_count_for_filters)
|
|
|
|
described_class.new(conversation).perform
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch).with(
|
|
'conversation.unread_count_changed',
|
|
kind_of(Time),
|
|
conversation: conversation
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'when conversation unread counts feature is disabled' do
|
|
before do
|
|
conversation.account.disable_features!(:conversation_unread_counts)
|
|
allow(Conversations::UnreadCounts::Store).to receive(:clear_account!)
|
|
end
|
|
|
|
it 'does not refresh, clear cache, or dispatch unread count changed event' do
|
|
described_class.new(conversation).perform
|
|
|
|
expect(Conversations::UnreadCounts::Refresher).not_to have_received(:new)
|
|
expect(Conversations::UnreadCounts::Store).not_to have_received(:clear_account!)
|
|
expect(Rails.configuration.dispatcher).not_to have_received(:dispatch)
|
|
end
|
|
end
|
|
end
|