summaryrefslogtreecommitdiff
path: root/spec/services/projects/update_remote_mirror_service_spec.rb
blob: be09afd9f36e7b4c76e2adc0650c0abd0668a696 (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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
require 'spec_helper'

describe Projects::UpdateRemoteMirrorService do
  let(:project) { create(:project, :repository) }
  let(:remote_project) { create(:forked_project_with_submodules) }
  let(:repository) { project.repository }
  let(:raw_repository) { repository.raw }
  let(:remote_mirror) { project.remote_mirrors.create!(url: remote_project.http_url_to_repo, enabled: true, only_protected_branches: false) }

  subject { described_class.new(project, project.creator) }

  describe "#execute", :skip_gitaly_mock do
    before do
      create_branch(repository, 'existing-branch')
      allow(raw_repository).to receive(:remote_tags) do
        generate_tags(repository, 'v1.0.0', 'v1.1.0')
      end
      allow(raw_repository).to receive(:push_remote_branches).and_return(true)
    end

    it "fetches the remote repository" do
      expect(repository).to receive(:fetch_remote).with(remote_mirror.remote_name, no_tags: true) do
        sync_remote(repository, remote_mirror.remote_name, local_branch_names)
      end

      subject.execute(remote_mirror)
    end

    it "succeeds" do
      allow(repository).to receive(:fetch_remote) { sync_remote(repository, remote_mirror.remote_name, local_branch_names) }

      result = subject.execute(remote_mirror)

      expect(result[:status]).to eq(:success)
    end

    describe 'Syncing branches' do
      it "push all the branches the first time" do
        allow(repository).to receive(:fetch_remote)

        expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, local_branch_names)

        subject.execute(remote_mirror)
      end

      it "does not push anything is remote is up to date" do
        allow(repository).to receive(:fetch_remote) { sync_remote(repository, remote_mirror.remote_name, local_branch_names) }

        expect(raw_repository).not_to receive(:push_remote_branches)

        subject.execute(remote_mirror)
      end

      it "sync new branches" do
        # call local_branch_names early so it is not called after the new branch has been created
        current_branches = local_branch_names
        allow(repository).to receive(:fetch_remote) { sync_remote(repository, remote_mirror.remote_name, current_branches) }
        create_branch(repository, 'my-new-branch')

        expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, ['my-new-branch'])

        subject.execute(remote_mirror)
      end

      it "sync updated branches" do
        allow(repository).to receive(:fetch_remote) do
          sync_remote(repository, remote_mirror.remote_name, local_branch_names)
          update_branch(repository, 'existing-branch')
        end

        expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, ['existing-branch'])

        subject.execute(remote_mirror)
      end

      context 'when push only protected branches option is set' do
        let(:unprotected_branch_name) { 'existing-branch' }
        let(:protected_branch_name) do
          project.repository.branch_names.find { |n| n != unprotected_branch_name }
        end
        let!(:protected_branch) do
          create(:protected_branch, project: project, name: protected_branch_name)
        end

        before do
          project.reload
          remote_mirror.only_protected_branches = true
        end

        it "sync updated protected branches" do
          allow(repository).to receive(:fetch_remote) do
            sync_remote(repository, remote_mirror.remote_name, local_branch_names)
            update_branch(repository, protected_branch_name)
          end

          expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, [protected_branch_name])

          subject.execute(remote_mirror)
        end

        it 'does not sync unprotected branches' do
          allow(repository).to receive(:fetch_remote) do
            sync_remote(repository, remote_mirror.remote_name, local_branch_names)
            update_branch(repository, unprotected_branch_name)
          end

          expect(raw_repository).not_to receive(:push_remote_branches).with(remote_mirror.remote_name, [unprotected_branch_name])

          subject.execute(remote_mirror)
        end
      end

      context 'when branch exists in local and remote repo' do
        context 'when it has diverged' do
          it 'syncs branches' do
            allow(repository).to receive(:fetch_remote) do
              sync_remote(repository, remote_mirror.remote_name, local_branch_names)
              update_remote_branch(repository, remote_mirror.remote_name, 'markdown')
            end

            expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, ['markdown'])

            subject.execute(remote_mirror)
          end
        end
      end

      describe 'for delete' do
        context 'when branch exists in local and remote repo' do
          it 'deletes the branch from remote repo' do
            allow(repository).to receive(:fetch_remote) do
              sync_remote(repository, remote_mirror.remote_name, local_branch_names)
              delete_branch(repository, 'existing-branch')
            end

            expect(raw_repository).to receive(:delete_remote_branches).with(remote_mirror.remote_name, ['existing-branch'])

            subject.execute(remote_mirror)
          end
        end

        context 'when push only protected branches option is set' do
          before do
            remote_mirror.only_protected_branches = true
          end

          context 'when branch exists in local and remote repo' do
            let!(:protected_branch_name) { local_branch_names.first }

            before do
              create(:protected_branch, project: project, name: protected_branch_name)
              project.reload
            end

            it 'deletes the protected branch from remote repo' do
              allow(repository).to receive(:fetch_remote) do
                sync_remote(repository, remote_mirror.remote_name, local_branch_names)
                delete_branch(repository, protected_branch_name)
              end

              expect(raw_repository).not_to receive(:delete_remote_branches).with(remote_mirror.remote_name, [protected_branch_name])

              subject.execute(remote_mirror)
            end

            it 'does not delete the unprotected branch from remote repo' do
              allow(repository).to receive(:fetch_remote) do
                sync_remote(repository, remote_mirror.remote_name, local_branch_names)
                delete_branch(repository, 'existing-branch')
              end

              expect(raw_repository).not_to receive(:delete_remote_branches).with(remote_mirror.remote_name, ['existing-branch'])

              subject.execute(remote_mirror)
            end
          end

          context 'when branch only exists on remote repo' do
            let!(:protected_branch_name) { 'remote-branch' }

            before do
              create(:protected_branch, project: project, name: protected_branch_name)
            end

            context 'when it has diverged' do
              it 'does not delete the remote branch' do
                allow(repository).to receive(:fetch_remote) do
                  sync_remote(repository, remote_mirror.remote_name, local_branch_names)

                  rev = repository.find_branch('markdown').dereferenced_target
                  create_remote_branch(repository, remote_mirror.remote_name, 'remote-branch', rev.id)
                end

                expect(raw_repository).not_to receive(:delete_remote_branches)

                subject.execute(remote_mirror)
              end
            end

            context 'when it has not diverged' do
              it 'deletes the remote branch' do
                allow(repository).to receive(:fetch_remote) do
                  sync_remote(repository, remote_mirror.remote_name, local_branch_names)

                  masterrev = repository.find_branch('master').dereferenced_target
                  create_remote_branch(repository, remote_mirror.remote_name, protected_branch_name, masterrev.id)
                end

                expect(raw_repository).to receive(:delete_remote_branches).with(remote_mirror.remote_name, [protected_branch_name])

                subject.execute(remote_mirror)
              end
            end
          end
        end

        context 'when branch only exists on remote repo' do
          context 'when it has diverged' do
            it 'does not delete the remote branch' do
              allow(repository).to receive(:fetch_remote) do
                sync_remote(repository, remote_mirror.remote_name, local_branch_names)

                rev = repository.find_branch('markdown').dereferenced_target
                create_remote_branch(repository, remote_mirror.remote_name, 'remote-branch', rev.id)
              end

              expect(raw_repository).not_to receive(:delete_remote_branches)

              subject.execute(remote_mirror)
            end
          end

          context 'when it has not diverged' do
            it 'deletes the remote branch' do
              allow(repository).to receive(:fetch_remote) do
                sync_remote(repository, remote_mirror.remote_name, local_branch_names)

                masterrev = repository.find_branch('master').dereferenced_target
                create_remote_branch(repository, remote_mirror.remote_name, 'remote-branch', masterrev.id)
              end

              expect(raw_repository).to receive(:delete_remote_branches).with(remote_mirror.remote_name, ['remote-branch'])

              subject.execute(remote_mirror)
            end
          end
        end
      end
    end

    describe 'Syncing tags' do
      before do
        allow(repository).to receive(:fetch_remote) { sync_remote(repository, remote_mirror.remote_name, local_branch_names) }
      end

      context 'when there are not tags to push' do
        it 'does not try to push tags' do
          allow(repository).to receive(:remote_tags) { {} }
          allow(repository).to receive(:tags) { [] }

          expect(repository).not_to receive(:push_tags)

          subject.execute(remote_mirror)
        end
      end

      context 'when there are some tags to push' do
        it 'pushes tags to remote' do
          allow(raw_repository).to receive(:remote_tags) { {} }

          expect(raw_repository).to receive(:push_remote_branches).with(remote_mirror.remote_name, ['v1.0.0', 'v1.1.0'])

          subject.execute(remote_mirror)
        end
      end

      context 'when there are some tags to delete' do
        it 'deletes tags from remote' do
          remote_tags = generate_tags(repository, 'v1.0.0', 'v1.1.0')
          allow(raw_repository).to receive(:remote_tags) { remote_tags }

          repository.rm_tag(create(:user), 'v1.0.0')

          expect(raw_repository).to receive(:delete_remote_branches).with(remote_mirror.remote_name, ['v1.0.0'])

          subject.execute(remote_mirror)
        end
      end
    end
  end

  def create_branch(repository, branch_name)
    rugged = repository.rugged
    masterrev = repository.find_branch('master').dereferenced_target
    parentrev = repository.commit(masterrev).parent_id

    rugged.references.create("refs/heads/#{branch_name}", parentrev)

    repository.expire_branches_cache
  end

  def create_remote_branch(repository, remote_name, branch_name, source_id)
    rugged = repository.rugged

    rugged.references.create("refs/remotes/#{remote_name}/#{branch_name}", source_id)
  end

  def sync_remote(repository, remote_name, local_branch_names)
    rugged = repository.rugged

    local_branch_names.each do |branch|
      target = repository.find_branch(branch).try(:dereferenced_target)
      rugged.references.create("refs/remotes/#{remote_name}/#{branch}", target.id) if target
    end
  end

  def update_remote_branch(repository, remote_name, branch)
    rugged = repository.rugged
    masterrev = repository.find_branch('master').dereferenced_target.id

    rugged.references.create("refs/remotes/#{remote_name}/#{branch}", masterrev, force: true)
    repository.expire_branches_cache
  end

  def update_branch(repository, branch)
    rugged = repository.rugged
    masterrev = repository.find_branch('master').dereferenced_target.id

    # Updated existing branch
    rugged.references.create("refs/heads/#{branch}", masterrev, force: true)
    repository.expire_branches_cache
  end

  def delete_branch(repository, branch)
    rugged = repository.rugged

    rugged.references.delete("refs/heads/#{branch}")
    repository.expire_branches_cache
  end

  def generate_tags(repository, *tag_names)
    tag_names.each_with_object([]) do |name, tags|
      tag = repository.find_tag(name)
      target = tag.try(:target)
      target_commit = tag.try(:dereferenced_target)
      tags << Gitlab::Git::Tag.new(repository.raw_repository, name, target, target_commit)
    end
  end

  def local_branch_names
    branch_names = repository.branches.map(&:name)
    # we want the protected branch to be pushed first
    branch_names.unshift(branch_names.delete('master'))
  end
end