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

describe Api::V1::Accounts::FollowerAccountsController do
  render_views

  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }

  before do
    allow(controller).to receive(:doorkeeper_token) { token }
  end

  describe 'GET #index' do
    let(:simon) { Fabricate(:account, username: 'simon') }
    let(:lewis) { Fabricate(:account, username: 'lewis') }

    before do
      simon.follow!(lewis)
    end

    it 'returns http success' do
      get :index, params: { account_id: lewis.id, limit: 1 }

      expect(response).to have_http_status(200)
    end

    it 'returns JSON with correct data' do
      get :index, params: { account_id: lewis.id, limit: 1 }

      json = body_as_json

      expect(json).to be_a Enumerable
      expect(json.first[:username]).to eq 'simon'
    end

    it 'does not return accounts blocking you' do
      simon.block!(user.account)
      get :index, params: { account_id: lewis.id, limit: 1 }

      json = body_as_json

      expect(json).to be_a Enumerable
      expect(json.size).to eq 0
    end
  end
end