83 lines
3.1 KiB
Ruby
83 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::ExportDomainBlocksController do
|
|
render_views
|
|
|
|
before do
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin')), scope: :user
|
|
end
|
|
|
|
describe 'GET #new' do
|
|
it 'returns http success' do
|
|
get :new
|
|
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #export' do
|
|
it 'renders instances' do
|
|
Fabricate(:domain_block, domain: 'bad.domain', severity: 'silence', public_comment: 'bad server')
|
|
Fabricate(:domain_block, domain: 'worse.domain', severity: 'suspend', reject_media: true, reject_reports: true, public_comment: 'worse server', obfuscate: true)
|
|
Fabricate(:domain_block, domain: 'reject.media', severity: 'noop', reject_media: true, public_comment: 'reject media and test unicode characters ♥')
|
|
Fabricate(:domain_block, domain: 'little.spam', severity: 'noop', public_comment: 'has some spams', reject_favourite: true, reject_reply: true, reject_straight_follow: true)
|
|
Fabricate(:domain_block, domain: 'no.op', severity: 'noop', public_comment: 'noop')
|
|
|
|
get :export, params: { format: :csv }
|
|
expect(response).to have_http_status(200)
|
|
expect(response.body).to eq(domain_blocks_csv_file)
|
|
end
|
|
|
|
private
|
|
|
|
def domain_blocks_csv_file
|
|
File.read(File.join(file_fixture_path, 'domain_blocks.csv'))
|
|
end
|
|
end
|
|
|
|
describe 'POST #import' do
|
|
context 'with complete domain blocks CSV' do
|
|
before do
|
|
post :import, params: { admin_import: { data: fixture_file_upload('domain_blocks.csv') } }
|
|
end
|
|
|
|
it 'renders page with expected domain blocks' do
|
|
expect(assigns(:domain_blocks).map { |block| [block.domain, block.severity.to_sym] }).to contain_exactly(['bad.domain', :silence], ['worse.domain', :suspend], ['reject.media', :noop], ['little.spam', :noop])
|
|
end
|
|
|
|
it 'renders page with extended domain blocks' do
|
|
expect(assigns(:domain_blocks).map { |block| [block.domain, block.reject_favourite, block.reject_reply, block.reject_friend] }).to contain_exactly(
|
|
['bad.domain', false, false, false],
|
|
['worse.domain', false, false, false],
|
|
['reject.media', false, false, false],
|
|
['little.spam', true, true, false]
|
|
)
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
context 'with a list of only domains' do
|
|
before do
|
|
post :import, params: { admin_import: { data: fixture_file_upload('domain_blocks_list.txt') } }
|
|
end
|
|
|
|
it 'renders page with expected domain blocks' do
|
|
expect(assigns(:domain_blocks).map { |block| [block.domain, block.severity.to_sym] }).to contain_exactly(['bad.domain', :suspend], ['worse.domain', :suspend], ['reject.media', :suspend])
|
|
end
|
|
|
|
it 'returns http success' do
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|
|
|
|
it 'displays error on no file selected' do
|
|
post :import, params: { admin_import: {} }
|
|
expect(flash[:alert]).to eq(I18n.t('admin.export_domain_blocks.no_file'))
|
|
end
|
|
end
|