2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-06 11:31:58 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe ProjectAuthorization do
|
2022-03-14 14:07:46 -04:00
|
|
|
describe 'unique user, project authorizations' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project_1) { create(:project) }
|
|
|
|
|
|
|
|
let!(:project_auth) do
|
|
|
|
create(
|
|
|
|
:project_authorization,
|
|
|
|
user: user,
|
|
|
|
project: project_1,
|
|
|
|
access_level: Gitlab::Access::DEVELOPER
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with duplicate user and project authorization' do
|
|
|
|
subject { project_auth.dup }
|
|
|
|
|
|
|
|
it { is_expected.to be_invalid }
|
|
|
|
|
|
|
|
context 'after validation' do
|
|
|
|
before do
|
|
|
|
subject.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains duplicate error' do
|
|
|
|
expect(subject.errors[:user]).to include('has already been taken')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with multiple access levels for the same user and project' do
|
|
|
|
subject do
|
|
|
|
project_auth.dup.tap do |auth|
|
|
|
|
auth.access_level = Gitlab::Access::MAINTAINER
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_invalid }
|
|
|
|
|
|
|
|
context 'after validation' do
|
|
|
|
before do
|
|
|
|
subject.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains duplicate error' do
|
|
|
|
expect(subject.errors[:user]).to include('has already been taken')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
describe 'relations' do
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
end
|
2016-12-06 11:31:58 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
|
|
it { is_expected.to validate_presence_of(:user) }
|
|
|
|
it { is_expected.to validate_presence_of(:access_level) }
|
|
|
|
it { is_expected.to validate_inclusion_of(:access_level).in_array(Gitlab::Access.all_values) }
|
|
|
|
end
|
2016-12-06 11:31:58 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
describe '.insert_all' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project_1) { create(:project) }
|
|
|
|
let_it_be(:project_2) { create(:project) }
|
|
|
|
let_it_be(:project_3) { create(:project) }
|
2016-12-06 11:31:58 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
it 'skips duplicates and inserts the remaining rows without error' do
|
|
|
|
create(:project_authorization, user: user, project: project_1, access_level: Gitlab::Access::MAINTAINER)
|
|
|
|
|
|
|
|
attributes = [
|
|
|
|
{ user_id: user.id, project_id: project_1.id, access_level: Gitlab::Access::MAINTAINER },
|
|
|
|
{ user_id: user.id, project_id: project_2.id, access_level: Gitlab::Access::MAINTAINER },
|
|
|
|
{ user_id: user.id, project_id: project_3.id, access_level: Gitlab::Access::MAINTAINER }
|
|
|
|
]
|
2016-12-06 11:31:58 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
described_class.insert_all(attributes)
|
|
|
|
|
|
|
|
expect(user.project_authorizations.pluck(:user_id, :project_id, :access_level)).to match_array(attributes.map(&:values))
|
2016-12-06 11:31:58 -05:00
|
|
|
end
|
2021-11-30 10:14:19 -05:00
|
|
|
end
|
2021-11-12 07:10:27 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
describe '.insert_all_in_batches' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project_1) { create(:project) }
|
|
|
|
let_it_be(:project_2) { create(:project) }
|
|
|
|
let_it_be(:project_3) { create(:project) }
|
2021-11-12 07:10:27 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
let(:per_batch_size) { 2 }
|
|
|
|
|
|
|
|
it 'inserts the rows in batches, as per the `per_batch` size' do
|
|
|
|
attributes = [
|
|
|
|
{ user_id: user.id, project_id: project_1.id, access_level: Gitlab::Access::MAINTAINER },
|
|
|
|
{ user_id: user.id, project_id: project_2.id, access_level: Gitlab::Access::MAINTAINER },
|
|
|
|
{ user_id: user.id, project_id: project_3.id, access_level: Gitlab::Access::MAINTAINER }
|
2021-11-12 07:10:27 -05:00
|
|
|
]
|
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
expect(described_class).to receive(:insert_all).twice.and_call_original
|
|
|
|
|
|
|
|
described_class.insert_all_in_batches(attributes, per_batch_size)
|
2021-11-12 07:10:27 -05:00
|
|
|
|
2021-11-30 10:14:19 -05:00
|
|
|
expect(user.project_authorizations.pluck(:user_id, :project_id, :access_level)).to match_array(attributes.map(&:values))
|
2021-11-12 07:10:27 -05:00
|
|
|
end
|
2016-12-06 11:31:58 -05:00
|
|
|
end
|
|
|
|
end
|