summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/merge_requests/create_spec.rb
blob: c954fd50cc40cbc89a1dab1238eae27c37fb020c (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Creation of a new merge request', feature_category: :code_review do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:user) }

  let(:project) { create(:project, :public, :repository) }
  let(:input) do
    {
      project_path: project.full_path,
      title: title,
      source_branch: source_branch,
      target_branch: target_branch
    }
  end

  let(:title) { 'MergeRequest' }
  let(:source_branch) { 'new_branch' }
  let(:target_branch) { 'master' }

  let(:mutation) { graphql_mutation(:merge_request_create, input) }
  let(:mutation_response) { graphql_mutation_response(:merge_request_create) }

  context 'the user is not allowed to create a branch' do
    it_behaves_like 'a mutation that returns a top-level access error'
  end

  context 'when user has permissions to create a merge request' do
    before do
      project.add_developer(current_user)
    end

    it 'creates a new merge request' do
      post_graphql_mutation(mutation, current_user: current_user)

      expect(response).to have_gitlab_http_status(:success)
      expect(mutation_response['mergeRequest']).to include(
        'title' => title
      )
    end

    context 'when source branch is equal to the target branch' do
      let(:source_branch) { target_branch }

      it_behaves_like 'a mutation that returns errors in the response',
        errors: ['Branch conflict You can\'t use same project/branch for source and target']
    end
  end
end