2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-03 23:49:53 -04:00
|
|
|
RSpec.describe Admin::DomainBlocksController do
|
2017-04-28 09:12:37 -04:00
|
|
|
render_views
|
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
before do
|
2022-07-04 20:41:40 -04:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
2016-12-13 07:42:10 -05:00
|
|
|
end
|
|
|
|
|
2017-04-29 18:25:38 -04:00
|
|
|
describe 'GET #new' do
|
2017-06-25 15:42:36 -04:00
|
|
|
it 'assigns a new domain block' do
|
2017-04-29 18:25:38 -04:00
|
|
|
get :new
|
|
|
|
|
2017-06-25 15:42:36 -04:00
|
|
|
expect(assigns(:domain_block)).to be_instance_of(DomainBlock)
|
2018-04-21 15:35:07 -04:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-29 18:25:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-11-17 05:05:09 -05:00
|
|
|
describe 'POST #batch' do
|
|
|
|
it 'blocks the domains when succeeded to save' do
|
|
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
|
|
|
|
|
|
|
post :batch, params: {
|
|
|
|
save: '',
|
|
|
|
form_domain_block_batch: {
|
|
|
|
domain_blocks_attributes: {
|
|
|
|
'0' => { enabled: '1', domain: 'example.com', severity: 'silence' },
|
|
|
|
'1' => { enabled: '0', domain: 'mastodon.social', severity: 'suspend' },
|
2023-02-18 09:33:41 -05:00
|
|
|
'2' => { enabled: '1', domain: 'mastodon.online', severity: 'suspend' },
|
|
|
|
},
|
|
|
|
},
|
2022-11-17 05:05:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async).exactly(2).times
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-29 18:25:38 -04:00
|
|
|
describe 'POST #create' do
|
2023-06-01 03:37:38 -04:00
|
|
|
before do
|
2017-04-29 18:25:38 -04:00
|
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
2023-06-01 03:37:38 -04:00
|
|
|
end
|
2017-06-25 15:42:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
context 'with "silence" severity and no conflict' do
|
|
|
|
before do
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence' } }
|
|
|
|
end
|
2017-04-29 18:25:38 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
it 'records a block' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'silence')).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects with a success message' do
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
|
|
end
|
2017-04-29 18:25:38 -04:00
|
|
|
end
|
2017-06-25 15:42:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
context 'when the new domain block conflicts with an existing one' do
|
|
|
|
before do
|
|
|
|
Fabricate(:domain_block, domain: 'example.com', severity: 'suspend')
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence' } }
|
|
|
|
end
|
2017-06-25 15:42:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
it 'does not record a block' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'silence')).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not call DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
end
|
2017-06-25 15:42:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
it 'renders new' do
|
|
|
|
expect(response).to render_template :new
|
|
|
|
end
|
2017-06-25 15:42:36 -04:00
|
|
|
end
|
2019-05-03 14:36:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
context 'with "suspend" severity and no conflict' do
|
|
|
|
context 'without a confirmation' do
|
|
|
|
before do
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'suspend', reject_media: true, reject_reports: true } }
|
|
|
|
end
|
2019-05-03 14:36:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
it 'does not record a block' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be false
|
|
|
|
end
|
2019-05-03 14:36:36 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
it 'does not call DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders confirm_suspension' do
|
|
|
|
expect(response).to render_template :confirm_suspension
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a confirmation' do
|
|
|
|
before do
|
|
|
|
post :create, params: { :domain_block => { domain: 'example.com', severity: 'suspend', reject_media: true, reject_reports: true }, 'confirm' => '' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'records a block' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects with a success message' do
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when upgrading an existing block' do
|
|
|
|
before do
|
|
|
|
Fabricate(:domain_block, domain: 'example.com', severity: 'silence')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a confirmation' do
|
|
|
|
before do
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'suspend', reject_media: true, reject_reports: true } }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not record a block' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not call DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders confirm_suspension' do
|
|
|
|
expect(response).to render_template :confirm_suspension
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a confirmation' do
|
|
|
|
before do
|
|
|
|
post :create, params: { :domain_block => { domain: 'example.com', severity: 'suspend', reject_media: true, reject_reports: true }, 'confirm' => '' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the record' do
|
|
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls DomainBlockWorker' do
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects with a success message' do
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
|
|
end
|
|
|
|
end
|
2019-05-03 14:36:36 -04:00
|
|
|
end
|
2017-04-29 18:25:38 -04:00
|
|
|
end
|
|
|
|
|
2022-12-15 11:45:02 -05:00
|
|
|
describe 'PUT #update' do
|
|
|
|
let!(:remote_account) { Fabricate(:account, domain: 'example.com') }
|
2023-02-19 21:17:41 -05:00
|
|
|
let(:subject) do
|
2023-06-01 03:37:38 -04:00
|
|
|
post :update, params: { :id => domain_block.id, :domain_block => { domain: 'example.com', severity: new_severity }, 'confirm' => '' }
|
2023-02-19 21:17:41 -05:00
|
|
|
end
|
|
|
|
let(:domain_block) { Fabricate(:domain_block, domain: 'example.com', severity: original_severity) }
|
2022-12-15 11:45:02 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
BlockDomainService.new.call(domain_block)
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when downgrading a domain suspension to silence' do
|
2022-12-15 11:45:02 -05:00
|
|
|
let(:original_severity) { 'suspend' }
|
|
|
|
let(:new_severity) { 'silence' }
|
|
|
|
|
|
|
|
it 'changes the block severity' do
|
|
|
|
expect { subject }.to change { domain_block.reload.severity }.from('suspend').to('silence')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'undoes individual suspensions' do
|
|
|
|
expect { subject }.to change { remote_account.reload.suspended? }.from(true).to(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'performs individual silences' do
|
|
|
|
expect { subject }.to change { remote_account.reload.silenced? }.from(false).to(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when upgrading a domain silence to suspend' do
|
2022-12-15 11:45:02 -05:00
|
|
|
let(:original_severity) { 'silence' }
|
|
|
|
let(:new_severity) { 'suspend' }
|
|
|
|
|
|
|
|
it 'changes the block severity' do
|
|
|
|
expect { subject }.to change { domain_block.reload.severity }.from('silence').to('suspend')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'undoes individual silences' do
|
|
|
|
expect { subject }.to change { remote_account.reload.silenced? }.from(true).to(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'performs individual suspends' do
|
|
|
|
expect { subject }.to change { remote_account.reload.suspended? }.from(false).to(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-29 18:25:38 -04:00
|
|
|
describe 'DELETE #destroy' do
|
|
|
|
it 'unblocks the domain' do
|
|
|
|
service = double(call: true)
|
|
|
|
allow(UnblockDomainService).to receive(:new).and_return(service)
|
|
|
|
domain_block = Fabricate(:domain_block)
|
2019-05-14 13:05:02 -04:00
|
|
|
delete :destroy, params: { id: domain_block.id }
|
2017-04-29 18:25:38 -04:00
|
|
|
|
2019-05-14 13:05:02 -04:00
|
|
|
expect(service).to have_received(:call).with(domain_block)
|
2017-06-25 15:42:36 -04:00
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.destroyed_msg')
|
2019-01-08 07:39:49 -05:00
|
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
2017-04-29 18:25:38 -04:00
|
|
|
end
|
|
|
|
end
|
2016-12-13 07:42:10 -05:00
|
|
|
end
|