about summary refs log tree commit diff
path: root/spec/controllers/api/v1/suggestions_controller_spec.rb
blob: 17f10b04febc7dee48e6794e93eb1b7210805cfb (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::V1::SuggestionsController, type: :controller do
  render_views

  let(:user)  { Fabricate(:user) }
  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read write') }

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

  describe 'GET #index' do
    let(:bob) { Fabricate(:account) }
    let(:jeff) { Fabricate(:account) }

    before do
      PotentialFriendshipTracker.record(user.account_id, bob.id, :reblog)
      PotentialFriendshipTracker.record(user.account_id, jeff.id, :favourite)

      get :index
    end

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

    it 'returns accounts' do
      json = body_as_json

      expect(json.size).to be >= 1
      expect(json.map { |i| i[:id] }).to include *[bob, jeff].map { |i| i.id.to_s }
    end
  end
end