b05d06a28a
Adds the ability to lock conversation to a single thread for Whatsapp and Sms Inboxes when using outbound messages. demo: https://www.loom.com/share/c9e1e563c8914837a4139dfdd2503fef fixes: #4975 Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com>
46 lines
1.5 KiB
Ruby
46 lines
1.5 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe ::ConversationBuilder do
|
|
let(:account) { create(:account) }
|
|
let!(:sms_channel) { create(:channel_sms, account: account) }
|
|
let!(:sms_inbox) { create(:inbox, channel: sms_channel, account: account) }
|
|
let(:contact) { create(:contact, account: account) }
|
|
let(:contact_inbox) { create(:contact_inbox, contact: contact, inbox: sms_inbox) }
|
|
|
|
describe '#perform' do
|
|
it 'creates conversation' do
|
|
conversation = described_class.new(
|
|
contact_inbox: contact_inbox,
|
|
params: {}
|
|
).perform
|
|
|
|
expect(conversation.contact_inbox_id).to eq(contact_inbox.id)
|
|
end
|
|
|
|
context 'when lock_to_single_conversation is true for inbox' do
|
|
before do
|
|
sms_inbox.update!(lock_to_single_conversation: true)
|
|
end
|
|
|
|
it 'creates conversation when existing conversation is not present' do
|
|
conversation = described_class.new(
|
|
contact_inbox: contact_inbox,
|
|
params: {}
|
|
).perform
|
|
|
|
expect(conversation.contact_inbox_id).to eq(contact_inbox.id)
|
|
end
|
|
|
|
it 'returns last from existing conversations when existing conversation is not present' do
|
|
create(:conversation, contact_inbox: contact_inbox)
|
|
existing_conversation = create(:conversation, contact_inbox: contact_inbox)
|
|
conversation = described_class.new(
|
|
contact_inbox: contact_inbox,
|
|
params: {}
|
|
).perform
|
|
|
|
expect(conversation.id).to eq(existing_conversation.id)
|
|
end
|
|
end
|
|
end
|
|
end
|