2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Clusters::AgentPolicy do
|
2022-10-11 01:57:18 +05:30
|
|
|
let(:cluster_agent) { create(:cluster_agent, name: 'agent' ) }
|
2021-11-18 22:05:49 +05:30
|
|
|
let(:user) { create(:admin) }
|
|
|
|
let(:policy) { described_class.new(user, cluster_agent) }
|
|
|
|
let(:project) { cluster_agent.project }
|
|
|
|
|
|
|
|
describe 'rules' do
|
|
|
|
context 'when developer' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(policy).to be_disallowed :admin_cluster }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when maintainer' do
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(policy).to be_allowed :admin_cluster }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|