~cytrogen/masto-fe

ref: e328ab7e5aee78e0d7eb55de4cfed3f3d812b197 masto-fe/spec/controllers/api/v1/polls_controller_spec.rb -rw-r--r-- 923 bytes
e328ab7e — Matt Jankowski Implement pending specs for StatusesController (#23969) 2 years ago
                                                                                
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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Api::V1::PollsController do
  render_views

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

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

  describe 'GET #show' do
    let(:poll) { Fabricate(:poll, status: Fabricate(:status, visibility: visibility)) }

    before do
      get :show, params: { id: poll.id }
    end

    context 'when parent status is public' do
      let(:visibility) { 'public' }

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

    context 'when parent status is private' do
      let(:visibility) { 'private' }

      it 'returns http not found' do
        expect(response).to have_http_status(404)
      end
    end
  end
end