Skip to content

Commit

Permalink
Add coverage/bugfix for invalid appeal submission (mastodon#28703)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski authored Jan 12, 2024
1 parent 7801db7 commit a906960
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/views/disputes/strikes/show.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

.report-header
.report-header__card
= render 'card', strike: @strike
= render 'disputes/strikes/card', strike: @strike

.report-header__details
.report-header__details__item
Expand Down
37 changes: 28 additions & 9 deletions spec/controllers/disputes/appeals_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,38 @@
let!(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }

describe '#create' do
let(:current_user) { Fabricate(:user) }
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }
context 'with valid params' do
let(:current_user) { Fabricate(:user) }
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }

before do
post :create, params: { strike_id: strike.id, appeal: { text: 'Foo' } }
end
before do
post :create, params: { strike_id: strike.id, appeal: { text: 'Foo' } }
end

it 'notifies staff about new appeal', :sidekiq_inline do
expect(ActionMailer::Base.deliveries.first.to).to eq([admin.email])
end

it 'notifies staff about new appeal', :sidekiq_inline do
expect(ActionMailer::Base.deliveries.first.to).to eq([admin.email])
it 'redirects back to the strike page' do
expect(response).to redirect_to(disputes_strike_path(strike.id))
end
end

it 'redirects back to the strike page' do
expect(response).to redirect_to(disputes_strike_path(strike.id))
context 'with invalid params' do
let(:current_user) { Fabricate(:user) }
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }

before do
post :create, params: { strike_id: strike.id, appeal: { text: '' } }
end

it 'does not send email', :sidekiq_inline do
expect(ActionMailer::Base.deliveries.size).to eq(0)
end

it 'renders the strike show page' do
expect(response).to render_template('disputes/strikes/show')
end
end
end
end

0 comments on commit a906960

Please sign in to comment.