about summary refs log tree commit diff
path: root/spec/controllers/api/salmon_controller_spec.rb
blob: d5be69c014ea5eca8f2fdcf1320c96925d167a9b (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
require 'rails_helper'

RSpec.describe Api::SalmonController, type: :controller do
  let(:account) { Fabricate(:account, username: 'catsrgr8', user: Fabricate(:user)) }

  before do
    stub_request(:get, "https://quitter.no/.well-known/host-meta").to_return(request_fixture('.host-meta.txt'))
    stub_request(:get, "https://quitter.no/.well-known/webfinger?resource=acct:gargron@quitter.no").to_return(request_fixture('webfinger.txt'))
    stub_request(:get, "https://quitter.no/api/statuses/user_timeline/7477.atom").to_return(request_fixture('feed.txt'))
    stub_request(:get, "https://quitter.no/avatar/7477-300-20160211190340.png").to_return(request_fixture('avatar.txt'))
  end

  describe 'POST #update' do
    before do
      request.env['RAW_POST_DATA'] = File.read(File.join(Rails.root, 'spec', 'fixtures', 'salmon', 'mention.xml'))
      post :update, id: account.id
    end

    it 'returns http success' do
      expect(response).to have_http_status(:success)
    end

    it 'creates remote account' do
      expect(Account.find_by(username: 'gargron', domain: 'quitter.no')).to_not be_nil
    end

    it 'creates status' do
      expect(Status.find_by(uri: 'tag:quitter.no,2016-03-20:noticeId=1276923:objectType=note')).to_not be_nil
    end

    it 'creates mention for target account' do
      expect(account.mentions.count).to eq 1
    end
  end
end