2018-12-19 06:24:03 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
require 'pundit/rspec'
|
|
|
|
|
|
|
|
RSpec.describe AccountModerationNotePolicy do
|
2023-07-12 07:49:33 +00:00
|
|
|
subject { described_class }
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:john) { Fabricate(:account) }
|
2018-12-19 06:24:03 +00:00
|
|
|
|
|
|
|
permissions :create? do
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'when staff' do
|
2018-12-19 06:24:03 +00:00
|
|
|
it 'grants to create' do
|
2023-06-06 11:58:33 +00:00
|
|
|
expect(subject).to permit(admin, described_class)
|
2018-12-19 06:24:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'when not staff' do
|
2018-12-19 06:24:03 +00:00
|
|
|
it 'denies to create' do
|
2023-06-06 11:58:33 +00:00
|
|
|
expect(subject).to_not permit(john, described_class)
|
2018-12-19 06:24:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :destroy? do
|
|
|
|
let(:account_moderation_note) do
|
|
|
|
Fabricate(:account_moderation_note,
|
|
|
|
account: john,
|
|
|
|
target_account: Fabricate(:account))
|
|
|
|
end
|
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'when admin' do
|
2018-12-19 06:24:03 +00:00
|
|
|
it 'grants to destroy' do
|
2022-07-05 00:41:40 +00:00
|
|
|
expect(subject).to permit(admin, account_moderation_note)
|
2018-12-19 06:24:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'when owner' do
|
2018-12-19 06:24:03 +00:00
|
|
|
it 'grants to destroy' do
|
|
|
|
expect(subject).to permit(john, account_moderation_note)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'when neither admin nor owner' do
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:kevin) { Fabricate(:account) }
|
2018-12-19 06:24:03 +00:00
|
|
|
|
|
|
|
it 'denies to destroy' do
|
|
|
|
expect(subject).to_not permit(kevin, account_moderation_note)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|