2018-12-20 17:52:18 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ReportNotePolicy do
|
2023-07-12 09:49:33 +02:00
|
|
|
subject { described_class }
|
|
|
|
|
2022-07-05 02:41:40 +02:00
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:john) { Fabricate(:account) }
|
2018-12-20 17:52:18 +01:00
|
|
|
|
|
|
|
permissions :create? do
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'when staff?' do
|
2018-12-20 17:52:18 +01:00
|
|
|
it 'permits' do
|
|
|
|
expect(subject).to permit(admin, ReportNote)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'with !staff?' do
|
2018-12-20 17:52:18 +01:00
|
|
|
it 'denies' do
|
|
|
|
expect(subject).to_not permit(john, ReportNote)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :destroy? do
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'when admin?' do
|
2018-12-20 17:52:18 +01:00
|
|
|
it 'permit' do
|
2022-07-05 02:41:40 +02:00
|
|
|
report_note = Fabricate(:report_note, account: john)
|
|
|
|
expect(subject).to permit(admin, report_note)
|
2018-12-20 17:52:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-12 12:25:32 +02:00
|
|
|
context 'when owner?' do
|
|
|
|
it 'permit' do
|
|
|
|
report_note = Fabricate(:report_note, account: john)
|
|
|
|
expect(subject).to permit(john, report_note)
|
2018-12-20 17:52:18 +01:00
|
|
|
end
|
2023-05-12 12:25:32 +02:00
|
|
|
end
|
2018-12-20 17:52:18 +01:00
|
|
|
|
2023-05-12 12:25:32 +02:00
|
|
|
context 'with !owner?' do
|
|
|
|
it 'denies' do
|
|
|
|
report_note = Fabricate(:report_note)
|
|
|
|
expect(subject).to_not permit(john, report_note)
|
2018-12-20 17:52:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|