mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
564efd0651
* Add appeals * Add ability to reject appeals and ability to browse pending appeals in admin UI * Add strikes to account page in settings * Various fixes and improvements - Add separate notification setting for appeals, separate from reports - Fix style of links in report/strike header - Change approving an appeal to not restore statuses (due to federation complexities) - Change style of successfully appealed strikes on account settings page - Change account settings page to only show unappealed or recently appealed strikes * Change appealed_at to overruled_at * Fix missing method error
54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::Disputes::AppealsController, type: :controller do
|
|
render_views
|
|
|
|
before { sign_in current_user, scope: :user }
|
|
|
|
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) }
|
|
|
|
before do
|
|
target_account.suspend!
|
|
end
|
|
|
|
describe 'POST #approve' do
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
|
|
|
before do
|
|
allow(UserMailer).to receive(:appeal_approved).and_return(double('email', deliver_later: nil))
|
|
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
|
|
|
|
it 'notifies target account about approved appeal' do
|
|
expect(UserMailer).to have_received(:appeal_approved).with(target_account.user, appeal)
|
|
end
|
|
end
|
|
|
|
describe 'POST #reject' do
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
|
|
|
before do
|
|
allow(UserMailer).to receive(:appeal_rejected).and_return(double('email', deliver_later: nil))
|
|
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
|
|
|
|
it 'notifies target account about rejected appeal' do
|
|
expect(UserMailer).to have_received(:appeal_rejected).with(target_account.user, appeal)
|
|
end
|
|
end
|
|
end
|