mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-11 20:21:10 +00:00

Some checks failed
Bundler Audit / security (push) Has been cancelled
Check i18n / check-i18n (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Check formatting / lint (push) Has been cancelled
CSS Linting / lint (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
JavaScript Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
JavaScript Testing / test (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
Ruby Testing / build (production) (push) Has been cancelled
Ruby Testing / build (test) (push) Has been cancelled
Ruby Testing / test (.ruby-version) (push) Has been cancelled
Ruby Testing / test (3.2) (push) Has been cancelled
Ruby Testing / test (3.3) (push) Has been cancelled
Ruby Testing / Libvips tests (.ruby-version) (push) Has been cancelled
Ruby Testing / Libvips tests (3.2) (push) Has been cancelled
Ruby Testing / Libvips tests (3.3) (push) Has been cancelled
Ruby Testing / End to End testing (.ruby-version) (push) Has been cancelled
Ruby Testing / End to End testing (3.2) (push) Has been cancelled
Ruby Testing / End to End testing (3.3) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
220 lines
7.4 KiB
Ruby
220 lines
7.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::DomainBlocksController do
|
|
render_views
|
|
|
|
before do
|
|
sign_in Fabricate(:admin_user), scope: :user
|
|
end
|
|
|
|
describe 'GET #new' do
|
|
it 'assigns a new domain block' do
|
|
get :new
|
|
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
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' },
|
|
'2' => { enabled: '1', domain: 'mastodon.online', severity: 'suspend' },
|
|
},
|
|
},
|
|
}
|
|
|
|
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
|
|
|
|
describe 'POST #create' do
|
|
before do
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
|
end
|
|
|
|
context 'with "silence" severity and no conflict' do
|
|
before do
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence' } }
|
|
end
|
|
|
|
it 'records a block, calls a worker, redirects' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'silence')).to be true
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.created_msg')
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
it 'does not record a block or call worker, renders new' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'silence')).to be false
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
expect(response.parsed_body.title)
|
|
.to match(I18n.t('admin.domain_blocks.new.title'))
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
it 'does not record a block or call worker, renders confirm suspension' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be false
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
expect(response.parsed_body.title)
|
|
.to match(I18n.t('admin.domain_blocks.confirm_suspension.title', domain: 'example.com'))
|
|
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 and calls worker and redirects' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be true
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
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 or call worker, renders confirm suspension' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be false
|
|
|
|
expect(DomainBlockWorker).to_not have_received(:perform_async)
|
|
|
|
expect(response.parsed_body.title)
|
|
.to match(I18n.t('admin.domain_blocks.confirm_suspension.title', domain: 'example.com'))
|
|
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 and calls worker, redirects' do
|
|
expect(DomainBlock.exists?(domain: 'example.com', severity: 'suspend')).to be true
|
|
|
|
expect(DomainBlockWorker).to have_received(:perform_async)
|
|
|
|
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
|
|
end
|
|
|
|
describe 'GET #edit' do
|
|
let(:domain_block) { Fabricate(:domain_block) }
|
|
|
|
it 'returns http success' do
|
|
get :edit, params: { id: domain_block.id }
|
|
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'PUT #update', :inline_jobs do
|
|
subject do
|
|
post :update, params: { :id => domain_block.id, :domain_block => { domain: 'example.com', severity: new_severity }, 'confirm' => '' }
|
|
end
|
|
|
|
let!(:remote_account) { Fabricate(:account, domain: 'example.com') }
|
|
let(:domain_block) { Fabricate(:domain_block, domain: 'example.com', severity: original_severity) }
|
|
|
|
before do
|
|
BlockDomainService.new.call(domain_block)
|
|
end
|
|
|
|
context 'when downgrading a domain suspension to silence' do
|
|
let(:original_severity) { 'suspend' }
|
|
let(:new_severity) { 'silence' }
|
|
|
|
it 'changes the block severity, suspensions, and silences' do
|
|
expect { subject }
|
|
.to change_severity('suspend', 'silence')
|
|
.and change_suspended(true, false)
|
|
.and change_silenced(false, true)
|
|
end
|
|
end
|
|
|
|
context 'when upgrading a domain silence to suspend' do
|
|
let(:original_severity) { 'silence' }
|
|
let(:new_severity) { 'suspend' }
|
|
|
|
it 'changes the block severity, silences, and suspensions' do
|
|
expect { subject }
|
|
.to change_severity('silence', 'suspend')
|
|
.and change_silenced(true, false)
|
|
.and change_suspended(false, true)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def change_severity(from, to)
|
|
change { domain_block.reload.severity }.from(from).to(to)
|
|
end
|
|
|
|
def change_silenced(from, to)
|
|
change { remote_account.reload.silenced? }.from(from).to(to)
|
|
end
|
|
|
|
def change_suspended(from, to)
|
|
change { remote_account.reload.suspended? }.from(from).to(to)
|
|
end
|
|
end
|
|
|
|
describe 'DELETE #destroy' do
|
|
it 'unblocks the domain' do
|
|
service = instance_double(UnblockDomainService, call: true)
|
|
allow(UnblockDomainService).to receive(:new).and_return(service)
|
|
domain_block = Fabricate(:domain_block)
|
|
delete :destroy, params: { id: domain_block.id }
|
|
|
|
expect(service).to have_received(:call).with(domain_block)
|
|
expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.destroyed_msg')
|
|
expect(response).to redirect_to(admin_instances_path(limited: '1'))
|
|
end
|
|
end
|
|
end
|