mastodon/spec/controllers/api/accounts_controller_spec.rb

75 lines
2.1 KiB
Ruby
Raw Normal View History

require 'rails_helper'
RSpec.describe Api::AccountsController, type: :controller do
render_views
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 => {})
allow(controller).to receive(:doorkeeper_token) { token }
end
2016-03-19 11:13:47 +00:00
describe 'GET #show' do
it 'returns http success' do
2016-08-17 15:56:23 +00:00
get :show, params: { id: user.account.id }
expect(response).to have_http_status(:success)
end
2016-03-19 11:13:47 +00:00
end
2016-03-19 11:13:47 +00:00
describe 'GET #statuses' do
it 'returns http success' do
2016-08-17 15:56:23 +00:00
get :statuses, params: { id: user.account.id }
expect(response).to have_http_status(:success)
end
2016-03-19 11:13:47 +00:00
end
describe 'GET #followers' do
it 'returns http success' do
2016-08-17 15:56:23 +00:00
get :followers, params: { id: user.account.id }
expect(response).to have_http_status(:success)
end
2016-03-19 11:13:47 +00:00
end
describe 'GET #following' do
it 'returns http success' do
2016-08-17 15:56:23 +00:00
get :following, params: { id: user.account.id }
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 }
before do
2016-08-17 15:56:23 +00:00
post :follow, params: { id: other_account.id }
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 }
before do
user.account.follow!(other_account)
2016-08-17 15:56:23 +00:00
post :unfollow, 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
2016-03-19 11:13:47 +00:00
end
end