2020-05-29 05:08:06 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe Mutations::Commits::Create do
|
2020-05-29 05:08:06 -04:00
|
|
|
subject(:mutation) { described_class.new(object: nil, context: context, field: nil) }
|
|
|
|
|
|
|
|
let_it_be(:user) { create(:user) }
|
2020-11-12 10:09:09 -05:00
|
|
|
let_it_be(:project) { create(:project, :public, :repository) }
|
|
|
|
|
2020-05-29 05:08:06 -04:00
|
|
|
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
|
2020-11-12 10:09:09 -05:00
|
|
|
subject { mutation.resolve(project_path: project.full_path, branch: branch, start_branch: start_branch, message: message, actions: actions) }
|
2020-05-29 05:08:06 -04:00
|
|
|
|
|
|
|
let(:branch) { 'master' }
|
2020-11-12 10:09:09 -05:00
|
|
|
let(:start_branch) { nil }
|
2020-05-29 05:08:06 -04:00
|
|
|
let(:message) { 'Commit message' }
|
2021-04-27 02:09:45 -04:00
|
|
|
let(:file_path) { "#{SecureRandom.uuid}.md" }
|
2020-05-29 05:08:06 -04:00
|
|
|
let(:actions) do
|
|
|
|
[
|
|
|
|
{
|
|
|
|
action: 'create',
|
2021-04-27 02:09:45 -04:00
|
|
|
file_path: file_path,
|
2020-05-29 05:08:06 -04:00
|
|
|
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
|
2021-04-27 02:09:45 -04:00
|
|
|
it "returns the ETag path for the commit's pipeline" do
|
|
|
|
commit_pipeline_path = subject[:commit_pipeline_path]
|
|
|
|
expect(commit_pipeline_path).to match(%r(pipelines/sha/\w+))
|
|
|
|
end
|
|
|
|
|
2020-05-29 05:08:06 -04:00
|
|
|
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([
|
2021-04-27 02:09:45 -04:00
|
|
|
a_hash_including(a_mode: '0', b_mode: '100644', new_file: true, new_path: file_path)
|
2020-05-29 05:08:06 -04:00
|
|
|
])
|
|
|
|
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
|
|
|
|
|
2020-11-12 10:09:09 -05:00
|
|
|
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
|
|
|
|
|
2020-05-29 05:08:06 -04:00
|
|
|
context 'when message is not set' do
|
|
|
|
let(:message) { nil }
|
|
|
|
|
|
|
|
it 'returns errors' do
|
|
|
|
expect(mutated_commit).to be_nil
|
2020-08-05 14:09:49 -04:00
|
|
|
expect(subject[:errors].to_s).to match(/3:UserCommitFiles: empty CommitMessage/)
|
2020-05-29 05:08:06 -04:00
|
|
|
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
|