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

describe Api::V1::Accounts::StatusesController do
  render_views

  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:token) { double acceptable?: true, resource_owner_id: user.id }

  before do
    allow(controller).to receive(:doorkeeper_token) { token }
    Fabricate(:status, account: user.account)
  end

  describe 'GET #index' do
    it 'returns http success' do
      get :index, params: { account_id: user.account.id, limit: 1 }

      expect(response).to have_http_status(:success)
      expect(response.headers['Link'].links.size).to eq(2)
    end
  end

  describe 'GET #index with only media' do
    it 'returns http success' do
      get :index, params: { account_id: user.account.id, only_media: true }

      expect(response).to have_http_status(:success)
    end
  end

  describe 'GET #index with exclude replies' do
    it 'returns http success' do
      get :index, params: { account_id: user.account.id, exclude_replies: true }

      expect(response).to have_http_status(:success)
    end
  end
end