commit: 8f991831b8de01b69d6b0f069aa43d9326c93a1d
parent: 87efa3872193084468c25f410f5cf9189c0b976e
Author: Akihiko Odaki (@fn_aki@pawoo.net) <akihiko.odaki.4i@stu.hosei.ac.jp>
Date: Mon, 26 Jun 2017 04:42:36 +0900
Cover Admin::DomainBlocksController more (#3329)
Also domain_block fabricator now sets unique domains
Diffstat:
2 files changed, 31 insertions(+), 5 deletions(-)
diff --git a/spec/controllers/admin/domain_blocks_controller_spec.rb b/spec/controllers/admin/domain_blocks_controller_spec.rb
@@ -8,17 +8,30 @@ RSpec.describe Admin::DomainBlocksController, type: :controller do
end
describe 'GET #index' do
- it 'returns http success' do
- get :index
+ around do |example|
+ default_per_page = DomainBlock.default_per_page
+ DomainBlock.paginates_per 1
+ example.run
+ DomainBlock.paginates_per default_per_page
+ end
+
+ it 'renders domain blocks' do
+ 2.times { Fabricate(:domain_block) }
+ get :index, params: { page: 2 }
+
+ assigned = assigns(:domain_blocks)
+ expect(assigned.count).to eq 1
+ expect(assigned.klass).to be DomainBlock
expect(response).to have_http_status(:success)
end
end
describe 'GET #new' do
- it 'returns http success' 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(:success)
end
end
@@ -33,13 +46,25 @@ RSpec.describe Admin::DomainBlocksController, type: :controller do
end
describe 'POST #create' do
- it 'blocks the domain' 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_domain_blocks_path)
end
+
+ it 'renders new when failed to save' do
+ Fabricate(:domain_block, domain: 'example.com')
+ 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
end
describe 'DELETE #destroy' do
@@ -50,6 +75,7 @@ RSpec.describe Admin::DomainBlocksController, type: :controller do
delete :destroy, params: { id: domain_block.id, domain_block: { retroactive: '1' } }
expect(service).to have_received(:call).with(domain_block, true)
+ expect(flash[:notice]).to eq I18n.t('admin.domain_blocks.destroyed_msg')
expect(response).to redirect_to(admin_domain_blocks_path)
end
end
diff --git a/spec/fabricators/domain_block_fabricator.rb b/spec/fabricators/domain_block_fabricator.rb
@@ -1,3 +1,3 @@
Fabricator(:domain_block) do
- domain "example.com"
+ domain { sequence(:domain) { |i| "#{i}#{Faker::Internet.domain_name}" } }
end