.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
.sass-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
crowdin.yml
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::EmailDomainBlocksController, type: :controller do
|
|
render_views
|
|
|
|
before do
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
|
end
|
|
|
|
describe 'GET #index' do
|
|
around do |example|
|
|
default_per_page = EmailDomainBlock.default_per_page
|
|
EmailDomainBlock.paginates_per 1
|
|
example.run
|
|
EmailDomainBlock.paginates_per default_per_page
|
|
end
|
|
|
|
it 'renders email blacks' do
|
|
2.times { Fabricate(:email_domain_block) }
|
|
|
|
get :index, params: { page: 2 }
|
|
|
|
assigned = assigns(:email_domain_blocks)
|
|
expect(assigned.count).to eq 1
|
|
expect(assigned.klass).to be EmailDomainBlock
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #new' do
|
|
it 'assigns a new email black' do
|
|
get :new
|
|
|
|
expect(assigns(:email_domain_block)).to be_instance_of(EmailDomainBlock)
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'POST #create' do
|
|
it 'blocks the domain when succeeded to save' do
|
|
post :create, params: { email_domain_block: { domain: 'example.com' } }
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.email_domain_blocks.created_msg')
|
|
expect(response).to redirect_to(admin_email_domain_blocks_path)
|
|
end
|
|
end
|
|
|
|
describe 'DELETE #destroy' do
|
|
it 'unblocks the domain' do
|
|
email_domain_block = Fabricate(:email_domain_block)
|
|
delete :destroy, params: { id: email_domain_block.id }
|
|
|
|
expect(flash[:notice]).to eq I18n.t('admin.email_domain_blocks.destroyed_msg')
|
|
expect(response).to redirect_to(admin_email_domain_blocks_path)
|
|
end
|
|
end
|
|
end
|