mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
Addresses: #402 - migrations to split roles and other attributes from users table - make changes in code to accommodate this change Co-authored-by: Sojan Jose <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
34 lines
851 B
Ruby
34 lines
851 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe UserPolicy, type: :policy do
|
|
subject(:user_policy) { described_class }
|
|
|
|
let(:account) { create(:account) }
|
|
|
|
let(:administrator) { create(:user, :administrator, account: account) }
|
|
let(:agent) { create(:user, account: account) }
|
|
let(:user) { create(:user, account: account) }
|
|
|
|
permissions :create?, :update?, :destroy? do
|
|
context 'when administrator' do
|
|
it { expect(user_policy).to permit(administrator, user) }
|
|
end
|
|
|
|
context 'when agent' do
|
|
it { expect(user_policy).not_to permit(agent, user) }
|
|
end
|
|
end
|
|
|
|
permissions :index? do
|
|
context 'when administrator' do
|
|
it { expect(user_policy).to permit(administrator, user) }
|
|
end
|
|
|
|
context 'when agent' do
|
|
it { expect(user_policy).to permit(agent, user) }
|
|
end
|
|
end
|
|
end
|