2019-10-12 18:08:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
2021-07-31 15:49:42 +00:00
|
|
|
require Rails.root.join 'spec/models/concerns/assignment_handler_shared.rb'
|
|
|
|
require Rails.root.join 'spec/models/concerns/round_robin_handler_shared.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)
|
2022-03-30 06:07:36 +00:00
|
|
|
.with(described_class::CONVERSATION_CREATED, kind_of(Time), conversation: conversation, notifiable_assignee_change: false,
|
2022-04-12 14:53:34 +00:00
|
|
|
changed_attributes: nil, performed_by: nil)
|
2020-04-30 14:50:26 +00:00
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
|
|
|
|
2022-03-24 10:08:28 +00:00
|
|
|
describe '.validate jsonb attributes' 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
|
|
|
|
|
|
|
|
it 'validate length of additional_attributes value' do
|
|
|
|
conversation.additional_attributes = { company_name: 'some_company' * 200, contact_number: 19_999_999_999 }
|
|
|
|
conversation.valid?
|
|
|
|
error_messages = conversation.errors.messages
|
|
|
|
expect(error_messages[:additional_attributes][0]).to eq('company_name length should be < 1500')
|
|
|
|
expect(error_messages[:additional_attributes][1]).to eq('contact_number value should be < 9999999999')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'validate length of custom_attributes value' do
|
|
|
|
conversation.custom_attributes = { company_name: 'some_company' * 200, contact_number: 19_999_999_999 }
|
|
|
|
conversation.valid?
|
|
|
|
error_messages = conversation.errors.messages
|
|
|
|
expect(error_messages[:custom_attributes][0]).to eq('company_name length should be < 1500')
|
|
|
|
expect(error_messages[:custom_attributes][1]).to eq('contact_number value should be < 9999999999')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
describe '.after_update' do
|
2021-11-12 10:47:59 +00:00
|
|
|
let!(:account) { create(:account) }
|
|
|
|
let!(:old_assignee) do
|
2019-10-12 18:08:41 +00:00
|
|
|
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
|
2021-11-12 10:47:59 +00:00
|
|
|
let!(:conversation) do
|
|
|
|
create(:conversation, status: 'open', account: account, assignee: old_assignee)
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
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
|
|
|
|
allow(Rails.configuration.dispatcher).to receive(:dispatch)
|
|
|
|
Current.user = old_assignee
|
2021-11-12 10:47:59 +00:00
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2021-11-12 10:47:59 +00:00
|
|
|
it 'runs after_update callbacks' do
|
2019-10-12 18:08:41 +00:00
|
|
|
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
|
|
|
)
|
2022-03-30 06:07:36 +00:00
|
|
|
status_change = conversation.status_change
|
|
|
|
changed_attributes = conversation.previous_changes
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
2022-03-30 06:07:36 +00:00
|
|
|
.with(described_class::CONVERSATION_RESOLVED, kind_of(Time), conversation: conversation, notifiable_assignee_change: true,
|
2022-04-12 14:53:34 +00:00
|
|
|
changed_attributes: status_change, performed_by: nil)
|
2019-10-12 18:08:41 +00:00
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
2022-03-30 06:07:36 +00:00
|
|
|
.with(described_class::CONVERSATION_READ, kind_of(Time), conversation: conversation, notifiable_assignee_change: true,
|
2022-04-12 14:53:34 +00:00
|
|
|
changed_attributes: nil, performed_by: nil)
|
2019-10-12 18:08:41 +00:00
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
2022-03-30 06:07:36 +00:00
|
|
|
.with(described_class::ASSIGNEE_CHANGED, kind_of(Time), conversation: conversation, notifiable_assignee_change: true,
|
2022-04-12 14:53:34 +00:00
|
|
|
changed_attributes: nil, performed_by: nil)
|
2022-02-25 12:31:21 +00:00
|
|
|
expect(Rails.configuration.dispatcher).to have_received(:dispatch)
|
2022-03-30 06:07:36 +00:00
|
|
|
.with(described_class::CONVERSATION_UPDATED, kind_of(Time), conversation: conversation, notifiable_assignee_change: true,
|
2022-04-12 14:53:34 +00:00
|
|
|
changed_attributes: changed_attributes, performed_by: nil)
|
2022-02-25 12:31:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'will not run conversation_updated event for empty updates' do
|
|
|
|
conversation.save!
|
|
|
|
expect(Rails.configuration.dispatcher).not_to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_UPDATED, kind_of(Time), conversation: conversation, notifiable_assignee_change: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'will not run conversation_updated event for non whitelisted keys' do
|
|
|
|
conversation.update(updated_at: DateTime.now.utc)
|
|
|
|
expect(Rails.configuration.dispatcher).not_to have_received(:dispatch)
|
|
|
|
.with(described_class::CONVERSATION_UPDATED, kind_of(Time), conversation: conversation, notifiable_assignee_change: true)
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|
2020-01-09 07:36:40 +00:00
|
|
|
|
|
|
|
it 'creates conversation activities' do
|
2021-11-12 10:47:59 +00:00
|
|
|
conversation.update(
|
|
|
|
status: :resolved,
|
|
|
|
contact_last_seen_at: Time.now,
|
|
|
|
assignee: new_assignee,
|
|
|
|
label_list: [label.title]
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id, message_type: :activity,
|
|
|
|
content: "#{old_assignee.name} added #{label.title}" }))
|
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id, message_type: :activity,
|
|
|
|
content: "Conversation was marked resolved by #{old_assignee.name}" }))
|
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id, message_type: :activity,
|
|
|
|
content: "Assigned to #{new_assignee.name} by #{old_assignee.name}" }))
|
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
|
2021-11-12 10:47:59 +00:00
|
|
|
|
2020-11-01 07:23:25 +00:00
|
|
|
system_resolved_message = "Conversation was marked resolved by system due to #{account.auto_resolve_duration} days of inactivity"
|
2021-11-12 10:47:59 +00:00
|
|
|
expect { conversation2.update(status: :resolved) }
|
|
|
|
.to have_enqueued_job(Conversations::ActivityMessageJob)
|
|
|
|
.with(conversation2, { account_id: conversation2.account_id, inbox_id: conversation2.inbox_id, message_type: :activity,
|
|
|
|
content: system_resolved_message })
|
2020-11-01 07:23:25 +00:00
|
|
|
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)
|
2021-11-12 10:47:59 +00:00
|
|
|
|
|
|
|
expect { conversation.update_labels(labels) }
|
|
|
|
.to have_enqueued_job(Conversations::ActivityMessageJob)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id, message_type: :activity,
|
|
|
|
content: "#{agent.name} added #{labels.join(', ')}" })
|
|
|
|
|
2020-10-02 11:03:59 +00:00
|
|
|
expect(conversation.label_list).to match_array(labels)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds and removes previously added labels' do
|
|
|
|
labels = [first_label, fourth_label].map(&:title)
|
2021-11-12 10:47:59 +00:00
|
|
|
expect { conversation.update_labels(labels) }
|
|
|
|
.to have_enqueued_job(Conversations::ActivityMessageJob)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id, message_type: :activity,
|
|
|
|
content: "#{agent.name} added #{labels.join(', ')}" })
|
2020-10-02 11:03:59 +00:00
|
|
|
expect(conversation.label_list).to match_array(labels)
|
|
|
|
|
|
|
|
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)
|
2021-11-12 10:47:59 +00:00
|
|
|
|
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id,
|
|
|
|
message_type: :activity, content: "#{agent.name} added #{updated_labels.join(', ')}" }))
|
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once)
|
|
|
|
.with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id,
|
|
|
|
message_type: :activity, content: "#{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
|
2021-07-23 09:54:07 +00:00
|
|
|
it 'toggles conversation status to resolved when open' do
|
|
|
|
conversation = create(:conversation, status: 'open')
|
|
|
|
expect(conversation.toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.status).to eq('resolved')
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2021-07-23 09:54:07 +00:00
|
|
|
it 'toggles conversation status to open when resolved' do
|
|
|
|
conversation = create(:conversation, status: 'resolved')
|
|
|
|
expect(conversation.toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.status).to eq('open')
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2021-07-23 09:54:07 +00:00
|
|
|
it 'toggles conversation status to open when pending' do
|
|
|
|
conversation = create(:conversation, status: 'pending')
|
|
|
|
expect(conversation.toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.status).to eq('open')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'toggles conversation status to open when snoozed' do
|
|
|
|
conversation = create(:conversation, status: 'snoozed')
|
|
|
|
expect(conversation.toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.status).to eq('open')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#ensure_snooze_until_reset' do
|
|
|
|
it 'resets the snoozed_until when status is toggled' do
|
|
|
|
conversation = create(:conversation, status: 'snoozed', snoozed_until: 2.days.from_now)
|
|
|
|
expect(conversation.snoozed_until).not_to eq nil
|
|
|
|
expect(conversation.toggle_status).to eq(true)
|
|
|
|
expect(conversation.reload.snoozed_until).to eq(nil)
|
2019-10-12 18:08:41 +00:00
|
|
|
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!
|
2021-11-12 10:47:59 +00:00
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once).with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id,
|
|
|
|
message_type: :activity, content: "#{user.name} has muted the conversation" }))
|
2020-10-30 16:57:25 +00:00
|
|
|
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!
|
2021-11-12 10:47:59 +00:00
|
|
|
expect(Conversations::ActivityMessageJob)
|
|
|
|
.to(have_been_enqueued.at_least(:once).with(conversation, { account_id: conversation.account_id, inbox_id: conversation.inbox_id,
|
|
|
|
message_type: :activity, content: "#{user.name} has unmuted the conversation" }))
|
2020-10-30 16:57:25 +00:00
|
|
|
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
|
|
|
|
|
2021-11-17 12:35:53 +00:00
|
|
|
describe 'recent_messages' do
|
|
|
|
subject(:recent_messages) { conversation.recent_messages }
|
|
|
|
|
|
|
|
let(:conversation) { create(:conversation, agent_last_seen_at: 1.hour.ago) }
|
|
|
|
let(:message_params) do
|
|
|
|
{
|
|
|
|
conversation: conversation,
|
|
|
|
account: conversation.account,
|
|
|
|
inbox: conversation.inbox,
|
|
|
|
sender: conversation.assignee
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let!(:messages) do
|
|
|
|
create_list(:message, 10, **message_params) do |message, i|
|
|
|
|
message.created_at = i.minute.ago
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns upto 5 recent messages' do
|
|
|
|
expect(recent_messages.length).to be < 6
|
|
|
|
expect(recent_messages).to eq messages.last(5)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 18:08:41 +00:00
|
|
|
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,
|
2021-11-22 18:02:17 +00:00
|
|
|
assignee: conversation.assignee,
|
|
|
|
hmac_verified: conversation.contact_inbox.hmac_verified
|
2019-10-12 18:08:41 +00:00
|
|
|
},
|
|
|
|
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',
|
2021-09-29 14:03:51 +00:00
|
|
|
snoozed_until: conversation.snoozed_until,
|
2022-02-03 04:35:56 +00:00
|
|
|
custom_attributes: conversation.custom_attributes,
|
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) }
|
|
|
|
|
2021-07-21 16:32:43 +00:00
|
|
|
it 'returns conversation status as pending' do
|
|
|
|
expect(conversation.status).to eq('pending')
|
2020-03-05 20:13:12 +00:00
|
|
|
end
|
|
|
|
end
|
2020-07-25 17:24:45 +00:00
|
|
|
|
2021-05-05 15:36:11 +00:00
|
|
|
describe '#botintegration: when conversation created in inbox with dialogflow integration' do
|
2021-11-12 12:23:03 +00:00
|
|
|
let(:inbox) { create(:inbox) }
|
|
|
|
let(:hook) { create(:integrations_hook, :dialogflow, inbox: inbox) }
|
2021-05-05 15:36:11 +00:00
|
|
|
let(:conversation) { create(:conversation, inbox: hook.inbox) }
|
|
|
|
|
2021-07-21 16:32:43 +00:00
|
|
|
it 'returns conversation status as pending' do
|
|
|
|
expect(conversation.status).to eq('pending')
|
2021-05-05 15:36:11 +00:00
|
|
|
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
|
2021-11-11 07:33:48 +00:00
|
|
|
before do
|
|
|
|
stub_request(:post, /graph.facebook.com/)
|
|
|
|
end
|
|
|
|
|
2020-07-25 17:24:45 +00:00
|
|
|
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
|
2022-04-19 06:51:20 +00:00
|
|
|
expect(conversation.can_reply?).to eq true
|
2020-07-25 17:24:45 +00:00
|
|
|
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
|
|
|
|
)
|
2022-04-19 06:51:20 +00:00
|
|
|
expect(conversation.can_reply?).to eq true
|
2020-07-25 17:24:45 +00:00
|
|
|
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
|
2021-07-12 06:58:16 +00:00
|
|
|
|
|
|
|
describe '#delete conversation' do
|
|
|
|
let!(:conversation) { create(:conversation) }
|
|
|
|
|
|
|
|
let!(:notification) { create(:notification, notification_type: 'conversation_creation', primary_actor: conversation) }
|
|
|
|
|
|
|
|
it 'delete associated notifications if conversation is deleted' do
|
2022-03-24 07:58:25 +00:00
|
|
|
conversation.destroy!
|
2021-07-12 06:58:16 +00:00
|
|
|
expect { notification.reload }.to raise_error ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
end
|
2022-03-30 09:06:22 +00:00
|
|
|
|
|
|
|
describe 'validate invalid referer url' do
|
|
|
|
let(:conversation) { create(:conversation, additional_attributes: { referer: 'javascript' }) }
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(conversation['additional_attributes']['referer']).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validate valid referer url' do
|
|
|
|
let(:conversation) { create(:conversation, additional_attributes: { referer: 'https://www.chatwoot.com/' }) }
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(conversation['additional_attributes']['referer']).to eq('https://www.chatwoot.com/')
|
|
|
|
end
|
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
end
|