30f4c08143
* Add Twitter SignIn flow Co-authored-by: Sojan Jose <sojan@pepalo.com>
33 lines
1.5 KiB
Ruby
33 lines
1.5 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe 'Twitter::CallbacksController', type: :request do
|
|
subject(:webhook_subscribe_service) { described_class.new(inbox_id: twitter_inbox.id) }
|
|
|
|
let(:twitter_client) { instance_double(::Twitty::Facade) }
|
|
let(:twitter_response) { instance_double(::Twitty::Response, status: '200', body: { message: 'Valid' }) }
|
|
let(:raw_response) do
|
|
object_double('raw_response', body: 'oauth_token=1&oauth_token_secret=1&user_id=100&screen_name=chatwoot')
|
|
end
|
|
let(:account) { create(:account) }
|
|
|
|
before do
|
|
allow(::Twitty::Facade).to receive(:new).and_return(twitter_client)
|
|
allow(::Redis::Alfred).to receive(:get).and_return(account.id)
|
|
allow(::Redis::Alfred).to receive(:delete).and_return('OK')
|
|
allow(twitter_client).to receive(:access_token).and_return(twitter_response)
|
|
allow(twitter_client).to receive(:register_webhook).and_return(twitter_response)
|
|
allow(twitter_client).to receive(:subscribe_webhook).and_return(true)
|
|
allow(twitter_response).to receive(:raw_response).and_return(raw_response)
|
|
end
|
|
|
|
describe 'GET /twitter/callback' do
|
|
it 'renders the page correctly when called with website_token' do
|
|
get twitter_callback_url
|
|
account.reload
|
|
expect(response).to redirect_to app_twitter_inbox_agents_url(inbox_id: account.inboxes.last.id)
|
|
expect(account.inboxes.count).to be 1
|
|
expect(account.twitter_profiles.last.inbox.name).to eq 'chatwoot'
|
|
expect(account.twitter_profiles.last.profile_id).to eq '100'
|
|
end
|
|
end
|
|
end
|