2016-03-19 04:13:47 -07:00
require 'rails_helper'
2018-05-02 09:58:48 -07:00
RSpec . describe UpdateRemoteProfileService , type : :service do
2017-04-08 04:26:03 -07:00
let ( :xml ) { File . read ( File . join ( Rails . root , 'spec' , 'fixtures' , 'push' , 'feed.atom' ) ) }
2016-03-22 13:05:23 -07:00
2016-03-19 04:13:47 -07:00
subject { UpdateRemoteProfileService . new }
2016-03-22 13:05:23 -07:00
before do
stub_request ( :get , 'https://quitter.no/avatar/7477-300-20160211190340.png' ) . to_return ( request_fixture ( 'avatar.txt' ) )
end
context 'with updated details' do
let ( :remote_account ) { Fabricate ( :account , username : 'bob' , domain : 'example.com' ) }
before do
2016-11-26 06:12:57 -08:00
subject . call ( xml , remote_account )
2016-03-22 13:05:23 -07:00
end
it 'downloads new avatar' do
expect ( a_request ( :get , 'https://quitter.no/avatar/7477-300-20160211190340.png' ) ) . to have_been_made
end
it 'sets the avatar remote url' do
expect ( remote_account . reload . avatar_remote_url ) . to eq 'https://quitter.no/avatar/7477-300-20160211190340.png'
end
it 'sets display name' do
expect ( remote_account . reload . display_name ) . to eq 'D I G I T A L C A T '
end
it 'sets note' do
expect ( remote_account . reload . note ) . to eq 'Software engineer, free time musician and D I G I T A L S P O R T S enthusiast. Likes cats. Warning: May contain memes'
end
end
context 'with unchanged details' do
2016-11-26 06:12:57 -08:00
let ( :remote_account ) { Fabricate ( :account , username : 'bob' , domain : 'example.com' , display_name : 'D I G I T A L C A T ' , note : 'Software engineer, free time musician and D I G I T A L S P O R T S enthusiast. Likes cats. Warning: May contain memes' , avatar_remote_url : 'https://quitter.no/avatar/7477-300-20160211190340.png' ) }
2016-03-22 13:05:23 -07:00
before do
2016-11-26 06:12:57 -08:00
subject . call ( xml , remote_account )
2016-03-22 13:05:23 -07:00
end
it 'does not re-download avatar' do
expect ( a_request ( :get , 'https://quitter.no/avatar/7477-300-20160211190340.png' ) ) . to have_been_made . once
end
it 'sets the avatar remote url' do
expect ( remote_account . reload . avatar_remote_url ) . to eq 'https://quitter.no/avatar/7477-300-20160211190340.png'
end
it 'sets display name' do
expect ( remote_account . reload . display_name ) . to eq 'D I G I T A L C A T '
end
it 'sets note' do
expect ( remote_account . reload . note ) . to eq 'Software engineer, free time musician and D I G I T A L S P O R T S enthusiast. Likes cats. Warning: May contain memes'
end
end
2017-04-28 15:18:32 -07:00
context 'with updated details from a domain set to reject media' do
let ( :remote_account ) { Fabricate ( :account , username : 'bob' , domain : 'example.com' ) }
let! ( :domain_block ) { Fabricate ( :domain_block , domain : 'example.com' , reject_media : true ) }
before do
subject . call ( xml , remote_account )
end
it 'does not the avatar remote url' do
expect ( remote_account . reload . avatar_remote_url ) . to be_nil
end
it 'sets display name' do
expect ( remote_account . reload . display_name ) . to eq 'D I G I T A L C A T '
end
it 'sets note' do
expect ( remote_account . reload . note ) . to eq 'Software engineer, free time musician and D I G I T A L S P O R T S enthusiast. Likes cats. Warning: May contain memes'
end
it 'does not set store the avatar' do
expect ( remote_account . reload . avatar_file_name ) . to be_nil
end
end
2016-03-19 04:13:47 -07:00
end