2016-03-07 11:42:33 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::AccountsController, type: :controller do
|
2016-09-07 22:33:07 +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-08 00:40:51 +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
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { id: user.account.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-03-19 11:13:47 +00:00
|
|
|
describe 'GET #statuses' do
|
2016-03-20 12:03:06 +00:00
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :statuses, params: { id: user.account.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
|
|
|
|
|
|
|
|
describe 'GET #followers' do
|
2016-03-20 12:03:06 +00:00
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :followers, params: { id: user.account.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
|
|
|
|
|
|
|
|
describe 'GET #following' do
|
2016-03-20 12:03:06 +00:00
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :following, params: { id: user.account.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
|
|
|
|
|
|
|
|
describe 'POST #follow' do
|
2016-09-08 00:40:51 +00:00
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
2016-03-20 12:03:06 +00:00
|
|
|
|
|
|
|
before do
|
2016-08-17 15:56:23 +00:00
|
|
|
post :follow, params: { id: other_account.id }
|
2016-03-20 12:03:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a following relation between user and target user' do
|
|
|
|
expect(user.account.following?(other_account)).to be true
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #unfollow' do
|
2016-09-08 00:40:51 +00:00
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
2016-03-20 12:03:06 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.follow!(other_account)
|
2016-08-17 15:56:23 +00:00
|
|
|
post :unfollow, params: { id: other_account.id }
|
2016-03-20 12:03:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the following relation between user and target user' do
|
|
|
|
expect(user.account.following?(other_account)).to be false
|
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
2016-09-21 20:07:18 +00:00
|
|
|
|
|
|
|
describe 'GET #relationships' do
|
|
|
|
let(:simon) { Fabricate(:user, email: 'simon@example.com', account: Fabricate(:account, username: 'simon')).account }
|
|
|
|
let(:lewis) { Fabricate(:user, email: 'lewis@example.com', account: Fabricate(:account, username: 'lewis')).account }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.follow!(simon)
|
|
|
|
lewis.follow!(user.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'provided only one ID' do
|
|
|
|
before do
|
|
|
|
get :relationships, params: { id: simon.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns JSON with correct data' do
|
|
|
|
json = body_as_json
|
|
|
|
|
|
|
|
expect(json).to be_a Enumerable
|
|
|
|
expect(json.first[:following]).to be true
|
|
|
|
expect(json.first[:followed_by]).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'provided multiple IDs' do
|
|
|
|
before do
|
|
|
|
get :relationships, params: { id: [simon.id, lewis.id] }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
xit 'returns JSON with correct data' do
|
|
|
|
# todo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|