Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tree_restorer_spec.rb « group « import_export « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1444897e136021c1cca60c66469d90efcd2c2811 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::ImportExport::Group::TreeRestorer do
  include ImportExport::CommonUtil

  shared_examples 'group restoration' do
    describe 'restore group tree' do
      before_all do
        # Using an admin for import, so we can check assignment of existing members
        user = create(:admin, email: 'root@gitlabexample.com')
        create(:user, email: 'adriene.mcclure@gitlabexample.com')
        create(:user, email: 'gwendolyn_robel@gitlabexample.com')

        RSpec::Mocks.with_temporary_scope do
          @group = create(:group, name: 'group', path: 'group')
          @shared = Gitlab::ImportExport::Shared.new(@group)

          setup_import_export_config('group_exports/complex')

          group_tree_restorer = described_class.new(user: user, shared: @shared, group: @group)

          expect(group_tree_restorer.restore).to be_truthy
          expect(group_tree_restorer.groups_mapping).not_to be_empty
        end
      end

      it 'has the group description' do
        expect(Group.find_by_path('group').description).to eq('Group Description')
      end

      it 'has group labels' do
        expect(@group.labels.count).to eq(10)
      end

      context 'issue boards' do
        it 'has issue boards' do
          expect(@group.boards.count).to eq(1)
        end

        it 'has board label lists' do
          lists = @group.boards.find_by(name: 'first board').lists

          expect(lists.count).to eq(3)
          expect(lists.first.label.title).to eq('TSL')
          expect(lists.second.label.title).to eq('Sosync')
        end
      end

      it 'has badges' do
        expect(@group.badges.count).to eq(1)
      end

      it 'has milestones' do
        expect(@group.milestones.count).to eq(5)
      end

      it 'has group children' do
        expect(@group.children.count).to eq(2)
      end

      it 'has group members' do
        expect(@group.members.map(&:user).map(&:email)).to contain_exactly(
          'root@gitlabexample.com',
          'adriene.mcclure@gitlabexample.com',
          'gwendolyn_robel@gitlabexample.com'
        )
      end
    end

    context 'child with no parent' do
      let(:user) { create(:user) }
      let(:group) { create(:group) }
      let(:shared) { Gitlab::ImportExport::Shared.new(group) }
      let(:group_tree_restorer) { described_class.new(user: user, shared: shared, group: group) }

      before do
        setup_import_export_config('group_exports/child_with_no_parent')
      end

      it 'captures import failures when a child group does not have a valid parent_id' do
        group_tree_restorer.restore

        expect(group.import_failures.first.exception_message).to eq('Parent group not found')
      end
    end

    context 'when child group creation fails' do
      let(:user) { create(:user) }
      let(:group) { create(:group) }
      let(:shared) { Gitlab::ImportExport::Shared.new(group) }
      let(:group_tree_restorer) { described_class.new(user: user, shared: shared, group: group) }

      before do
        setup_import_export_config('group_exports/child_short_name')
      end

      it 'captures import failure' do
        exception_message = 'Validation failed: Group URL is too short (minimum is 2 characters)'

        group_tree_restorer.restore

        expect(group.import_failures.first.exception_message).to eq(exception_message)
      end
    end

    context 'excluded attributes' do
      let!(:source_user) { create(:user, id: 123) }
      let!(:importer_user) { create(:user) }
      let(:group) { create(:group, name: 'user-inputed-name', path: 'user-inputed-path') }
      let(:shared) { Gitlab::ImportExport::Shared.new(group) }
      let(:group_tree_restorer) { described_class.new(user: importer_user, shared: shared, group: group) }
      let(:exported_file) { File.join(shared.export_path, 'tree/groups/4352.json') }
      let(:group_json) { Gitlab::Json.parse(IO.read(exported_file)) }

      shared_examples 'excluded attributes' do
        excluded_attributes = %w[
          id
          parent_id
          owner_id
          created_at
          updated_at
          runners_token
          runners_token_encrypted
          saml_discovery_token
        ]

        before do
          group.add_owner(importer_user)

          setup_import_export_config('group_exports/complex')

          expect(File.exist?(exported_file)).to be_truthy

          group_tree_restorer.restore
          group.reload
        end

        it 'does not import root group name' do
          expect(group.name).to eq('user-inputed-name')
        end

        it 'does not import root group path' do
          expect(group.path).to eq('user-inputed-path')
        end

        excluded_attributes.each do |excluded_attribute|
          it 'does not allow override of excluded attributes' do
            unless group.public_send(excluded_attribute).nil?
              expect(group_json[excluded_attribute]).not_to eq(group.public_send(excluded_attribute))
            end
          end
        end
      end

      include_examples 'excluded attributes'
    end

    context 'group.json file access check' do
      let(:user) { create(:user) }
      let!(:group) { create(:group, name: 'group2', path: 'group2') }
      let(:shared) { Gitlab::ImportExport::Shared.new(group) }
      let(:group_tree_restorer) { described_class.new(user: user, shared: shared, group: group) }

      it 'does not read a symlink' do
        Dir.mktmpdir do |tmpdir|
          FileUtils.mkdir_p(File.join(tmpdir, 'tree', 'groups'))
          setup_symlink(tmpdir, 'tree/groups/_all.ndjson')

          allow(shared).to receive(:export_path).and_return(tmpdir)

          expect(group_tree_restorer.restore).to eq(false)
          expect(shared.errors).to include('Incorrect JSON format')
        end
      end
    end

    context 'group visibility levels' do
      let(:user) { create(:user) }
      let(:shared) { Gitlab::ImportExport::Shared.new(group) }
      let(:group_tree_restorer) { described_class.new(user: user, shared: shared, group: group) }

      before do
        setup_import_export_config(filepath)

        group_tree_restorer.restore
      end

      shared_examples 'with visibility level' do |visibility_level, expected_visibilities|
        context "when visibility level is #{visibility_level}" do
          let(:group) { create(:group, visibility_level) }
          let(:filepath) { "group_exports/visibility_levels/#{visibility_level}" }

          it "imports all subgroups as #{visibility_level}" do
            expect(group.children.map(&:visibility_level)).to match_array(expected_visibilities)
          end
        end
      end

      include_examples 'with visibility level', :public, [20, 10, 0]
      include_examples 'with visibility level', :private, [0, 0, 0]
      include_examples 'with visibility level', :internal, [10, 10, 0]
    end
  end

  include_examples 'group restoration'
end