2019-10-12 18:08:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Conversation, type: :model do
|
|
|
|
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
|
|
|
|
expect(conversation.uuid).to match(uuid_pattern)
|
|
|
|
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) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
conversation
|
|
|
|
new_assignee
|
|
|
|
|
|
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
|
|
Current.user = old_assignee
|
|
|
|
|
|
|
|
conversation.update(
|
|
|
|
status: :resolved,
|
|
|
|
locked: true,
|
|
|
|
user_last_seen_at: Time.now,
|
|
|
|
assignee: new_assignee
|
|
|
|
)
|
|
|
|
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::CONVERSATION_LOCK_TOGGLE, 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
|
|
|
|
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}")
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
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,
|
2019-10-20 19:10:18 +00:00
|
|
|
contact: create(:contact, account: account),
|
2019-10-12 18:08:41 +00:00
|
|
|
inbox: inbox,
|
|
|
|
assignee: nil
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
|
|
allow(Redis::Alfred).to receive(:rpoplpush).and_return(agent.id)
|
|
|
|
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)
|
|
|
|
|
|
|
|
# run_round_robin
|
|
|
|
expect(conversation.reload.assignee).to eq(agent)
|
|
|
|
end
|
2020-02-19 09:10:03 +00:00
|
|
|
|
|
|
|
it 'will not auto assign agent if enable_auto_assignment is false' do
|
|
|
|
inbox.update(enable_auto_assignment: false)
|
|
|
|
|
|
|
|
# send_events
|
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_CREATED, kind_of(Time), conversation: conversation)
|
|
|
|
|
|
|
|
# run_round_robin
|
|
|
|
expect(conversation.reload.assignee).to eq(nil)
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#update_assignee' do
|
|
|
|
subject(:update_assignee) { conversation.update_assignee(agent) }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation, assignee: nil) }
|
2019-10-12 18:08:41 +00:00
|
|
|
let(:agent) do
|
|
|
|
create(:user, email: 'agent@example.com', account: conversation.account, role: :agent)
|
|
|
|
end
|
2020-03-01 13:36:13 +00:00
|
|
|
let(:assignment_mailer) { double(deliver: true) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
it 'assigns the agent to conversation' do
|
|
|
|
expect(update_assignee).to eq(true)
|
|
|
|
expect(conversation.reload.assignee).to eq(agent)
|
|
|
|
end
|
2020-03-01 13:36:13 +00:00
|
|
|
|
2020-05-01 09:23:43 +00:00
|
|
|
it 'send assignment mailer' do
|
|
|
|
allow(AgentNotifications::ConversationNotificationsMailer).to receive(:conversation_assignment).and_return(assignment_mailer)
|
|
|
|
allow(assignment_mailer).to receive(:deliver_later)
|
|
|
|
|
|
|
|
Current.user = conversation.assignee
|
|
|
|
|
|
|
|
expect(update_assignee).to eq(true)
|
|
|
|
# send_email_notification_to_assignee
|
|
|
|
expect(AgentNotifications::ConversationNotificationsMailer).to have_received(:conversation_assignment).with(conversation, agent)
|
|
|
|
|
|
|
|
expect(assignment_mailer).to have_received(:deliver_later) if ENV.fetch('SMTP_ADDRESS', nil).present?
|
|
|
|
end
|
|
|
|
|
2020-03-01 13:36:13 +00:00
|
|
|
it 'does not send assignment mailer if notification setting is turned off' do
|
2020-05-01 09:23:43 +00:00
|
|
|
allow(AgentNotifications::ConversationNotificationsMailer).to receive(:conversation_assignment).and_return(assignment_mailer)
|
2020-03-01 13:36:13 +00:00
|
|
|
|
|
|
|
notification_setting = agent.notification_settings.first
|
|
|
|
notification_setting.unselect_all_email_flags
|
|
|
|
notification_setting.save!
|
|
|
|
|
|
|
|
expect(update_assignee).to eq(true)
|
2020-05-01 09:23:43 +00:00
|
|
|
expect(AgentNotifications::ConversationNotificationsMailer).not_to have_received(:conversation_assignment).with(conversation, agent)
|
2020-03-01 13:36:13 +00:00
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
describe '#lock!' do
|
|
|
|
subject(:lock!) { conversation.lock! }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
it 'assigns locks the conversation' do
|
|
|
|
expect(lock!).to eq(true)
|
|
|
|
expect(conversation.reload.locked).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#unlock!' do
|
|
|
|
subject(:unlock!) { conversation.unlock! }
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
let(:conversation) { create(:conversation) }
|
2019-10-12 18:08:41 +00:00
|
|
|
|
|
|
|
it 'unlocks the conversation' do
|
|
|
|
expect(unlock!).to eq(true)
|
|
|
|
expect(conversation.reload.locked).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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,
|
|
|
|
user: conversation.assignee
|
|
|
|
}
|
|
|
|
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,
|
|
|
|
user: conversation.assignee,
|
|
|
|
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-03-05 20:17:37 +00:00
|
|
|
additional_attributes: nil,
|
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,
|
2019-10-12 18:08:41 +00:00
|
|
|
timestamp: conversation.created_at.to_i,
|
|
|
|
user_last_seen_at: conversation.user_last_seen_at.to_i,
|
|
|
|
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
|
|
|
|
|
|
|
|
describe '#lock_event_data' do
|
|
|
|
subject(:lock_event_data) { conversation.lock_event_data }
|
|
|
|
|
|
|
|
let(:conversation) do
|
|
|
|
build(:conversation, display_id: 505, locked: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns lock event payload' do
|
|
|
|
expect(lock_event_data).to eq(id: 505, locked: false)
|
|
|
|
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
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|