65ed4c78a4
Data models and APIs for business hours ref: #234
69 lines
3.2 KiB
Ruby
69 lines
3.2 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe ::MessageTemplates::HookExecutionService do
|
|
context 'when it is a first message from web widget' do
|
|
it 'calls ::MessageTemplates::Template::EmailCollect' do
|
|
contact = create(:contact, email: nil)
|
|
conversation = create(:conversation, contact: contact)
|
|
|
|
# ensure greeting hook is enabled and greeting_message is present
|
|
conversation.inbox.update(greeting_enabled: true, greeting_message: 'Hi, this is a greeting message')
|
|
|
|
email_collect_service = double
|
|
greeting_service = double
|
|
allow(::MessageTemplates::Template::EmailCollect).to receive(:new).and_return(email_collect_service)
|
|
allow(email_collect_service).to receive(:perform).and_return(true)
|
|
allow(::MessageTemplates::Template::Greeting).to receive(:new).and_return(greeting_service)
|
|
allow(greeting_service).to receive(:perform).and_return(true)
|
|
|
|
# described class gets called in message after commit
|
|
message = create(:message, conversation: conversation)
|
|
|
|
expect(::MessageTemplates::Template::Greeting).to have_received(:new).with(conversation: message.conversation)
|
|
expect(greeting_service).to have_received(:perform)
|
|
expect(::MessageTemplates::Template::EmailCollect).to have_received(:new).with(conversation: message.conversation)
|
|
expect(email_collect_service).to have_received(:perform)
|
|
end
|
|
|
|
it 'doesnot calls ::MessageTemplates::Template::Greeting if greeting_message is empty' do
|
|
contact = create(:contact, email: nil)
|
|
conversation = create(:conversation, contact: contact)
|
|
# ensure greeting hook is enabled
|
|
conversation.inbox.update(greeting_enabled: true)
|
|
|
|
email_collect_service = double
|
|
|
|
allow(::MessageTemplates::Template::EmailCollect).to receive(:new).and_return(email_collect_service)
|
|
allow(email_collect_service).to receive(:perform).and_return(true)
|
|
allow(::MessageTemplates::Template::Greeting).to receive(:new)
|
|
|
|
# described class gets called in message after commit
|
|
message = create(:message, conversation: conversation)
|
|
|
|
expect(::MessageTemplates::Template::Greeting).not_to have_received(:new)
|
|
expect(::MessageTemplates::Template::EmailCollect).to have_received(:new).with(conversation: message.conversation)
|
|
expect(email_collect_service).to have_received(:perform)
|
|
end
|
|
end
|
|
|
|
context 'when it is after working hours' do
|
|
it 'calls ::MessageTemplates::Template::OutOfOffice' do
|
|
contact = create :contact
|
|
conversation = create :conversation, contact: contact
|
|
|
|
conversation.inbox.update(working_hours_enabled: true, out_of_office_message: 'We are out of office')
|
|
conversation.inbox.working_hours.today.update!(closed_all_day: true)
|
|
|
|
out_of_office_service = double
|
|
|
|
allow(::MessageTemplates::Template::OutOfOffice).to receive(:new).and_return(out_of_office_service)
|
|
allow(out_of_office_service).to receive(:perform).and_return(true)
|
|
|
|
# described class gets called in message after commit
|
|
message = create(:message, conversation: conversation)
|
|
|
|
expect(::MessageTemplates::Template::OutOfOffice).to have_received(:new).with(conversation: message.conversation)
|
|
expect(out_of_office_service).to have_received(:perform)
|
|
end
|
|
end
|
|
end
|