2018-12-19 16:56:59 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
require 'pundit/rspec'
|
|
|
|
|
|
|
|
RSpec.describe AccountPolicy do
|
2023-07-12 16:49:33 +09:00
|
|
|
subject { described_class }
|
|
|
|
|
2022-07-05 09:41:40 +09:00
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2022-01-28 08:46:42 +09:00
|
|
|
let(:john) { Fabricate(:account) }
|
|
|
|
let(:alice) { Fabricate(:account) }
|
2018-12-19 16:56:59 +09:00
|
|
|
|
2020-11-08 08:28:39 +09:00
|
|
|
permissions :index? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when staff' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not staff' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-08 08:28:39 +09:00
|
|
|
permissions :show?, :unsilence?, :unsensitive?, :remove_avatar?, :remove_header? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when staff' do
|
2020-11-08 08:28:39 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not staff' do
|
2020-11-08 08:28:39 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-18 07:02:14 +09:00
|
|
|
permissions :unsuspend?, :unblock_email? do
|
2020-11-08 08:28:39 +09:00
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when staff' do
|
2020-11-08 08:28:39 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not staff' do
|
2020-11-08 08:28:39 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-05 09:41:40 +09:00
|
|
|
permissions :redownload? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when admin' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not admin' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :suspend?, :silence? do
|
2022-07-05 09:41:40 +09:00
|
|
|
let(:staff) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2018-12-19 16:56:59 +09:00
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when staff' do
|
|
|
|
context 'when record is staff' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(admin, staff)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when record is not staff' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, john)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not staff' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, Account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :memorialize? do
|
2022-07-05 09:41:40 +09:00
|
|
|
let(:other_admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2018-12-19 16:56:59 +09:00
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when admin' do
|
|
|
|
context 'when record is admin' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(admin, other_admin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when record is not admin' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, john)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not admin' do
|
2018-12-19 16:56:59 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, Account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-03-05 00:57:22 +09:00
|
|
|
|
|
|
|
permissions :review? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when admin' do
|
2023-03-05 00:57:22 +09:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not admin' do
|
2023-03-05 00:57:22 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :destroy? do
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when admin' do
|
2023-03-05 00:57:22 +09:00
|
|
|
context 'with a temporarily suspended account' do
|
|
|
|
before { allow(alice).to receive(:suspended_temporarily?).and_return(true) }
|
|
|
|
|
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a not temporarily suspended account' do
|
|
|
|
before { allow(alice).to receive(:suspended_temporarily?).and_return(false) }
|
|
|
|
|
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(admin, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when not admin' do
|
2023-03-05 00:57:22 +09:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, alice)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-12-19 16:56:59 +09:00
|
|
|
end
|