summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/merge_request/merge_quick_action_shared_examples.rb
blob: ac7c17915de20f27a349568ac9bca40c6f3a71a3 (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
# frozen_string_literal: true

shared_examples 'merge quick action' do
  context 'when the current user can merge the MR' do
    before do
      sign_in(user)
      visit project_merge_request_path(project, merge_request)
    end

    it 'merges the MR' do
      add_note("/merge")

      expect(page).to have_content 'Scheduled to merge this merge request when the pipeline succeeds.'

      expect(merge_request.reload).to be_merged
    end
  end

  context 'when the head diff changes in the meanwhile' do
    before do
      merge_request.source_branch = 'another_branch'
      merge_request.save
      sign_in(user)
      visit project_merge_request_path(project, merge_request)
    end

    it 'does not merge the MR' do
      add_note("/merge")

      expect(page).not_to have_content 'Your commands have been executed!'

      expect(merge_request.reload).not_to be_merged
    end
  end

  context 'when the current user cannot merge the MR' do
    before do
      project.add_guest(guest)
      sign_in(guest)
      visit project_merge_request_path(project, merge_request)
    end

    it 'does not merge the MR' do
      add_note("/merge")

      expect(page).not_to have_content 'Your commands have been executed!'

      expect(merge_request.reload).not_to be_merged
    end
  end
end