trabajo-afectivo/spec/db/migrate/issue_2460_fix_corrupted_twitter_ids_spec.rb

32 lines
1.1 KiB
Ruby
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
require 'rails_helper'
RSpec.describe Issue2460FixCorruptedTwitterIds, type: :db_migration do
before { allow(Twitter::REST::Client).to receive(:new).and_return(client) }
let(:client) { double('Twitter::REST::Client', user: twitter_api_user) }
let(:twitter_api_user) { double('Twitter::User', id: twitter_api_user_id) }
let(:twitter_api_user_id) { 1234567890 } # rubocop:disable Style/NumericLiterals
context 'with existing, corrupted Twitter channel' do
let!(:twitter_channel) { create(:twitter_channel) }
it 'updates the channels stored user ID (as string)' do
expect { migrate }
.to change { twitter_channel.reload.options[:user][:id] }
.to(twitter_api_user_id.to_s)
end
context 'with invalid credentials stored' do
before { allow(Twitter::REST::Client).to receive(:new).and_raise(Twitter::Error::Unauthorized.new('Could not authenticate you.')) }
it 'skips the Channel' do
expect { migrate }
.not_to change { twitter_channel.reload.options[:user][:id] }
end
end
end
end