2016-03-07 11:42:33 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::StatusesController, type: :controller do
|
2016-09-04 23:26:08 +00:00
|
|
|
render_views
|
|
|
|
|
2016-03-20 12:03:06 +00:00
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
|
|
|
let(:token) { double acceptable?: true, resource_owner_id: user.id }
|
|
|
|
|
|
|
|
before do
|
2016-09-04 23:26:08 +00:00
|
|
|
stub_request(:post, "https://pubsubhubbub.superfeedr.com/").to_return(:status => 200, :body => "", :headers => {})
|
2016-03-20 12:03:06 +00:00
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
2016-03-19 11:13:47 +00:00
|
|
|
describe 'GET #show' do
|
2016-03-20 12:03:06 +00:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { id: status.id }
|
2016-03-20 12:03:06 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
|
2016-09-15 22:27:09 +00:00
|
|
|
describe 'GET #context' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
Fabricate(:status, account: user.account, thread: status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
get :context, params: { id: status.id }
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-19 11:13:47 +00:00
|
|
|
describe 'GET #home' do
|
2016-09-04 23:26:08 +00:00
|
|
|
it 'returns http success' do
|
|
|
|
get :home
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #mentions' do
|
2016-09-04 23:26:08 +00:00
|
|
|
it 'returns http success' do
|
|
|
|
get :mentions
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
2016-09-04 23:26:08 +00:00
|
|
|
before do
|
|
|
|
post :create, params: { status: 'Hello world' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #reblog' do
|
2016-09-04 23:26:08 +00:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
post :reblog, params: { id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the reblogs count' do
|
|
|
|
expect(status.reblogs_count).to eq 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the reblogged attribute' do
|
|
|
|
expect(user.account.reblogged?(status)).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'return json with updated attributes' do
|
2016-09-05 15:46:36 +00:00
|
|
|
hash_body = body_as_json
|
2016-09-04 23:26:08 +00:00
|
|
|
|
|
|
|
expect(hash_body[:reblog][:id]).to eq status.id
|
|
|
|
expect(hash_body[:reblog][:reblogs_count]).to eq 1
|
|
|
|
expect(hash_body[:reblog][:reblogged]).to be true
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #favourite' do
|
2016-09-04 23:26:08 +00:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
post :favourite, params: { id: status.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the favourites count' do
|
|
|
|
expect(status.favourites_count).to eq 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the favourited attribute' do
|
|
|
|
expect(user.account.favourited?(status)).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'return json with updated attributes' do
|
2016-09-05 15:46:36 +00:00
|
|
|
hash_body = body_as_json
|
2016-09-04 23:26:08 +00:00
|
|
|
|
|
|
|
expect(hash_body[:id]).to eq status.id
|
|
|
|
expect(hash_body[:favourites_count]).to eq 1
|
|
|
|
expect(hash_body[:favourited]).to be true
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|