Welcome to mirror list, hosted at ThFree Co, Russian Federation.

system_hook_policy_spec.rb « policies « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37f97a8a3d153115e1f70cc83a2a9d23cce9acf7 (plain)
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SystemHookPolicy do
  let(:hook) { create(:system_hook) }

  subject(:policy) { described_class.new(user, hook) }

  context 'when the user is not an admin' do
    let(:user) { create(:user) }

    %i[read_web_hook destroy_web_hook].each do |thing|
      it "cannot #{thing}" do
        expect(policy).to be_disallowed(thing)
      end
    end
  end

  context 'when the user is an admin', :enable_admin_mode do
    let(:user) { create(:admin) }

    %i[read_web_hook destroy_web_hook].each do |thing|
      it "can #{thing}" do
        expect(policy).to be_allowed(thing)
      end
    end
  end
end