~cytrogen/masto-fe

ref: bb98d970e3f3333f85d454bc1fd26a1b582b14d2 masto-fe/spec/policies/account_moderation_note_policy_spec.rb -rw-r--r-- 1.3 KiB
bb98d970 — Claire Merge pull request #2291 from ClearlyClaire/glitch-soc/merge-upstream 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

require 'rails_helper'
require 'pundit/rspec'

RSpec.describe AccountModerationNotePolicy do
  subject { described_class }

  let(:admin)   { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
  let(:john)    { Fabricate(:account) }

  permissions :create? do
    context 'when staff' do
      it 'grants to create' do
        expect(subject).to permit(admin, described_class)
      end
    end

    context 'when not staff' do
      it 'denies to create' do
        expect(subject).to_not permit(john, described_class)
      end
    end
  end

  permissions :destroy? do
    let(:account_moderation_note) do
      Fabricate(:account_moderation_note,
                account: john,
                target_account: Fabricate(:account))
    end

    context 'when admin' do
      it 'grants to destroy' do
        expect(subject).to permit(admin, account_moderation_note)
      end
    end

    context 'when owner' do
      it 'grants to destroy' do
        expect(subject).to permit(john, account_moderation_note)
      end
    end

    context 'when neither admin nor owner' do
      let(:kevin) { Fabricate(:account) }

      it 'denies to destroy' do
        expect(subject).to_not permit(kevin, account_moderation_note)
      end
    end
  end
end