2019-10-12 18:08:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
2021-03-12 09:43:58 +00:00
|
|
|
require Rails.root.join 'spec/models/concerns/assignment_handler_spec.rb'
|
|
|
|
require Rails.root.join 'spec/models/concerns/round_robin_handler_spec.rb'
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
RSpec.describe Conversation, type: :model do
|
2021-01-17 18:26:56 +00:00
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:account) }
|
2021-04-29 16:53:32 +00:00
|
|
|
it { is_expected.to belong_to(:inbox) }
|
2021-01-17 18:26:56 +00:00
|
|
|
end
|
|
|
|
|
2021-03-12 09:43:58 +00:00
|
|
|
describe 'concerns' do
|
|
|
|
it_behaves_like 'assignment_handler'
|
|
|
|
it_behaves_like 'round_robin_handler'
|
|
|
|
end
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
describe '.before_create' do
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { build(:conversation, display_id: nil) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
conversation.save
|
|
|
|
conversation.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'runs before_create callbacks' do
|
|
|
|
expect(conversation.display_id).to eq(1)
|
|
|
|
end
|
2020-04-30 14:50:26 +00:00
|
|
|
|
|
|
|
it 'creates a UUID for every conversation automatically' do
|
|
|
|
uuid_pattern = /[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}$/i
|
2020-06-02 18:20:39 +00:00
|
|
|
expect(conversation.uuid).to match(uuid_pattern)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.after_create' do
|
|
|
|
let(:account) { create(:account) }
|
|
|
|
let(:agent) { create(:user, email: 'agent1@example.com', account: account) }
|
|
|
|
let(:inbox) { create(:inbox, account: account) }
|
|
|
|
let(:conversation) do
|
|
|
|
create(
|
|
|
|
:conversation,
|
|
|
|
account: account,
|
|
|
|
contact: create(:contact, account: account),
|
|
|
|
inbox: inbox,
|
|
|
|
assignee: nil
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'runs after_create callbacks' do
|
|
|
|
# send_events
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_CREATED, kind_of(Time), conversation: conversation)
|
2020-04-30 14:50:26 +00:00
|
|
|
end
|
2020-11-01 07:23:25 +00:00
|
|
|
|
|
|
|
it 'queues AutoResolveConversationsJob post creation if auto resolve duration present' do
|
|
|
|
account.update(auto_resolve_duration: 30)
|
|
|
|
expect do
|
|
|
|
create(
|
|
|
|
:conversation,
|
|
|
|
account: account,
|
|
|
|
contact: create(:contact, account: account),
|
|
|
|
inbox: inbox,
|
|
|
|
assignee: nil
|
|
|
|
)
|
|
|
|
end.to have_enqueued_job(AutoResolveConversationsJob)
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '.after_update' do
|
|
|
|
let(:account) { create(:account) }
|
|
|
|
let(:conversation) do
|
2019-12-24 07:57:25 +00:00
|
|
|
create(:conversation, status: 'open', account: account, assignee: old_assignee)
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
let(:old_assignee) do
|
|
|
|
create(:user, email: 'agent1@example.com', account: account, role: :agent)
|
|
|
|
end
|
|
|
|
let(:new_assignee) do
|
|
|
|
create(:user, email: 'agent2@example.com', account: account, role: :agent)
|
|
|
|
end
|
|
|
|
let(:assignment_mailer) { double(deliver: true) }
|
2020-10-02 11:03:59 +00:00
|
|
|
let(:label) { create(:label, account: account) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
conversation
|
|
|
|
new_assignee
|
|
|
|
|
|
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
|
|
Current.user = old_assignee
|
|
|
|
|
|
|
|
conversation.update(
|
|
|
|
status: :resolved,
|
2020-09-10 13:49:15 +00:00
|
|
|
contact_last_seen_at: Time.now,
|
2020-10-02 11:03:59 +00:00
|
|
|
assignee: new_assignee,
|
|
|
|
label_list: [label.title]
|
2019-10-12 18:08:41 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'runs after_update callbacks' do
|
|
|
|
# notify_status_change
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_RESOLVED, kind_of(Time), conversation: conversation)
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_READ, kind_of(Time), conversation: conversation)
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
|
|
|
.with(described_class::ASSIGNEE_CHANGED, kind_of(Time), conversation: conversation)
|
|
|
|
end
|
2020-01-09 07:36:40 +00:00
|
|
|
|
|
|
|
it 'creates conversation activities' do
|
|
|
|
# create_activity
|
2020-10-13 18:46:35 +00:00
|
|
|
expect(conversation.messages.pluck(:content)).to include("Conversation was marked resolved by #{old_assignee.name}")
|
|
|
|
expect(conversation.messages.pluck(:content)).to include("Assigned to #{new_assignee.name} by #{old_assignee.name}")
|
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{old_assignee.name} added #{label.title}")
|
2020-01-09 07:36:40 +00:00
|
|
|
end
|
2020-11-01 07:23:25 +00:00
|
|
|
|
|
|
|
it 'adds a message for system auto resolution if marked resolved by system' do
|
|
|
|
account.update(auto_resolve_duration: 40)
|
2021-01-05 14:37:04 +00:00
|
|
|
conversation2 = create(:conversation, status: 'open', account: account, assignee: old_assignee)
|
2020-11-01 07:23:25 +00:00
|
|
|
Current.user = nil
|
|
|
|
conversation2.update(status: :resolved)
|
|
|
|
system_resolved_message = "Conversation was marked resolved by system due to #{account.auto_resolve_duration} days of inactivity"
|
|
|
|
expect(conversation2.messages.pluck(:content)).to include(system_resolved_message)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not trigger AutoResolutionJob if conversation reopened and account does not have auto resolve duration' do
|
|
|
|
expect { conversation.update(status: :open) }
|
|
|
|
.not_to have_enqueued_job(AutoResolveConversationsJob).with(conversation.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does trigger AutoResolutionJob if conversation reopened and account has auto resolve duration' do
|
|
|
|
account.update(auto_resolve_duration: 40)
|
2021-01-05 14:37:04 +00:00
|
|
|
expect { conversation.reload.update(status: :open) }
|
2020-11-01 07:23:25 +00:00
|
|
|
.to have_enqueued_job(AutoResolveConversationsJob).with(conversation.id)
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
|
2020-10-02 11:03:59 +00:00
|
|
|
describe '#update_labels' do
|
|
|
|
let(:account) { create(:account) }
|
|
|
|
let(:conversation) { create(:conversation, account: account) }
|
|
|
|
let(:agent) do
|
|
|
|
create(:user, email: 'agent@example.com', account: account, role: :agent)
|
|
|
|
end
|
|
|
|
let(:first_label) { create(:label, account: account) }
|
|
|
|
let(:second_label) { create(:label, account: account) }
|
|
|
|
let(:third_label) { create(:label, account: account) }
|
|
|
|
let(:fourth_label) { create(:label, account: account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
conversation
|
|
|
|
Current.user = agent
|
|
|
|
|
|
|
|
first_label
|
|
|
|
second_label
|
|
|
|
third_label
|
|
|
|
fourth_label
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds one label to conversation' do
|
|
|
|
labels = [first_label].map(&:title)
|
|
|
|
expect(conversation.update_labels(labels)).to eq(true)
|
|
|
|
expect(conversation.label_list).to match_array(labels)
|
2020-10-13 18:46:35 +00:00
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{agent.name} added #{labels.join(', ')}")
|
2020-10-02 11:03:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds and removes previously added labels' do
|
|
|
|
labels = [first_label, fourth_label].map(&:title)
|
|
|
|
expect(conversation.update_labels(labels)).to eq(true)
|
|
|
|
expect(conversation.label_list).to match_array(labels)
|
2020-10-13 18:46:35 +00:00
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{agent.name} added #{labels.join(', ')}")
|
2020-10-02 11:03:59 +00:00
|
|
|
|
|
|
|
updated_labels = [second_label, third_label].map(&:title)
|
|
|
|
expect(conversation.update_labels(updated_labels)).to eq(true)
|
|
|
|
expect(conversation.label_list).to match_array(updated_labels)
|
2020-10-13 18:46:35 +00:00
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{agent.name} added #{updated_labels.join(', ')}")
|
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{agent.name} removed #{labels.join(', ')}")
|
2020-10-02 11:03:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
describe '#toggle_status' do
|
|
|
|
subject(:toggle_status) { conversation.toggle_status }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation, status: :open) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
it 'toggles conversation status' do
|
|
|
|
expect(toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.status).to eq('resolved')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
describe '#mute!' do
|
|
|
|
subject(:mute!) { conversation.mute! }
|
|
|
|
|
2020-10-30 16:57:25 +00:00
|
|
|
let(:user) do
|
|
|
|
create(:user, email: 'agent2@example.com', account: create(:account), role: :agent)
|
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
let(:conversation) { create(:conversation) }
|
|
|
|
|
2020-10-30 16:57:25 +00:00
|
|
|
before { Current.user = user }
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
it 'marks conversation as resolved' do
|
|
|
|
mute!
|
|
|
|
expect(conversation.reload.resolved?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks conversation as muted in redis' do
|
|
|
|
mute!
|
|
|
|
expect(Redis::Alfred.get(conversation.send(:mute_key))).not_to eq(nil)
|
|
|
|
end
|
2020-10-30 16:57:25 +00:00
|
|
|
|
|
|
|
it 'creates mute message' do
|
|
|
|
mute!
|
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{user.name} has muted the conversation")
|
|
|
|
end
|
2020-05-26 12:13:59 +00:00
|
|
|
end
|
|
|
|
|
2020-10-08 06:32:08 +00:00
|
|
|
describe '#unmute!' do
|
|
|
|
subject(:unmute!) { conversation.unmute! }
|
|
|
|
|
2020-10-30 16:57:25 +00:00
|
|
|
let(:user) do
|
|
|
|
create(:user, email: 'agent2@example.com', account: create(:account), role: :agent)
|
|
|
|
end
|
|
|
|
|
2020-10-08 06:32:08 +00:00
|
|
|
let(:conversation) { create(:conversation).tap(&:mute!) }
|
|
|
|
|
2020-10-30 16:57:25 +00:00
|
|
|
before { Current.user = user }
|
|
|
|
|
2020-10-08 06:32:08 +00:00
|
|
|
it 'does not change conversation status' do
|
|
|
|
expect { unmute! }.not_to(change { conversation.reload.status })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks conversation as muted in redis' do
|
|
|
|
expect { unmute! }
|
|
|
|
.to change { Redis::Alfred.get(conversation.send(:mute_key)) }
|
|
|
|
.to nil
|
|
|
|
end
|
2020-10-30 16:57:25 +00:00
|
|
|
|
|
|
|
it 'creates unmute message' do
|
|
|
|
unmute!
|
|
|
|
expect(conversation.messages.pluck(:content)).to include("#{user.name} has unmuted the conversation")
|
|
|
|
end
|
2020-10-08 06:32:08 +00:00
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
describe '#muted?' do
|
|
|
|
subject(:muted?) { conversation.muted? }
|
|
|
|
|
|
|
|
let(:conversation) { create(:conversation) }
|
|
|
|
|
|
|
|
it 'return true if conversation is muted' do
|
|
|
|
conversation.mute!
|
|
|
|
expect(muted?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if conversation is not muted' do
|
|
|
|
expect(muted?).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
describe 'unread_messages' do
|
|
|
|
subject(:unread_messages) { conversation.unread_messages }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation, agent_last_seen_at: 1.hour.ago) }
|
2019-10-12 18:08:41 +00:00
|
|
|
let(:message_params) do
|
|
|
|
{
|
|
|
|
conversation: conversation,
|
|
|
|
account: conversation.account,
|
|
|
|
inbox: conversation.inbox,
|
2020-06-27 16:04:53 +00:00
|
|
|
sender: conversation.assignee
|
2019-10-12 18:08:41 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
let!(:message) do
|
|
|
|
create(:message, created_at: 1.minute.ago, **message_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:message, created_at: 1.month.ago, **message_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns unread messages' do
|
2020-01-09 07:36:40 +00:00
|
|
|
expect(unread_messages).to include(message)
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'unread_incoming_messages' do
|
|
|
|
subject(:unread_incoming_messages) { conversation.unread_incoming_messages }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation, agent_last_seen_at: 1.hour.ago) }
|
2019-10-12 18:08:41 +00:00
|
|
|
let(:message_params) do
|
|
|
|
{
|
|
|
|
conversation: conversation,
|
|
|
|
account: conversation.account,
|
|
|
|
inbox: conversation.inbox,
|
2020-06-27 16:04:53 +00:00
|
|
|
sender: conversation.assignee,
|
2019-10-12 18:08:41 +00:00
|
|
|
created_at: 1.minute.ago
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let!(:message) do
|
|
|
|
create(:message, message_type: :incoming, **message_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:message, message_type: :outgoing, **message_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns unread incoming messages' do
|
|
|
|
expect(unread_incoming_messages).to contain_exactly(message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#push_event_data' do
|
|
|
|
subject(:push_event_data) { conversation.push_event_data }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation) }
|
2019-10-12 18:08:41 +00:00
|
|
|
let(:expected_data) do
|
|
|
|
{
|
2020-10-27 20:44:36 +00:00
|
|
|
additional_attributes: {},
|
2019-10-12 18:08:41 +00:00
|
|
|
meta: {
|
2019-10-20 19:10:18 +00:00
|
|
|
sender: conversation.contact.push_event_data,
|
2019-10-12 18:08:41 +00:00
|
|
|
assignee: conversation.assignee
|
|
|
|
},
|
|
|
|
id: conversation.display_id,
|
|
|
|
messages: [],
|
|
|
|
inbox_id: conversation.inbox_id,
|
2020-02-26 15:45:01 +00:00
|
|
|
status: conversation.status,
|
2021-02-08 07:20:11 +00:00
|
|
|
contact_inbox: conversation.contact_inbox,
|
2020-10-05 17:22:43 +00:00
|
|
|
timestamp: conversation.last_activity_at.to_i,
|
2020-07-25 17:24:45 +00:00
|
|
|
can_reply: true,
|
2020-07-04 14:16:17 +00:00
|
|
|
channel: 'Channel::WebWidget',
|
2020-09-10 13:49:15 +00:00
|
|
|
contact_last_seen_at: conversation.contact_last_seen_at.to_i,
|
2019-10-12 18:08:41 +00:00
|
|
|
agent_last_seen_at: conversation.agent_last_seen_at.to_i,
|
|
|
|
unread_count: 0
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns push event payload' do
|
|
|
|
expect(push_event_data).to eq(expected_data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-05 20:13:12 +00:00
|
|
|
describe '#botinbox: when conversation created inside inbox with agent bot' do
|
|
|
|
let!(:bot_inbox) { create(:agent_bot_inbox) }
|
|
|
|
let(:conversation) { create(:conversation, inbox: bot_inbox.inbox) }
|
|
|
|
|
|
|
|
it 'returns conversation status as bot' do
|
|
|
|
expect(conversation.status).to eq('bot')
|
|
|
|
end
|
|
|
|
end
|
2020-07-25 17:24:45 +00:00
|
|
|
|
|
|
|
describe '#can_reply?' do
|
|
|
|
describe 'on channels without 24 hour restriction' do
|
|
|
|
let(:conversation) { create(:conversation) }
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(conversation.can_reply?).to eq true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'on channels with 24 hour restriction' do
|
|
|
|
let!(:facebook_channel) { create(:channel_facebook_page) }
|
|
|
|
let!(:facebook_inbox) { create(:inbox, channel: facebook_channel, account: facebook_channel.account) }
|
|
|
|
let!(:conversation) { create(:conversation, inbox: facebook_inbox, account: facebook_channel.account) }
|
|
|
|
|
|
|
|
it 'returns false if there are no incoming messages' do
|
|
|
|
expect(conversation.can_reply?).to eq false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'return false if last incoming message is outside of 24 hour window' do
|
|
|
|
create(
|
|
|
|
:message,
|
|
|
|
account: conversation.account,
|
|
|
|
inbox: facebook_inbox,
|
|
|
|
conversation: conversation,
|
|
|
|
created_at: Time.now - 25.hours
|
|
|
|
)
|
|
|
|
expect(conversation.can_reply?).to eq false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'return true if last incoming message is inside 24 hour window' do
|
|
|
|
create(
|
|
|
|
:message,
|
|
|
|
account: conversation.account,
|
|
|
|
inbox: facebook_inbox,
|
|
|
|
conversation: conversation
|
|
|
|
)
|
|
|
|
expect(conversation.can_reply?).to eq true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|