2016-11-30 09:32:26 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Admin::AccountsController, type: :controller do
|
2017-04-28 09:12:37 -04:00
|
|
|
render_views
|
|
|
|
|
2018-06-12 08:24:46 -04:00
|
|
|
before { sign_in current_user, scope: :user }
|
2016-11-30 09:32:26 -05:00
|
|
|
|
|
|
|
describe 'GET #index' do
|
2018-06-12 08:24:46 -04:00
|
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
|
|
|
|
2017-06-28 19:43:10 -04:00
|
|
|
around do |example|
|
|
|
|
default_per_page = Account.default_per_page
|
|
|
|
Account.paginates_per 1
|
|
|
|
example.run
|
|
|
|
Account.paginates_per default_per_page
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters with parameters' do
|
|
|
|
new = AccountFilter.method(:new)
|
|
|
|
|
|
|
|
expect(AccountFilter).to receive(:new) do |params|
|
|
|
|
h = params.to_h
|
|
|
|
|
2021-12-05 15:48:39 -05:00
|
|
|
expect(h[:origin]).to eq 'local'
|
2017-06-28 19:43:10 -04:00
|
|
|
expect(h[:by_domain]).to eq 'domain'
|
2021-12-05 15:48:39 -05:00
|
|
|
expect(h[:status]).to eq 'active'
|
2017-06-28 19:43:10 -04:00
|
|
|
expect(h[:username]).to eq 'username'
|
|
|
|
expect(h[:display_name]).to eq 'display name'
|
|
|
|
expect(h[:email]).to eq 'local-part@domain'
|
|
|
|
expect(h[:ip]).to eq '0.0.0.42'
|
|
|
|
|
|
|
|
new.call({})
|
|
|
|
end
|
|
|
|
|
|
|
|
get :index, params: {
|
2021-12-05 15:48:39 -05:00
|
|
|
origin: 'local',
|
2017-06-28 19:43:10 -04:00
|
|
|
by_domain: 'domain',
|
2021-12-05 15:48:39 -05:00
|
|
|
status: 'active',
|
2017-06-28 19:43:10 -04:00
|
|
|
username: 'username',
|
|
|
|
display_name: 'display name',
|
|
|
|
email: 'local-part@domain',
|
|
|
|
ip: '0.0.0.42'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'paginates accounts' do
|
|
|
|
Fabricate(:account)
|
|
|
|
|
|
|
|
get :index, params: { page: 2 }
|
|
|
|
|
|
|
|
accounts = assigns(:accounts)
|
|
|
|
expect(accounts.count).to eq 1
|
|
|
|
expect(accounts.klass).to be Account
|
|
|
|
end
|
|
|
|
|
2016-11-30 09:32:26 -05:00
|
|
|
it 'returns http success' do
|
|
|
|
get :index
|
2018-04-21 15:35:07 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2018-06-12 08:24:46 -04:00
|
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
2022-01-27 18:46:42 -05:00
|
|
|
let(:account) { Fabricate(:account) }
|
2016-12-03 14:04:19 -05:00
|
|
|
|
2016-11-30 09:32:26 -05:00
|
|
|
it 'returns http success' do
|
2016-12-03 14:04:19 -05:00
|
|
|
get :show, params: { id: account.id }
|
2018-04-21 15:35:07 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|
|
|
|
end
|
2018-06-12 08:24:46 -04:00
|
|
|
|
|
|
|
describe 'POST #memorialize' do
|
|
|
|
subject { post :memorialize, params: { id: account.id } }
|
|
|
|
|
|
|
|
let(:current_user) { Fabricate(:user, admin: current_user_admin) }
|
2022-01-27 18:46:42 -05:00
|
|
|
let(:account) { user.account }
|
2018-06-12 08:24:46 -04:00
|
|
|
let(:user) { Fabricate(:user, admin: target_user_admin) }
|
|
|
|
|
|
|
|
context 'when user is admin' do
|
|
|
|
let(:current_user_admin) { true }
|
|
|
|
|
|
|
|
context 'when target user is admin' do
|
|
|
|
let(:target_user_admin) { true }
|
|
|
|
|
|
|
|
it 'fails to memorialize account' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
expect(account.reload).not_to be_memorial
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when target user is not admin' do
|
|
|
|
let(:target_user_admin) { false }
|
|
|
|
|
|
|
|
it 'succeeds in memorializing account' do
|
|
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
|
|
expect(account.reload).to be_memorial
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not admin' do
|
|
|
|
let(:current_user_admin) { false }
|
|
|
|
|
|
|
|
context 'when target user is admin' do
|
|
|
|
let(:target_user_admin) { true }
|
|
|
|
|
|
|
|
it 'fails to memorialize account' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
expect(account.reload).not_to be_memorial
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when target user is not admin' do
|
|
|
|
let(:target_user_admin) { false }
|
|
|
|
|
|
|
|
it 'fails to memorialize account' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
expect(account.reload).not_to be_memorial
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #enable' do
|
|
|
|
subject { post :enable, params: { id: account.id } }
|
|
|
|
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
2022-01-27 18:46:42 -05:00
|
|
|
let(:account) { user.account }
|
2018-06-12 08:24:46 -04:00
|
|
|
let(:user) { Fabricate(:user, disabled: true) }
|
|
|
|
|
|
|
|
context 'when user is admin' do
|
|
|
|
let(:admin) { true }
|
|
|
|
|
|
|
|
it 'succeeds in enabling account' do
|
|
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
|
|
expect(user.reload).not_to be_disabled
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not admin' do
|
|
|
|
let(:admin) { false }
|
|
|
|
|
|
|
|
it 'fails to enable account' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
expect(user.reload).to be_disabled
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #redownload' do
|
|
|
|
subject { post :redownload, params: { id: account.id } }
|
|
|
|
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
|
|
|
|
context 'when user is admin' do
|
|
|
|
let(:admin) { true }
|
|
|
|
|
|
|
|
it 'succeeds in redownloadin' do
|
|
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not admin' do
|
|
|
|
let(:admin) { false }
|
|
|
|
|
|
|
|
it 'fails to redownload' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #remove_avatar' do
|
|
|
|
subject { post :remove_avatar, params: { id: account.id } }
|
|
|
|
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
|
|
|
|
context 'when user is admin' do
|
|
|
|
let(:admin) { true }
|
|
|
|
|
|
|
|
it 'succeeds in removing avatar' do
|
|
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not admin' do
|
|
|
|
let(:admin) { false }
|
|
|
|
|
|
|
|
it 'fails to remove avatar' do
|
|
|
|
is_expected.to have_http_status :forbidden
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-12-17 17:02:14 -05:00
|
|
|
|
|
|
|
describe 'POST #unblock_email' do
|
2022-03-28 06:43:58 -04:00
|
|
|
subject { post :unblock_email, params: { id: account.id } }
|
2021-12-17 17:02:14 -05:00
|
|
|
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
|
|
let(:account) { Fabricate(:account, suspended: true) }
|
|
|
|
let!(:email_block) { Fabricate(:canonical_email_block, reference_account: account) }
|
|
|
|
|
|
|
|
context 'when user is admin' do
|
|
|
|
let(:admin) { true }
|
|
|
|
|
|
|
|
it 'succeeds in removing email blocks' do
|
2022-03-28 06:43:58 -04:00
|
|
|
expect { subject }.to change { CanonicalEmailBlock.where(reference_account: account).count }.from(1).to(0)
|
2021-12-17 17:02:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to admin account path' do
|
2022-03-28 06:43:58 -04:00
|
|
|
subject
|
2021-12-17 17:02:14 -05:00
|
|
|
expect(response).to redirect_to admin_account_path(account.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not admin' do
|
|
|
|
let(:admin) { false }
|
|
|
|
|
|
|
|
it 'fails to remove avatar' do
|
2022-03-28 06:43:58 -04:00
|
|
|
subject
|
2021-12-17 17:02:14 -05:00
|
|
|
expect(response).to have_http_status :forbidden
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-11-30 09:32:26 -05:00
|
|
|
end
|