.circleci
.dependabot
.github
app
bin
config
db
dist
lib
log
nanobox
public
spec
controllers
activitypub
admin
account_moderation_notes_controller_spec.rb
accounts_controller_spec.rb
action_logs_controller_spec.rb
base_controller_spec.rb
change_email_controller_spec.rb
confirmations_controller_spec.rb
custom_emojis_controller_spec.rb
dashboard_controller_spec.rb
domain_blocks_controller_spec.rb
email_domain_blocks_controller_spec.rb
instances_controller_spec.rb
invites_controller_spec.rb
report_notes_controller_spec.rb
reported_statuses_controller_spec.rb
reports_controller_spec.rb
resets_controller_spec.rb
roles_controller_spec.rb
settings_controller_spec.rb
statuses_controller_spec.rb
subscriptions_controller_spec.rb
tags_controller_spec.rb
two_factor_authentications_controller_spec.rb
api
auth
concerns
oauth
settings
well_known
about_controller_spec.rb
account_follow_controller_spec.rb
account_unfollow_controller_spec.rb
accounts_controller_spec.rb
application_controller_spec.rb
authorize_interactions_controller_spec.rb
emojis_controller_spec.rb
follower_accounts_controller_spec.rb
following_accounts_controller_spec.rb
home_controller_spec.rb
intents_controller_spec.rb
invites_controller_spec.rb
manifests_controller_spec.rb
media_controller_spec.rb
relationships_controller_spec.rb
remote_follow_controller_spec.rb
remote_interaction_controller_spec.rb
remote_unfollows_controller_spec.rb
shares_controller_spec.rb
statuses_controller_spec.rb
stream_entries_controller_spec.rb
tags_controller_spec.rb
fabricators
features
fixtures
helpers
lib
mailers
models
policies
presenters
requests
routing
serializers
services
support
validators
views
workers
rails_helper.rb
spec_helper.rb
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Record account suspend/silence time and keep track of domain blocks * Also unblock users who were suspended/silenced before dates were recorded * Add tests * Keep track of suspending date for users suspended through the CLI * Show accurate number of accounts that would be affected by unsuspending an instance * Change migration to set silenced_at and suspended_at * Revert "Also unblock users who were suspended/silenced before dates were recorded" This reverts commit a015c65d2d1e28c7b7cfab8b3f8cd5fb48b8b71c. * Switch from using suspended and silenced to suspended_at and silenced_at * Add post-deployment migration script to remove `suspended` and `silenced` columns * Use Account#silence! and Account#suspend! instead of updating the underlying property * Add silenced_at and suspended_at migration to post-migration * Change account fabricator to translate suspended and silenced attributes * Minor fixes * Make unblocking domains always retroactive
74 lines
2.5 KiB
Ruby
74 lines
2.5 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::DomainBlocksController, type: :controller do
|
|
render_views
|
|
|
|
before do
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
|
end
|
|
|
|
describe 'GET #new' do
|
|
it 'assigns a new domain block' do
|
|
get :new
|
|
|
|
expect(assigns(:domain_block)).to be_instance_of(DomainBlock)
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #show' do
|
|
it 'returns http success' do
|
|
domain_block = Fabricate(:domain_block)
|
|
get :show, params: { id: domain_block.id }
|
|
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'POST #create' do
|
|
it 'blocks the domain when succeeded to save' do
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence' } }
|
|
|
|
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
|
|
|
|
it 'renders new when failed to save' do
|
|
Fabricate(:domain_block, domain: 'example.com', severity: 'suspend')
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence' } }
|
|
|
|
expect(DomainBlockWorker).not_to have_received(:perform_async)
|
|
expect(response).to render_template :new
|
|
end
|
|
|
|
it 'allows upgrading a block' do
|
|
Fabricate(:domain_block, domain: 'example.com', severity: 'silence')
|
|
allow(DomainBlockWorker).to receive(:perform_async).and_return(true)
|
|
|
|
post :create, params: { domain_block: { domain: 'example.com', severity: 'silence', reject_media: true, reject_reports: 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
|
|
|
|
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)
|
|
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
|