about summary refs log tree commit diff
path: root/spec/services/update_remote_profile_service_spec.rb
blob: f3ea70b801b7ff943d08c95241e1b0a1435351dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
require 'rails_helper'

RSpec.describe UpdateRemoteProfileService, type: :service do
  let(:xml) { File.read(Rails.root.join('spec', 'fixtures', 'push', 'feed.atom')) }

  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.call(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.call(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

  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 '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

    it 'does not set store the avatar' do
      expect(remote_account.reload.avatar_file_name).to be_nil
    end
  end
end