validates :username, uniqueness: { scope: :domain, case_sensitive: true }, unless: 'local?'
# Avatar upload
- attr_reader :avatar_remote_url
has_attached_file :avatar, styles: { large: '300x300#', medium: '96x96#', small: '48x48#' }, default_url: 'avatars/missing.png'
validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/
end
def avatar_remote_url=(url)
- self.avatar = URI.parse(url)
- @avatar_remote_url = url
+ unless self[:avatar_remote_url] == url
+ self.avatar = URI.parse(url)
+ end
+
+ self[:avatar_remote_url] = url
end
def to_param
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20160316103650) do
+ActiveRecord::Schema.define(version: 20160322193748) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
t.string "header_content_type"
t.integer "header_file_size"
t.datetime "header_updated_at"
+ t.string "avatar_remote_url"
end
add_index "accounts", ["username", "domain"], name: "index_accounts_on_username_and_domain", unique: true, using: :btree
require 'rails_helper'
RSpec.describe UpdateRemoteProfileService do
+ let(:xml) { Nokogiri::XML(File.read(File.join(Rails.root, 'spec', 'fixtures', 'push', 'feed.atom'))).at_xpath('//xmlns:author') }
+
subject { UpdateRemoteProfileService.new }
+
+ 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
+ subject.(xml, remote_account)
+ 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 'DIGITAL CAT'
+ end
+
+ it 'sets note' do
+ expect(remote_account.reload.note).to eq 'Software engineer, free time musician and DIGITAL SPORTS enthusiast. Likes cats. Warning: May contain memes'
+ end
+ end
+
+ context 'with unchanged details' do
+ let(:remote_account) { Fabricate(:account, username: 'bob', domain: 'example.com',display_name: 'DIGITAL CAT', note: 'Software engineer, free time musician and DIGITAL SPORTS enthusiast. Likes cats. Warning: May contain memes', avatar_remote_url: 'https://quitter.no/avatar/7477-300-20160211190340.png') }
+
+ before do
+ subject.(xml, remote_account)
+ 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 'DIGITAL CAT'
+ end
+
+ it 'sets note' do
+ expect(remote_account.reload.note).to eq 'Software engineer, free time musician and DIGITAL SPORTS enthusiast. Likes cats. Warning: May contain memes'
+ end
+ end
end