summaryrefslogtreecommitdiff
path: root/spec/graphql/mutations/commits/create_spec.rb
blob: 82a5e3a62f59280922b3bd241cf94704f8b3e6fc (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Commits::Create do
  subject(:mutation) { described_class.new(object: nil, context: context, field: nil) }

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project, :public, :repository) }

  let(:context) do
    GraphQL::Query::Context.new(
      query: OpenStruct.new(schema: nil),
      values: { current_user: user },
      object: nil
    )
  end

  specify { expect(described_class).to require_graphql_authorizations(:push_code) }

  describe '#resolve' do
    subject { mutation.resolve(project_path: project.full_path, branch: branch, start_branch: start_branch, message: message, actions: actions) }

    let(:branch) { 'master' }
    let(:start_branch) { nil }
    let(:message) { 'Commit message' }
    let(:actions) do
      [
        {
          action: 'create',
          file_path: 'NEW_FILE.md',
          content: 'Hello'
        }
      ]
    end

    let(:mutated_commit) { subject[:commit] }

    it 'raises an error if the resource is not accessible to the user' do
      expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
    end

    context 'when user does not have enough permissions' do
      before do
        project.add_guest(user)
      end

      it 'raises an error' do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
      end
    end

    context 'when user is a maintainer of a different project' do
      before do
        create(:project_empty_repo).add_maintainer(user)
      end

      it 'raises an error' do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
      end
    end

    context 'when the user can create a commit' do
      let(:deltas) { mutated_commit.raw_deltas }

      before_all do
        project.add_developer(user)
      end

      context 'when service successfully creates a new commit' do
        it 'returns a new commit' do
          expect(mutated_commit).to have_attributes(message: message, project: project)
          expect(subject[:errors]).to be_empty

          expect_to_contain_deltas([
            a_hash_including(a_mode: '0', b_mode: '100644', new_file: true, new_path: 'NEW_FILE.md')
          ])
        end
      end

      context 'when request has multiple actions' do
        let(:actions) do
          [
            {
              action: 'create',
              file_path: 'foo/foobar',
              content: 'some content'
            },
            {
              action: 'delete',
              file_path: 'README.md'
            },
            {
              action: 'move',
              file_path: "LICENSE.md",
              previous_path: "LICENSE",
              content: "some content"
            },
            {
              action: 'update',
              file_path: 'VERSION',
              content: 'new content'
            },
            {
              action: 'chmod',
              file_path: 'CHANGELOG',
              execute_filemode: true
            }
          ]
        end

        it 'returns a new commit' do
          expect(mutated_commit).to have_attributes(message: message, project: project)
          expect(subject[:errors]).to be_empty

          expect_to_contain_deltas([
            a_hash_including(a_mode: '0', b_mode: '100644', new_path: 'foo/foobar'),
            a_hash_including(deleted_file: true, new_path: 'README.md'),
            a_hash_including(deleted_file: true, new_path: 'LICENSE'),
            a_hash_including(new_file: true, new_path: 'LICENSE.md'),
            a_hash_including(new_file: false, new_path: 'VERSION'),
            a_hash_including(a_mode: '100644', b_mode: '100755', new_path: 'CHANGELOG')
          ])
        end
      end

      context 'when actions are not defined' do
        let(:actions) { [] }

        it 'returns a new commit' do
          expect(mutated_commit).to have_attributes(message: message, project: project)
          expect(subject[:errors]).to be_empty

          expect_to_contain_deltas([])
        end
      end

      context 'when branch does not exist' do
        let(:branch) { 'unknown' }

        it 'returns errors' do
          expect(mutated_commit).to be_nil
          expect(subject[:errors]).to eq(['You can only create or edit files when you are on a branch'])
        end
      end

      context 'when branch does not exist and a start branch is provided' do
        let(:branch) { 'my-branch' }
        let(:start_branch) { 'master' }
        let(:actions) do
          [
            {
              action: 'create',
              file_path: 'ANOTHER_FILE.md',
              content: 'Bye'
            }
          ]
        end

        it 'returns a new commit' do
          expect(mutated_commit).to have_attributes(message: message, project: project)
          expect(subject[:errors]).to be_empty

          expect_to_contain_deltas([
            a_hash_including(a_mode: '0', b_mode: '100644', new_file: true, new_path: 'ANOTHER_FILE.md')
          ])
        end
      end

      context 'when message is not set' do
        let(:message) { nil }

        it 'returns errors' do
          expect(mutated_commit).to be_nil
          expect(subject[:errors].to_s).to match(/3:UserCommitFiles: empty CommitMessage/)
        end
      end

      context 'when actions are incorrect' do
        let(:actions) { [{ action: 'unknown', file_path: 'test.md', content: '' }] }

        it 'returns errors' do
          expect(mutated_commit).to be_nil
          expect(subject[:errors]).to eq(['Unknown action \'unknown\''])
        end
      end

      context 'when branch is protected' do
        before do
          create(:protected_branch, project: project, name: branch)
        end

        it 'returns errors' do
          expect(mutated_commit).to be_nil
          expect(subject[:errors]).to eq(['You are not allowed to push into this branch'])
        end
      end
    end
  end

  def expect_to_contain_deltas(expected_deltas)
    expect(deltas.count).to eq(expected_deltas.count)
    expect(deltas).to include(*expected_deltas)
  end
end