debian-mirror-gitlab/spec/lib/gitlab/import_export/reader_spec.rb
2019-12-04 20:38:33 +05:30

46 lines
1.1 KiB
Ruby

require 'spec_helper'
describe Gitlab::ImportExport::Reader do
let(:shared) { Gitlab::ImportExport::Shared.new(nil) }
describe '#project_tree' do
subject { described_class.new(shared: shared).project_tree }
it 'delegates to AttributesFinder#find_root' do
expect_any_instance_of(Gitlab::ImportExport::AttributesFinder)
.to receive(:find_root)
.with(:project)
subject
end
context 'when exception raised' do
before do
expect_any_instance_of(Gitlab::ImportExport::AttributesFinder)
.to receive(:find_root)
.with(:project)
.and_raise(StandardError)
end
it { is_expected.to be false }
it 'logs the error' do
expect(shared).to receive(:error).with(instance_of(StandardError))
subject
end
end
end
describe '#group_members_tree' do
subject { described_class.new(shared: shared).group_members_tree }
it 'delegates to AttributesFinder#find_root' do
expect_any_instance_of(Gitlab::ImportExport::AttributesFinder)
.to receive(:find_root)
.with(:group_members)
subject
end
end
end