2017-04-23 22:38:37 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
describe RelationshipsController do
|
2017-04-28 13:12:37 +00:00
|
|
|
render_views
|
|
|
|
|
2017-04-23 22:38:37 +00:00
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
2017-09-30 21:06:09 +00:00
|
|
|
shared_examples 'authenticate user' do
|
|
|
|
it 'redirects when not signed in' do
|
2023-02-20 04:00:48 +00:00
|
|
|
expect(subject).to redirect_to '/auth/sign_in'
|
2017-09-30 21:06:09 +00:00
|
|
|
end
|
2017-04-23 22:38:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2019-03-16 10:23:22 +00:00
|
|
|
subject { get :show, params: { page: 2, relationship: 'followed_by' } }
|
2017-09-30 21:06:09 +00:00
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
it 'assigns @accounts' do
|
2017-09-30 21:06:09 +00:00
|
|
|
Fabricate(:account, domain: 'old').follow!(user.account)
|
|
|
|
Fabricate(:account, domain: 'recent').follow!(user.account)
|
|
|
|
|
|
|
|
sign_in user, scope: :user
|
|
|
|
subject
|
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
assigned = assigns(:accounts).per(1).to_a
|
2017-09-30 21:06:09 +00:00
|
|
|
expect(assigned.size).to eq 1
|
|
|
|
expect(assigned[0].domain).to eq 'old'
|
|
|
|
end
|
|
|
|
|
2017-04-23 22:38:37 +00:00
|
|
|
it 'returns http success' do
|
2017-09-30 21:06:09 +00:00
|
|
|
sign_in user, scope: :user
|
|
|
|
subject
|
2018-04-21 19:35:07 +00:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-23 22:38:37 +00:00
|
|
|
end
|
2017-09-30 21:06:09 +00:00
|
|
|
|
|
|
|
include_examples 'authenticate user'
|
2017-04-23 22:38:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'PATCH #update' do
|
2021-05-07 17:32:58 +00:00
|
|
|
let(:poopfeast) { Fabricate(:account, username: 'poopfeast', domain: 'example.com') }
|
2017-04-23 22:38:37 +00:00
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
shared_examples 'redirects back to followers page' do
|
2017-09-30 21:06:09 +00:00
|
|
|
it 'redirects back to followers page' do
|
|
|
|
poopfeast.follow!(user.account)
|
|
|
|
|
|
|
|
sign_in user, scope: :user
|
|
|
|
subject
|
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
expect(response).to redirect_to(relationships_path)
|
2017-09-30 21:06:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when select parameter is not provided' do
|
|
|
|
subject { patch :update }
|
2023-02-20 01:46:00 +00:00
|
|
|
|
2019-03-16 10:23:22 +00:00
|
|
|
include_examples 'redirects back to followers page'
|
2017-04-23 22:38:37 +00:00
|
|
|
end
|
|
|
|
|
2017-09-30 21:06:09 +00:00
|
|
|
context 'when select parameter is provided' do
|
2019-03-16 10:23:22 +00:00
|
|
|
subject { patch :update, params: { form_account_batch: { account_ids: [poopfeast.id] }, block_domains: '' } }
|
2017-09-30 21:06:09 +00:00
|
|
|
|
|
|
|
it 'soft-blocks followers from selected domains' do
|
|
|
|
poopfeast.follow!(user.account)
|
|
|
|
|
|
|
|
sign_in user, scope: :user
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(poopfeast.following?(user.account)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'authenticate user'
|
2019-03-16 10:23:22 +00:00
|
|
|
include_examples 'redirects back to followers page'
|
2017-04-23 22:38:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|