summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/import_export/reader_spec.rb
blob: 8828c7ceb6273280c30bea0e3cf7f63c019450c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

require 'spec_helper'

RSpec.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_next_instance_of(Gitlab::ImportExport::AttributesFinder) do |instance|
        expect(instance).to receive(:find_root).with(:project)
      end

      subject
    end

    context 'when exception raised' do
      before do
        expect_next_instance_of(Gitlab::ImportExport::AttributesFinder) do |instance|
          expect(instance).to receive(:find_root).with(:project).and_raise(StandardError)
        end
      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_next_instance_of(Gitlab::ImportExport::AttributesFinder) do |instance|
        expect(instance).to receive(:find_root).with(:group_members)
      end

      subject
    end
  end
end