109 lines
4.1 KiB
Ruby
Executable File
109 lines
4.1 KiB
Ruby
Executable File
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: channel_twilio_sms
|
|
#
|
|
# id :bigint not null, primary key
|
|
# account_sid :string not null
|
|
# api_key_sid :string
|
|
# auth_token :string not null
|
|
# content_templates :jsonb
|
|
# content_templates_last_updated :datetime
|
|
# medium :integer default("sms")
|
|
# messaging_service_sid :string
|
|
# phone_number :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_channel_twilio_sms_on_account_sid_and_phone_number (account_sid,phone_number) UNIQUE
|
|
# index_channel_twilio_sms_on_messaging_service_sid (messaging_service_sid) UNIQUE
|
|
# index_channel_twilio_sms_on_phone_number (phone_number) UNIQUE
|
|
#
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Channel::TwilioSms do
|
|
describe '#validations' do
|
|
context 'with phone number blank' do
|
|
let!(:sms_channel) { create(:channel_twilio_sms, medium: :sms, phone_number: nil) }
|
|
|
|
it 'allows channel to create with blank phone number' do
|
|
sms_channel_1 = create(:channel_twilio_sms, medium: :sms, phone_number: '')
|
|
|
|
expect(sms_channel_1).to be_valid
|
|
expect(sms_channel_1.messaging_service_sid).to be_present
|
|
expect(sms_channel_1.phone_number).to be_blank
|
|
expect(sms_channel.phone_number).to be_nil
|
|
|
|
sms_channel_1 = create(:channel_twilio_sms, medium: :sms, phone_number: nil)
|
|
expect(sms_channel_1.phone_number).to be_blank
|
|
expect(sms_channel_1.messaging_service_sid).to be_present
|
|
end
|
|
|
|
it 'throws error for whatsapp channel' do
|
|
whatsapp_channel_1 = create(:channel_twilio_sms, medium: :sms, phone_number: '', messaging_service_sid: 'MGec8130512b5dd462cfe03095ec1111ed')
|
|
expect do
|
|
create(:channel_twilio_sms, medium: :whatsapp, phone_number: 'whatsapp', messaging_service_sid: 'MGec8130512b5dd462cfe03095ec1111ed')
|
|
end.to raise_error(ActiveRecord::RecordInvalid) { |error| expect(error.message).to eq 'Validation failed: Phone number must be blank' }
|
|
|
|
expect(whatsapp_channel_1).to be_valid
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#send_message' do
|
|
let(:channel) { create(:channel_twilio_sms) }
|
|
|
|
let(:twilio_client) { instance_double(Twilio::REST::Client) }
|
|
let(:twilio_messages) { double }
|
|
|
|
before do
|
|
allow(Twilio::REST::Client).to receive(:new).and_return(twilio_client)
|
|
allow(twilio_client).to receive(:messages).and_return(twilio_messages)
|
|
end
|
|
|
|
it 'sends via twilio client' do
|
|
expect(twilio_messages).to receive(:create).with(
|
|
messaging_service_sid: channel.messaging_service_sid,
|
|
to: '+15555550111',
|
|
body: 'hello world',
|
|
status_callback: 'http://localhost:3000/twilio/delivery_status'
|
|
).once
|
|
|
|
channel.send_message(to: '+15555550111', body: 'hello world')
|
|
end
|
|
|
|
context 'with a "from" phone number' do
|
|
let(:channel) { create(:channel_twilio_sms, :with_phone_number) }
|
|
|
|
it 'sends via twilio client' do
|
|
expect(twilio_messages).to receive(:create).with(
|
|
from: channel.phone_number,
|
|
to: '+15555550111',
|
|
body: 'hello world',
|
|
status_callback: 'http://localhost:3000/twilio/delivery_status'
|
|
).once
|
|
|
|
channel.send_message(to: '+15555550111', body: 'hello world')
|
|
end
|
|
end
|
|
|
|
context 'with media urls' do
|
|
it 'supplies a media url' do
|
|
expect(twilio_messages).to receive(:create).with(
|
|
messaging_service_sid: channel.messaging_service_sid,
|
|
to: '+15555550111',
|
|
body: 'hello world',
|
|
media_url: ['https://example.com/1.jpg'],
|
|
status_callback: 'http://localhost:3000/twilio/delivery_status'
|
|
).once
|
|
|
|
channel.send_message(to: '+15555550111', body: 'hello world', media_url: ['https://example.com/1.jpg'])
|
|
end
|
|
end
|
|
end
|
|
end
|