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

RSpec.describe Api::V1::TimelinesController, type: :controller do
  render_views

  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }

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

  context 'with a user context' do
    let(:token) { double acceptable?: true, resource_owner_id: user.id }

    describe 'GET #home' do
      it 'returns http success' do
        get :home
        expect(response).to have_http_status(:success)
      end
    end

    describe 'GET #mentions' do
      it 'returns http success' do
        get :mentions
        expect(response).to have_http_status(:success)
      end
    end

    describe 'GET #public' do
      it 'returns http success' do
        get :public
        expect(response).to have_http_status(:success)
      end
    end

    describe 'GET #tag' do
      before do
        PostStatusService.new.call(user.account, 'It is a #test')
      end

      it 'returns http success' do
        get :tag, params: { id: 'test' }
        expect(response).to have_http_status(:success)
      end
    end
  end

  context 'without a user context' do
    let(:token) { double acceptable?: true, resource_owner_id: nil }

    describe 'GET #home' do
      it 'returns http unprocessable entity' do
        get :home
        expect(response).to have_http_status(:unprocessable_entity)
      end
    end

    describe 'GET #mentions' do
      it 'returns http unprocessable entity' do
        get :mentions
        expect(response).to have_http_status(:unprocessable_entity)
      end
    end

    describe 'GET #public' do
      it 'returns http success' do
        get :public
        expect(response).to have_http_status(:success)
      end
    end

    describe 'GET #tag' do
      it 'returns http success' do
        get :tag, params: { id: 'test' }
        expect(response).to have_http_status(:success)
      end
    end
  end
end