2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe 'Creation of a new commit' do
|
2020-06-23 00:09:42 +05:30
|
|
|
include GraphqlHelpers
|
|
|
|
|
|
|
|
let_it_be(:current_user) { create(:user) }
|
|
|
|
let_it_be(:project) { create(:project, :public, :repository) }
|
|
|
|
let(:input) { { project_path: project.full_path, branch: branch, message: message, actions: actions } }
|
|
|
|
let(:branch) { 'master' }
|
|
|
|
let(:message) { 'Commit message' }
|
|
|
|
let(:actions) do
|
|
|
|
[
|
|
|
|
{
|
|
|
|
action: 'CREATE',
|
|
|
|
filePath: 'NEW_FILE.md',
|
|
|
|
content: 'Hello'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:mutation) { graphql_mutation(:commit_create, input) }
|
|
|
|
let(:mutation_response) { graphql_mutation_response(:commit_create) }
|
|
|
|
|
|
|
|
context 'the user is not allowed to create a commit' do
|
2020-11-24 15:15:51 +05:30
|
|
|
it_behaves_like 'a mutation that returns a top-level access error'
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user has permissions to create a commit' do
|
|
|
|
before do
|
|
|
|
project.add_developer(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a new commit' do
|
|
|
|
post_graphql_mutation(mutation, current_user: current_user)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:success)
|
|
|
|
expect(mutation_response['commit']).to include(
|
|
|
|
'title' => message
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when branch is not correct' do
|
|
|
|
let(:branch) { 'unknown' }
|
|
|
|
|
|
|
|
it_behaves_like 'a mutation that returns errors in the response',
|
|
|
|
errors: ['You can only create or edit files when you are on a branch']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|