summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-29 18:25:38 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-04-30 00:25:38 +0200
commitf48cb3eb170314cba1938522c0da44af21d47e83 (patch)
treeff588793c76f7e9ef43da8082d509c6f03988709
parent8325866c6101c7b63b616e7e0035080ef1af96a7 (diff)
More coverage yes more even more (#2627)
* Add coverage for admin/confirmations controller * Coverage for statuses controller show action * Add coverage for admin/domain_blocks controller * Add coverage for settings/profiles#update
-rw-r--r--app/controllers/admin/confirmations_controller.rb8
-rw-r--r--app/controllers/admin/domain_blocks_controller.rb6
-rw-r--r--spec/controllers/admin/confirmations_controller_spec.rb33
-rw-r--r--spec/controllers/admin/domain_blocks_controller_spec.rb40
-rw-r--r--spec/controllers/settings/profiles_controller_spec.rb12
-rw-r--r--spec/controllers/statuses_controller_spec.rb16
6 files changed, 108 insertions, 7 deletions
diff --git a/app/controllers/admin/confirmations_controller.rb b/app/controllers/admin/confirmations_controller.rb
index 6c41999e0ed..2542e21ee5b 100644
--- a/app/controllers/admin/confirmations_controller.rb
+++ b/app/controllers/admin/confirmations_controller.rb
@@ -2,17 +2,15 @@
module Admin
class ConfirmationsController < BaseController
- before_action :set_account
-
def create
- @account.user.confirm
+ account_user.confirm
redirect_to admin_accounts_path
end
private
- def set_account
- @account = Account.find(params[:account_id])
+ def account_user
+ Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end
end
end
diff --git a/app/controllers/admin/domain_blocks_controller.rb b/app/controllers/admin/domain_blocks_controller.rb
index d40ec829bfc..72bf1cd0dda 100644
--- a/app/controllers/admin/domain_blocks_controller.rb
+++ b/app/controllers/admin/domain_blocks_controller.rb
@@ -27,7 +27,7 @@ module Admin
def destroy
@domain_block = DomainBlock.find(params[:id])
- UnblockDomainService.new.call(@domain_block, resource_params[:retroactive])
+ UnblockDomainService.new.call(@domain_block, retroactive_unblock?)
redirect_to admin_domain_blocks_path, notice: I18n.t('admin.domain_blocks.destroyed_msg')
end
@@ -36,5 +36,9 @@ module Admin
def resource_params
params.require(:domain_block).permit(:domain, :severity, :reject_media, :retroactive)
end
+
+ def retroactive_unblock?
+ resource_params[:retroactive] == '1'
+ end
end
end
diff --git a/spec/controllers/admin/confirmations_controller_spec.rb b/spec/controllers/admin/confirmations_controller_spec.rb
new file mode 100644
index 00000000000..3f2b28c0e57
--- /dev/null
+++ b/spec/controllers/admin/confirmations_controller_spec.rb
@@ -0,0 +1,33 @@
+require 'rails_helper'
+
+RSpec.describe Admin::ConfirmationsController, type: :controller do
+ render_views
+
+ before do
+ sign_in Fabricate(:user, admin: true), scope: :user
+ end
+
+ describe 'POST #create' do
+ it 'confirms the user' do
+ account = Fabricate(:account)
+ user = Fabricate(:user, confirmed_at: false, account: account)
+ post :create, params: { account_id: account.id }
+
+ expect(response).to redirect_to(admin_accounts_path)
+ expect(user.reload).to be_confirmed
+ end
+
+ it 'raises an error when there is no account' do
+ post :create, params: { account_id: 'fake' }
+
+ expect(response).to have_http_status(:missing)
+ end
+
+ it 'raises an error when there is no user' do
+ account = Fabricate(:account, user: nil)
+ post :create, params: { account_id: account.id }
+
+ expect(response).to have_http_status(:missing)
+ end
+ end
+end
diff --git a/spec/controllers/admin/domain_blocks_controller_spec.rb b/spec/controllers/admin/domain_blocks_controller_spec.rb
index 4578efb02da..0ca41d7d417 100644
--- a/spec/controllers/admin/domain_blocks_controller_spec.rb
+++ b/spec/controllers/admin/domain_blocks_controller_spec.rb
@@ -10,7 +10,47 @@ RSpec.describe Admin::DomainBlocksController, type: :controller do
describe 'GET #index' do
it 'returns http success' do
get :index
+
expect(response).to have_http_status(:success)
end
end
+
+ describe 'GET #new' do
+ it 'returns http success' do
+ get :new
+
+ expect(response).to have_http_status(:success)
+ 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(:success)
+ end
+ end
+
+ describe 'POST #create' do
+ it 'blocks the domain' 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(response).to redirect_to(admin_domain_blocks_path)
+ 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, domain_block: { retroactive: '1' } }
+
+ expect(service).to have_received(:call).with(domain_block, true)
+ expect(response).to redirect_to(admin_domain_blocks_path)
+ end
+ end
end
diff --git a/spec/controllers/settings/profiles_controller_spec.rb b/spec/controllers/settings/profiles_controller_spec.rb
index b3d6bc47dcc..e502dbda74e 100644
--- a/spec/controllers/settings/profiles_controller_spec.rb
+++ b/spec/controllers/settings/profiles_controller_spec.rb
@@ -4,7 +4,8 @@ RSpec.describe Settings::ProfilesController, type: :controller do
render_views
before do
- sign_in Fabricate(:user), scope: :user
+ @user = Fabricate(:user)
+ sign_in @user, scope: :user
end
describe "GET #show" do
@@ -14,4 +15,13 @@ RSpec.describe Settings::ProfilesController, type: :controller do
end
end
+ describe 'PUT #update' do
+ it 'updates the user profile' do
+ account = Fabricate(:account, user: @user, display_name: 'Old name')
+
+ put :update, params: { account: { display_name: 'New name' } }
+ expect(account.reload.display_name).to eq 'New name'
+ expect(response).to redirect_to(settings_profile_path)
+ end
+ end
end
diff --git a/spec/controllers/statuses_controller_spec.rb b/spec/controllers/statuses_controller_spec.rb
new file mode 100644
index 00000000000..06ee23f3da8
--- /dev/null
+++ b/spec/controllers/statuses_controller_spec.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe StatusesController do
+ render_views
+
+ describe '#show' do
+ it 'returns a success' do
+ status = Fabricate(:status)
+ get :show, params: { account_username: status.account.username, id: status.id }
+
+ expect(response).to have_http_status(:success)
+ end
+ end
+end