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 Admin::Disputes::AppealsController do
|
2022-02-14 21:27:53 +01:00
|
|
|
render_views
|
|
|
|
|
2023-05-11 10:32:09 +02:00
|
|
|
before do
|
|
|
|
sign_in current_user, scope: :user
|
|
|
|
|
|
|
|
target_account.suspend!
|
|
|
|
end
|
2022-02-14 21:27:53 +01:00
|
|
|
|
|
|
|
let(:target_account) { Fabricate(:account) }
|
|
|
|
let(:strike) { Fabricate(:account_warning, target_account: target_account, action: :suspend) }
|
|
|
|
let(:appeal) { Fabricate(:appeal, strike: strike, account: target_account) }
|
|
|
|
|
2023-10-16 17:20:28 +02:00
|
|
|
describe 'GET #index' do
|
|
|
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
|
|
|
|
2023-10-19 17:25:54 +02:00
|
|
|
before { appeal }
|
|
|
|
|
|
|
|
it 'returns a page that lists details of appeals' do
|
2023-10-16 17:20:28 +02:00
|
|
|
get :index
|
|
|
|
|
2023-10-19 17:25:54 +02:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
expect(response.body).to include("<span class=\"username\">#{strike.account.username}</span>")
|
|
|
|
expect(response.body).to include("<span class=\"target\">#{appeal.account.username}</span>")
|
2023-10-16 17:20:28 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-14 21:27:53 +01:00
|
|
|
describe 'POST #approve' do
|
2022-07-05 02:41:40 +02:00
|
|
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2022-02-14 21:27:53 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
post :approve, params: { id: appeal.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'unsuspends a suspended account' do
|
|
|
|
expect(target_account.reload.suspended?).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects back to the strike page' do
|
|
|
|
expect(response).to redirect_to(disputes_strike_path(appeal.strike))
|
|
|
|
end
|
|
|
|
|
2024-01-10 12:06:58 +01:00
|
|
|
it 'notifies target account about approved appeal', :sidekiq_inline do
|
2023-10-27 17:33:52 +02:00
|
|
|
expect(UserMailer.deliveries.size).to eq(1)
|
|
|
|
expect(UserMailer.deliveries.first.to.first).to eq(target_account.user.email)
|
|
|
|
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.appeal_approved.subject', date: I18n.l(appeal.created_at)))
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #reject' do
|
2022-07-05 02:41:40 +02:00
|
|
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2022-02-14 21:27:53 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
post :reject, params: { id: appeal.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects back to the strike page' do
|
|
|
|
expect(response).to redirect_to(disputes_strike_path(appeal.strike))
|
|
|
|
end
|
|
|
|
|
2024-01-10 12:06:58 +01:00
|
|
|
it 'notifies target account about rejected appeal', :sidekiq_inline do
|
2023-10-27 17:33:52 +02:00
|
|
|
expect(UserMailer.deliveries.size).to eq(1)
|
|
|
|
expect(UserMailer.deliveries.first.to.first).to eq(target_account.user.email)
|
|
|
|
expect(UserMailer.deliveries.first.subject).to eq(I18n.t('user_mailer.appeal_rejected.subject', date: I18n.l(appeal.created_at)))
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|