2023-03-05 02:57:22 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
require 'pundit/rspec'
|
|
|
|
|
|
|
|
describe WebhookPolicy do
|
|
|
|
let(:policy) { described_class }
|
|
|
|
let(:admin) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')).account }
|
|
|
|
let(:john) { Fabricate(:account) }
|
|
|
|
|
2023-06-22 22:52:25 +10:00
|
|
|
permissions :index?, :create? do
|
2023-03-05 02:57:22 +11:00
|
|
|
context 'with an admin' do
|
|
|
|
it 'permits' do
|
2023-06-22 22:52:25 +10:00
|
|
|
expect(policy).to permit(admin, Webhook)
|
2023-03-05 02:57:22 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a non-admin' do
|
|
|
|
it 'denies' do
|
2023-06-22 22:52:25 +10:00
|
|
|
expect(policy).to_not permit(john, Webhook)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
permissions :show?, :update?, :enable?, :disable?, :rotate_secret?, :destroy? do
|
|
|
|
let(:webhook) { Fabricate(:webhook, events: ['account.created', 'report.created']) }
|
|
|
|
|
|
|
|
context 'with an admin' do
|
|
|
|
it 'permits' do
|
|
|
|
expect(policy).to permit(admin, webhook)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a non-admin' do
|
|
|
|
it 'denies' do
|
|
|
|
expect(policy).to_not permit(john, webhook)
|
2023-03-05 02:57:22 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|