2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
RSpec.describe Disputes::AppealsController do
|
2022-02-14 21:27:53 +01:00
|
|
|
render_views
|
|
|
|
|
|
|
|
before { sign_in current_user, scope: :user }
|
|
|
|
|
2022-07-05 02:41:40 +02:00
|
|
|
let!(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2022-02-14 21:27:53 +01:00
|
|
|
|
|
|
|
describe '#create' do
|
2024-01-12 10:21:00 +01:00
|
|
|
context 'with valid params' do
|
|
|
|
let(:current_user) { Fabricate(:user) }
|
|
|
|
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }
|
2022-02-14 21:27:53 +01:00
|
|
|
|
2024-01-12 10:21:00 +01:00
|
|
|
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
|
2022-02-14 21:27:53 +01:00
|
|
|
|
2024-01-12 10:21:00 +01:00
|
|
|
it 'redirects back to the strike page' do
|
|
|
|
expect(response).to redirect_to(disputes_strike_path(strike.id))
|
|
|
|
end
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
|
2024-01-12 10:21:00 +01:00
|
|
|
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
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|