debian-mirror-gitlab/spec/lib/bulk_imports/groups/loaders/group_loader_spec.rb

82 lines
2.5 KiB
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe BulkImports::Groups::Loaders::GroupLoader do
describe '#load' do
2021-04-29 21:17:54 +05:30
let_it_be(:user) { create(:user) }
let_it_be(:bulk_import) { create(:bulk_import, user: user) }
let_it_be(:entity) { create(:bulk_import_entity, bulk_import: bulk_import) }
let_it_be(:tracker) { create(:bulk_import_tracker, entity: entity) }
let_it_be(:context) { BulkImports::Pipeline::Context.new(tracker) }
2021-01-29 00:20:46 +05:30
let(:service_double) { instance_double(::Groups::CreateService) }
2021-04-29 21:17:54 +05:30
let(:data) { { foo: :bar } }
2021-01-29 00:20:46 +05:30
subject { described_class.new }
context 'when user can create group' do
shared_examples 'calls Group Create Service to create a new group' do
it 'calls Group Create Service to create a new group' do
2021-03-11 19:13:27 +05:30
expect(::Groups::CreateService)
.to receive(:new)
.with(context.current_user, data)
.and_return(service_double)
2021-01-29 00:20:46 +05:30
expect(service_double).to receive(:execute)
expect(entity).to receive(:update!)
subject.load(context, data)
end
end
context 'when there is no parent group' do
before do
allow(Ability).to receive(:allowed?).with(user, :create_group).and_return(true)
end
include_examples 'calls Group Create Service to create a new group'
end
context 'when there is parent group' do
let(:parent) { create(:group) }
let(:data) { { 'parent_id' => parent.id } }
before do
allow(Ability).to receive(:allowed?).with(user, :create_subgroup, parent).and_return(true)
end
include_examples 'calls Group Create Service to create a new group'
end
end
context 'when user cannot create group' do
shared_examples 'does not create new group' do
it 'does not create new group' do
expect(::Groups::CreateService).not_to receive(:new)
subject.load(context, data)
end
end
context 'when there is no parent group' do
before do
allow(Ability).to receive(:allowed?).with(user, :create_group).and_return(false)
end
include_examples 'does not create new group'
end
context 'when there is parent group' do
let(:parent) { create(:group) }
let(:data) { { 'parent_id' => parent.id } }
before do
allow(Ability).to receive(:allowed?).with(user, :create_subgroup, parent).and_return(false)
end
include_examples 'does not create new group'
end
end
end
end