2016-03-07 06:42:33 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-09-27 10:58:23 -04:00
|
|
|
RSpec.describe Api::V1::AccountsController, type: :controller do
|
2016-09-07 18:33:07 -04:00
|
|
|
render_views
|
|
|
|
|
2016-03-20 08:03:06 -04:00
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
|
|
|
let(:token) { double acceptable?: true, resource_owner_id: user.id }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
2016-03-19 07:13:47 -04:00
|
|
|
describe 'GET #show' do
|
2016-03-20 08:03:06 -04:00
|
|
|
it 'returns http success' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :show, params: { id: user.account.id }
|
2016-03-20 08:03:06 -04:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 07:13:47 -04:00
|
|
|
end
|
2016-03-07 06:42:33 -05:00
|
|
|
|
2017-05-19 17:32:37 -04:00
|
|
|
describe 'GET #search' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :search, params: { q: 'query' }
|
|
|
|
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-02 10:14:21 -04:00
|
|
|
describe 'GET #verify_credentials' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :verify_credentials
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-09 12:33:40 -04:00
|
|
|
describe 'PATCH #update_credentials' do
|
2017-04-09 14:23:14 -04:00
|
|
|
describe 'with valid data' do
|
|
|
|
before do
|
|
|
|
patch :update_credentials, params: {
|
|
|
|
display_name: "Alice Isn't Dead",
|
|
|
|
note: "Hi!\n\nToot toot!",
|
2017-05-02 20:04:16 -04:00
|
|
|
avatar: fixture_file_upload('files/avatar.gif', 'image/gif'),
|
|
|
|
header: fixture_file_upload('files/attachment.jpg', 'image/jpeg'),
|
2017-04-09 14:23:14 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates account info' do
|
|
|
|
user.account.reload
|
|
|
|
|
|
|
|
expect(user.account.display_name).to eq("Alice Isn't Dead")
|
|
|
|
expect(user.account.note).to eq("Hi!\n\nToot toot!")
|
|
|
|
expect(user.account.avatar).to exist
|
|
|
|
expect(user.account.header).to exist
|
|
|
|
end
|
2017-04-09 12:33:40 -04:00
|
|
|
end
|
|
|
|
|
2017-04-09 14:23:14 -04:00
|
|
|
describe 'with invalid data' do
|
|
|
|
before do
|
|
|
|
patch :update_credentials, params: { note: 'This is too long. ' * 10 }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http unprocessable entity' do
|
|
|
|
expect(response).to have_http_status(:unprocessable_entity)
|
|
|
|
end
|
2017-04-09 12:33:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-19 07:13:47 -04:00
|
|
|
describe 'GET #statuses' do
|
2016-03-20 08:03:06 -04:00
|
|
|
it 'returns http success' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :statuses, params: { id: user.account.id }
|
2016-03-20 08:03:06 -04:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 07:13:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #followers' do
|
2016-03-20 08:03:06 -04:00
|
|
|
it 'returns http success' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :followers, params: { id: user.account.id }
|
2016-03-20 08:03:06 -04:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 07:13:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #following' do
|
2016-03-20 08:03:06 -04:00
|
|
|
it 'returns http success' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :following, params: { id: user.account.id }
|
2016-03-20 08:03:06 -04:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-03-19 07:13:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #follow' do
|
2016-09-07 20:40:51 -04:00
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
2016-03-20 08:03:06 -04:00
|
|
|
|
|
|
|
before do
|
2016-08-17 11:56:23 -04:00
|
|
|
post :follow, params: { id: other_account.id }
|
2016-03-20 08:03:06 -04: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 07:13:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #unfollow' do
|
2016-09-07 20:40:51 -04:00
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
2016-03-20 08:03:06 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.follow!(other_account)
|
2016-08-17 11:56:23 -04:00
|
|
|
post :unfollow, params: { id: other_account.id }
|
2016-03-20 08:03:06 -04: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 07:13:47 -04:00
|
|
|
end
|
2016-09-21 16:07:18 -04:00
|
|
|
|
2016-10-03 12:17:06 -04:00
|
|
|
describe 'POST #block' do
|
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.follow!(other_account)
|
|
|
|
post :block, params: { id: other_account.id }
|
|
|
|
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
|
|
|
|
|
|
|
|
it 'creates a blocking relation' do
|
|
|
|
expect(user.account.blocking?(other_account)).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #unblock' do
|
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.block!(other_account)
|
|
|
|
post :unblock, params: { id: other_account.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the blocking relation between user and target user' do
|
|
|
|
expect(user.account.blocking?(other_account)).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-05 20:51:56 -05:00
|
|
|
describe 'POST #mute' do
|
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.follow!(other_account)
|
|
|
|
post :mute, params: {id: other_account.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not remove the following relation between user and target user' do
|
|
|
|
expect(user.account.following?(other_account)).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a muting relation' do
|
|
|
|
expect(user.account.muting?(other_account)).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #unmute' do
|
|
|
|
let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.account.mute!(other_account)
|
|
|
|
post :unmute, params: { id: other_account.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the muting relation between user and target user' do
|
|
|
|
expect(user.account.muting?(other_account)).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-21 16:07:18 -04: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
|
|
|
|
|
2017-05-19 18:27:13 -04:00
|
|
|
it 'returns JSON with correct data' do
|
|
|
|
json = body_as_json
|
|
|
|
|
|
|
|
expect(json).to be_a Enumerable
|
|
|
|
expect(json.first[:id]).to be simon.id
|
|
|
|
expect(json.first[:following]).to be true
|
|
|
|
expect(json.first[:followed_by]).to be false
|
|
|
|
expect(json.first[:muting]).to be false
|
|
|
|
expect(json.first[:requested]).to be false
|
|
|
|
expect(json.first[:domain_blocking]).to be false
|
|
|
|
|
|
|
|
expect(json.second[:id]).to be lewis.id
|
|
|
|
expect(json.second[:following]).to be false
|
|
|
|
expect(json.second[:followed_by]).to be true
|
|
|
|
expect(json.second[:muting]).to be false
|
|
|
|
expect(json.second[:requested]).to be false
|
|
|
|
expect(json.second[:domain_blocking]).to be false
|
2016-09-21 16:07:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-03-07 06:42:33 -05:00
|
|
|
end
|