2017-05-23 09:11:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-08 14:22:44 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-05-23 09:11:39 -07:00
|
|
|
describe Api::V1::Timelines::PublicController do
|
2016-11-08 14:22:44 -08:00
|
|
|
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
|
2017-07-27 06:16:07 -07:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id) }
|
2016-11-08 14:22:44 -08:00
|
|
|
|
2017-05-23 09:11:39 -07:00
|
|
|
describe 'GET #show' do
|
|
|
|
before do
|
|
|
|
PostStatusService.new.call(user.account, 'New status from user for federated public timeline.')
|
2016-11-08 14:22:44 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2017-05-23 09:11:39 -07:00
|
|
|
get :show
|
|
|
|
|
2018-04-21 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-23 09:11:39 -07:00
|
|
|
expect(response.headers['Link'].links.size).to eq(2)
|
2016-11-08 14:22:44 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-23 09:11:39 -07:00
|
|
|
describe 'GET #show with local only' do
|
2016-11-08 14:22:44 -08:00
|
|
|
before do
|
2017-05-23 09:11:39 -07:00
|
|
|
PostStatusService.new.call(user.account, 'New status from user for local public timeline.')
|
2016-11-08 14:22:44 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2017-05-23 09:11:39 -07:00
|
|
|
get :show, params: { local: true }
|
|
|
|
|
2018-04-21 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-23 09:11:39 -07:00
|
|
|
expect(response.headers['Link'].links.size).to eq(2)
|
2016-11-08 14:22:44 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a user context' do
|
2017-07-27 06:16:07 -07:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: nil) }
|
2016-11-08 14:22:44 -08:00
|
|
|
|
2017-05-23 09:11:39 -07:00
|
|
|
describe 'GET #show' do
|
2016-11-08 14:22:44 -08:00
|
|
|
it 'returns http success' do
|
2017-05-23 09:11:39 -07:00
|
|
|
get :show
|
2016-11-08 14:22:44 -08:00
|
|
|
|
2018-04-21 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-23 09:11:39 -07:00
|
|
|
expect(response.headers['Link']).to be_nil
|
2016-11-08 14:22:44 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|