136 lines
3.8 KiB
Ruby
136 lines
3.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe BulkImports::Pipeline::Context, feature_category: :importers do
|
|
let_it_be(:user) { create(:user) }
|
|
let_it_be(:group) { create(:group) }
|
|
let_it_be(:bulk_import) { create(:bulk_import, :with_configuration, user: user) }
|
|
let_it_be(:project) { create(:project) }
|
|
let_it_be(:project_entity) { create(:bulk_import_entity, :project_entity, project: project) }
|
|
let_it_be(:project_tracker) { create(:bulk_import_tracker, entity: project_entity) }
|
|
|
|
let_it_be(:entity) do
|
|
create(
|
|
:bulk_import_entity,
|
|
source_full_path: 'source/full/path',
|
|
destination_slug: 'My-Destination-Group',
|
|
destination_namespace: group.full_path,
|
|
group: group,
|
|
bulk_import: bulk_import
|
|
)
|
|
end
|
|
|
|
let_it_be(:tracker) do
|
|
create(
|
|
:bulk_import_tracker,
|
|
entity: entity,
|
|
pipeline_name: described_class.name
|
|
)
|
|
end
|
|
|
|
subject { described_class.new(tracker, extra: :data) }
|
|
|
|
describe '#entity' do
|
|
it { expect(subject.entity).to eq(entity) }
|
|
end
|
|
|
|
describe '#group' do
|
|
it { expect(subject.group).to eq(group) }
|
|
end
|
|
|
|
describe '#bulk_import' do
|
|
it { expect(subject.bulk_import).to eq(bulk_import) }
|
|
end
|
|
|
|
describe '#current_user' do
|
|
it { expect(subject.current_user).to eq(user) }
|
|
end
|
|
|
|
describe '#configuration' do
|
|
it { expect(subject.configuration).to eq(bulk_import.configuration) }
|
|
end
|
|
|
|
describe '#extra' do
|
|
it { expect(subject.extra).to eq(extra: :data) }
|
|
end
|
|
|
|
describe '#portable' do
|
|
it { expect(subject.portable).to eq(group) }
|
|
|
|
context 'when portable is project' do
|
|
subject { described_class.new(project_tracker) }
|
|
|
|
it { expect(subject.portable).to eq(project) }
|
|
end
|
|
end
|
|
|
|
describe '#import_export_config' do
|
|
it { expect(subject.import_export_config).to be_instance_of(BulkImports::FileTransfer::GroupConfig) }
|
|
|
|
context 'when portable is project' do
|
|
subject { described_class.new(project_tracker) }
|
|
|
|
it { expect(subject.import_export_config).to be_instance_of(BulkImports::FileTransfer::ProjectConfig) }
|
|
end
|
|
end
|
|
|
|
describe '#source_user_mapper' do
|
|
it { expect(subject.source_user_mapper).to be_instance_of(Gitlab::Import::SourceUserMapper) }
|
|
|
|
it 'builds with the correct arguments' do
|
|
expect(Gitlab::Import::SourceUserMapper).to receive(:new).with(
|
|
namespace: group.root_ancestor,
|
|
import_type: Import::SOURCE_DIRECT_TRANSFER,
|
|
source_hostname: bulk_import.configuration.url
|
|
)
|
|
|
|
subject.source_user_mapper
|
|
end
|
|
end
|
|
|
|
describe '#importer_user_mapping_enabled?' do
|
|
subject { described_class.new(tracker, extra: :data).importer_user_mapping_enabled? }
|
|
|
|
before do
|
|
allow_next_instance_of(Import::BulkImports::EphemeralData, bulk_import.id) do |ephemeral_data|
|
|
allow(ephemeral_data).to receive(:importer_user_mapping_enabled?).and_return(status)
|
|
end
|
|
end
|
|
|
|
context 'when importer user mapping is disabled' do
|
|
let(:status) { false }
|
|
|
|
it { is_expected.to eq(false) }
|
|
end
|
|
|
|
context 'when importer user mapping is enabled' do
|
|
let(:status) { true }
|
|
|
|
it { is_expected.to eq(true) }
|
|
end
|
|
end
|
|
|
|
describe '#source_ghost_user_id' do
|
|
let(:source_internal_user_finder) { instance_double(BulkImports::SourceInternalUserFinder) }
|
|
|
|
before do
|
|
allow(BulkImports::SourceInternalUserFinder).to receive(:new)
|
|
.with(bulk_import.configuration)
|
|
.and_return(source_internal_user_finder)
|
|
end
|
|
|
|
it 'returns the ghost user ID' do
|
|
expect(source_internal_user_finder).to receive(:cached_ghost_user_id).and_return('10')
|
|
|
|
expect(subject.source_ghost_user_id).to eq('10')
|
|
end
|
|
|
|
it 'memoizes the result' do
|
|
expect(source_internal_user_finder).to receive(:cached_ghost_user_id).once.and_return('10')
|
|
|
|
2.times { subject.source_ghost_user_id }
|
|
end
|
|
end
|
|
end
|