mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	 a18d54b706
			
		
	
	a18d54b706
	
	
	
		
			
			* Chore: Enable file upload for facebook messenger * Chore: Fix attachments * Chore: Fix Specs * Fix ReplyBox file attachment logic * Set default value for message Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
		
			
				
	
	
		
			82 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| describe Twilio::SendOnTwilioService do
 | |
|   subject(:outgoing_message_service) { described_class.new(message: message) }
 | |
| 
 | |
|   let(:twilio_client) { instance_double(::Twilio::REST::Client) }
 | |
|   let(:messages_double) { instance_double('messages') }
 | |
|   let(:message_record_double) { instance_double('message_record_double') }
 | |
| 
 | |
|   let!(:account) { create(:account) }
 | |
|   let!(:widget_inbox) { create(:inbox, account: account) }
 | |
|   let!(:twilio_sms) { create(:channel_twilio_sms, account: account) }
 | |
|   let!(:twilio_whatsapp) { create(:channel_twilio_sms, medium: :whatsapp, account: account) }
 | |
|   let!(:twilio_inbox) { create(:inbox, channel: twilio_sms, account: account) }
 | |
|   let!(:twilio_whatsapp_inbox) { create(:inbox, channel: twilio_whatsapp, account: account) }
 | |
|   let!(:contact) { create(:contact, account: account) }
 | |
|   let(:contact_inbox) { create(:contact_inbox, contact: contact, inbox: twilio_inbox) }
 | |
|   let(:conversation) { create(:conversation, contact: contact, inbox: twilio_inbox, contact_inbox: contact_inbox) }
 | |
| 
 | |
|   before do
 | |
|     allow(::Twilio::REST::Client).to receive(:new).and_return(twilio_client)
 | |
|     allow(twilio_client).to receive(:messages).and_return(messages_double)
 | |
|   end
 | |
| 
 | |
|   describe '#perform' do
 | |
|     context 'without reply' do
 | |
|       it 'if message is private' do
 | |
|         message = create(:message, message_type: 'outgoing', private: true, inbox: twilio_inbox, account: account)
 | |
|         ::Twilio::SendOnTwilioService.new(message: message).perform
 | |
|         expect(twilio_client).not_to have_received(:messages)
 | |
|       end
 | |
| 
 | |
|       it 'if inbox channel is not twilio' do
 | |
|         message = create(:message, message_type: 'outgoing', inbox: widget_inbox, account: account)
 | |
|         expect { ::Twilio::SendOnTwilioService.new(message: message).perform }.to raise_error 'Invalid channel service was called'
 | |
|         expect(twilio_client).not_to have_received(:messages)
 | |
|       end
 | |
| 
 | |
|       it 'if message is not outgoing' do
 | |
|         message = create(:message, message_type: 'incoming', inbox: twilio_inbox, account: account)
 | |
|         ::Twilio::SendOnTwilioService.new(message: message).perform
 | |
|         expect(twilio_client).not_to have_received(:messages)
 | |
|       end
 | |
| 
 | |
|       it 'if message has an source id' do
 | |
|         message = create(:message, message_type: 'outgoing', inbox: twilio_inbox, account: account, source_id: SecureRandom.uuid)
 | |
|         ::Twilio::SendOnTwilioService.new(message: message).perform
 | |
|         expect(twilio_client).not_to have_received(:messages)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'with reply' do
 | |
|       it 'if message is sent from chatwoot and is outgoing' do
 | |
|         allow(messages_double).to receive(:create).and_return(message_record_double)
 | |
|         allow(message_record_double).to receive(:sid).and_return('1234')
 | |
| 
 | |
|         outgoing_message = create(
 | |
|           :message, message_type: 'outgoing', inbox: twilio_inbox, account: account, conversation: conversation
 | |
|         )
 | |
|         ::Twilio::SendOnTwilioService.new(message: outgoing_message).perform
 | |
| 
 | |
|         expect(outgoing_message.reload.source_id).to eq('1234')
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     it 'if outgoing message has attachment and is for whatsapp' do
 | |
|       # check for message attachment url
 | |
|       allow(messages_double).to receive(:create).with(hash_including(media_url: [anything])).and_return(message_record_double)
 | |
|       allow(message_record_double).to receive(:sid).and_return('1234')
 | |
| 
 | |
|       message = build(
 | |
|         :message, message_type: 'outgoing', inbox: twilio_whatsapp_inbox, account: account, conversation: conversation
 | |
|       )
 | |
|       attachment = message.attachments.new(account_id: message.account_id, file_type: :image)
 | |
|       attachment.file.attach(io: File.open(Rails.root.join('spec/assets/avatar.png')), filename: 'avatar.png', content_type: 'image/png')
 | |
|       message.save!
 | |
| 
 | |
|       ::Twilio::SendOnTwilioService.new(message: message).perform
 | |
|     end
 | |
|   end
 | |
| end
 |