2020-01-09 07:36:40 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Message, type: :model do
|
|
|
|
context 'with validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:inbox_id) }
|
|
|
|
it { is_expected.to validate_presence_of(:conversation_id) }
|
|
|
|
it { is_expected.to validate_presence_of(:account_id) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when message is created' do
|
|
|
|
let(:message) { build(:message) }
|
|
|
|
|
|
|
|
it 'triggers ::MessageTemplates::HookExecutionService' do
|
|
|
|
hook_execution_service = double
|
|
|
|
allow(::MessageTemplates::HookExecutionService).to receive(:new).and_return(hook_execution_service)
|
|
|
|
allow(hook_execution_service).to receive(:perform).and_return(true)
|
|
|
|
|
|
|
|
message.save!
|
|
|
|
|
|
|
|
expect(::MessageTemplates::HookExecutionService).to have_received(:new).with(message: message)
|
|
|
|
expect(hook_execution_service).to have_received(:perform)
|
|
|
|
end
|
2020-01-23 17:29:07 +00:00
|
|
|
|
|
|
|
it 'calls notify email method on after save' do
|
|
|
|
allow(message).to receive(:notify_via_mail).and_return(true)
|
|
|
|
message.save!
|
|
|
|
expect(message).to have_received(:notify_via_mail)
|
|
|
|
end
|
2020-01-09 07:36:40 +00:00
|
|
|
end
|
|
|
|
end
|