Feature: Create conversations from Tweets (#470)
* Feature: Add tweets to conversations
This commit is contained in:
@@ -35,7 +35,7 @@ describe Facebook::SendReplyService do
|
||||
end
|
||||
|
||||
it 'if message has an FB ID' do
|
||||
create(:message, message_type: 'outgoing', inbox: facebook_inbox, account: account, fb_id: SecureRandom.uuid)
|
||||
create(:message, message_type: 'outgoing', inbox: facebook_inbox, account: account, source_id: SecureRandom.uuid)
|
||||
expect(bot).not_to have_received(:deliver)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -3,41 +3,72 @@ require 'rails_helper'
|
||||
describe Twitter::SendReplyService do
|
||||
subject(:send_reply_service) { described_class.new(message: message) }
|
||||
|
||||
before do
|
||||
allow($twitter).to receive(:send_direct_message).and_return(true)
|
||||
let(:twitter_client) { instance_double(::Twitty::Facade) }
|
||||
let(:account) { create(:account) }
|
||||
let(:widget_inbox) { create(:inbox, account: account) }
|
||||
let(:twitter_channel) { create(:channel_twitter_profile, account: account) }
|
||||
let(:twitter_inbox) { create(:inbox, channel: twitter_channel, account: account) }
|
||||
let(:contact) { create(:contact, account: account) }
|
||||
let(:contact_inbox) { create(:contact_inbox, contact: contact, inbox: twitter_inbox) }
|
||||
let(:dm_conversation) do
|
||||
create(
|
||||
:conversation,
|
||||
contact: contact,
|
||||
inbox: twitter_inbox,
|
||||
contact_inbox: contact_inbox,
|
||||
additional_attributes: { type: 'direct_message' }
|
||||
)
|
||||
end
|
||||
let(:tweet_conversation) do
|
||||
create(
|
||||
:conversation,
|
||||
contact: contact,
|
||||
inbox: twitter_inbox,
|
||||
contact_inbox: contact_inbox,
|
||||
additional_attributes: { type: 'tweet', tweet_id: '1234' }
|
||||
)
|
||||
end
|
||||
|
||||
let!(:account) { create(:account) }
|
||||
let!(:widget_inbox) { create(:inbox, account: account) }
|
||||
let!(:twitter_channel) { create(:channel_twitter_profile, account: account) }
|
||||
let!(:twitter_inbox) { create(:inbox, channel: twitter_channel, account: account) }
|
||||
let!(:contact) { create(:contact, account: account) }
|
||||
let(:contact_inbox) { create(:contact_inbox, contact: contact, inbox: twitter_inbox) }
|
||||
let(:conversation) { create(:conversation, contact: contact, inbox: twitter_inbox, contact_inbox: contact_inbox) }
|
||||
before do
|
||||
allow(::Twitty::Facade).to receive(:new).and_return(twitter_client)
|
||||
allow(twitter_client).to receive(:send_direct_message).and_return(true)
|
||||
allow(twitter_client).to receive(:send_tweet_reply).and_return(true)
|
||||
end
|
||||
|
||||
describe '#perform' do
|
||||
context 'without reply' do
|
||||
it 'if message is private' do
|
||||
create(:message, message_type: 'outgoing', private: true, inbox: twitter_inbox, account: account)
|
||||
expect($twitter).not_to have_received(:send_direct_message)
|
||||
end
|
||||
|
||||
it 'if inbox channel is not twitter profile' do
|
||||
create(:message, message_type: 'outgoing', inbox: widget_inbox, account: account)
|
||||
expect($twitter).not_to have_received(:send_direct_message)
|
||||
expect(twitter_client).not_to have_received(:send_direct_message)
|
||||
end
|
||||
|
||||
it 'if message is private' do
|
||||
create(:message, message_type: 'outgoing', private: true, inbox: twitter_inbox, account: account)
|
||||
expect(twitter_client).not_to have_received(:send_direct_message)
|
||||
end
|
||||
|
||||
it 'if message has source_id' do
|
||||
create(:message, message_type: 'outgoing', source_id: '123', inbox: widget_inbox, account: account)
|
||||
expect(twitter_client).not_to have_received(:send_direct_message)
|
||||
end
|
||||
|
||||
it 'if message is not outgoing' do
|
||||
create(:message, message_type: 'incoming', inbox: twitter_inbox, account: account)
|
||||
expect($twitter).not_to have_received(:send_direct_message)
|
||||
expect(twitter_client).not_to have_received(:send_direct_message)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with reply' do
|
||||
it 'if message is sent from chatwoot and is outgoing' do
|
||||
create(:message, message_type: :incoming, inbox: twitter_inbox, account: account, conversation: conversation)
|
||||
create(:message, message_type: 'outgoing', inbox: twitter_inbox, account: account, conversation: conversation)
|
||||
expect($twitter).to have_received(:send_direct_message)
|
||||
it 'if conversation is a direct message' do
|
||||
create(:message, message_type: :incoming, inbox: twitter_inbox, account: account, conversation: dm_conversation)
|
||||
create(:message, message_type: 'outgoing', inbox: twitter_inbox, account: account, conversation: dm_conversation)
|
||||
expect(twitter_client).to have_received(:send_direct_message)
|
||||
end
|
||||
|
||||
it 'if conversation is a tweet' do
|
||||
create(:message, message_type: :incoming, inbox: twitter_inbox, account: account, conversation: tweet_conversation)
|
||||
create(:message, message_type: 'outgoing', inbox: twitter_inbox, account: account, conversation: tweet_conversation)
|
||||
expect(twitter_client).to have_received(:send_tweet_reply)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user