2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
require 'spec_helper'
|
2016-02-15 15:48:16 -05:00
|
|
|
|
|
|
|
describe Projects::CommitController do
|
2017-11-03 09:16:43 -04:00
|
|
|
set(:project) { create(:project, :repository) }
|
|
|
|
set(:user) { create(:user) }
|
2016-12-27 02:30:52 -05:00
|
|
|
let(:commit) { project.commit("master") }
|
2016-06-28 12:25:32 -04:00
|
|
|
let(:master_pickable_sha) { '7d3b0f7cff5f37573aea97cebfd5692ea1689924' }
|
2019-01-16 07:09:29 -05:00
|
|
|
let(:master_pickable_commit) { project.commit(master_pickable_sha) }
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-07-08 13:11:47 -04:00
|
|
|
describe 'GET show' do
|
2016-05-24 01:59:35 -04:00
|
|
|
render_views
|
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
def go(extra_params = {})
|
|
|
|
params = {
|
2017-02-23 18:55:01 -05:00
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
2016-06-28 12:25:32 -04:00
|
|
|
}
|
|
|
|
|
2018-12-17 17:52:17 -05:00
|
|
|
get :show, params: params.merge(extra_params)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-02-15 15:48:16 -05:00
|
|
|
context 'with valid id' do
|
|
|
|
it 'responds with 200' do
|
2016-06-28 12:25:32 -04:00
|
|
|
go(id: commit.id)
|
2016-02-15 15:48:16 -05:00
|
|
|
|
|
|
|
expect(response).to be_ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with invalid id' do
|
|
|
|
it 'responds with 404' do
|
2016-06-28 12:25:32 -04:00
|
|
|
go(id: commit.id.reverse)
|
2016-02-15 15:48:16 -05:00
|
|
|
|
|
|
|
expect(response).to be_not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-24 01:59:35 -04:00
|
|
|
it 'handles binary files' do
|
2016-06-28 12:25:32 -04:00
|
|
|
go(id: TestEnv::BRANCH_SHA['binary-encoding'], format: 'html')
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples "export as" do |format|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does generally work" do
|
2016-06-28 12:25:32 -04:00
|
|
|
go(id: commit.id, format: format)
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "generates it" do
|
2016-06-28 12:25:32 -04:00
|
|
|
expect_any_instance_of(Commit).to receive(:"to_#{format}")
|
|
|
|
|
|
|
|
go(id: commit.id, format: format)
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "renders it" do
|
2016-06-28 12:25:32 -04:00
|
|
|
go(id: commit.id, format: format)
|
|
|
|
|
|
|
|
expect(response.body).to eq(commit.send(:"to_#{format}"))
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does not escape Html" do
|
2017-06-21 09:48:12 -04:00
|
|
|
allow_any_instance_of(Commit).to receive(:"to_#{format}")
|
|
|
|
.and_return('HTML entities &<>" ')
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
go(id: commit.id, format: format)
|
|
|
|
|
|
|
|
expect(response.body).not_to include('&')
|
|
|
|
expect(response.body).not_to include('>')
|
|
|
|
expect(response.body).not_to include('<')
|
|
|
|
expect(response.body).not_to include('"')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "as diff" do
|
2018-05-15 11:05:19 -04:00
|
|
|
it "triggers workhorse to serve the request" do
|
|
|
|
go(id: commit.id, format: :diff)
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2018-05-15 11:05:19 -04:00
|
|
|
expect(response.headers[Gitlab::Workhorse::SEND_DATA_HEADER]).to start_with("git-diff:")
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "as patch" do
|
2016-07-25 14:16:19 -04:00
|
|
|
it "contains a git diff" do
|
2018-05-15 11:05:19 -04:00
|
|
|
go(id: commit.id, format: :patch)
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2018-05-15 11:05:19 -04:00
|
|
|
expect(response.headers[Gitlab::Workhorse::SEND_DATA_HEADER]).to start_with("git-format-patch:")
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'commit that removes a submodule' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:fork_project) { create(:forked_project_with_submodules, visibility_level: 20) }
|
|
|
|
let(:commit) { fork_project.commit('remove-submodule') }
|
|
|
|
|
|
|
|
it 'renders it' do
|
|
|
|
get(:show,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: fork_project.namespace,
|
|
|
|
project_id: fork_project,
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
end
|
2017-11-08 15:39:29 -05:00
|
|
|
|
|
|
|
context 'in the context of a merge_request' do
|
|
|
|
let(:merge_request) { create(:merge_request, source_project: project) }
|
|
|
|
let(:commit) { merge_request.commits.first }
|
|
|
|
|
|
|
|
it 'prepare diff notes in the context of the merge request' do
|
|
|
|
go(id: commit.id, merge_request_iid: merge_request.iid)
|
|
|
|
|
2017-12-01 14:08:30 -05:00
|
|
|
expect(assigns(:new_diff_note_attrs)).to eq({
|
|
|
|
noteable_type: 'MergeRequest',
|
2017-11-08 15:39:29 -05:00
|
|
|
noteable_id: merge_request.id,
|
|
|
|
commit_id: commit.id
|
|
|
|
})
|
|
|
|
expect(response).to be_ok
|
|
|
|
end
|
|
|
|
end
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2017-10-13 13:11:11 -04:00
|
|
|
describe 'GET branches' do
|
|
|
|
it 'contains branch and tags information' do
|
2016-10-03 08:11:16 -04:00
|
|
|
commit = project.commit('5937ac0a7beb003549fc5fd26fc247adbce4a52e')
|
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
get(:branches,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-05-24 01:59:35 -04:00
|
|
|
|
2017-10-13 13:11:11 -04:00
|
|
|
expect(assigns(:branches)).to include('master', 'feature_conflict')
|
|
|
|
expect(assigns(:branches_limit_exceeded)).to be_falsey
|
|
|
|
expect(assigns(:tags)).to include('v1.1.0')
|
|
|
|
expect(assigns(:tags_limit_exceeded)).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns :limit_exceeded when number of branches/tags reach a threshhold' do
|
|
|
|
commit = project.commit('5937ac0a7beb003549fc5fd26fc247adbce4a52e')
|
|
|
|
allow_any_instance_of(Repository).to receive(:branch_count).and_return(1001)
|
|
|
|
allow_any_instance_of(Repository).to receive(:tag_count).and_return(1001)
|
|
|
|
|
|
|
|
get(:branches,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: commit.id
|
|
|
|
})
|
2017-10-13 13:11:11 -04:00
|
|
|
|
|
|
|
expect(assigns(:branches)).to eq([])
|
|
|
|
expect(assigns(:branches_limit_exceeded)).to be_truthy
|
|
|
|
expect(assigns(:tags)).to eq([])
|
|
|
|
expect(assigns(:tags_limit_exceeded)).to be_truthy
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-08 13:11:47 -04:00
|
|
|
describe 'POST revert' do
|
2016-06-28 12:25:32 -04:00
|
|
|
context 'when target branch is not provided' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'renders the 404 page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
post(:revert,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
expect(response).not_to be_success
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the revert was successful' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'redirects to the commits page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
post(:revert,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
expect(response).to redirect_to project_commits_path(project, 'master')
|
2016-06-28 12:25:32 -04:00
|
|
|
expect(flash[:notice]).to eq('The commit has been successfully reverted.')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the revert failed' do
|
|
|
|
before do
|
|
|
|
post(:revert,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'redirects to the commit page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
# Reverting a commit that has been already reverted.
|
|
|
|
post(:revert,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
expect(response).to redirect_to project_commit_path(project, commit.id)
|
2016-06-28 12:25:32 -04:00
|
|
|
expect(flash[:alert]).to match('Sorry, we cannot revert this commit automatically.')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-08 13:11:47 -04:00
|
|
|
describe 'POST cherry_pick' do
|
2016-06-28 12:25:32 -04:00
|
|
|
context 'when target branch is not provided' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'renders the 404 page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
post(:cherry_pick,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: master_pickable_commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
expect(response).not_to be_success
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the cherry-pick was successful' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'redirects to the commits page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
post(:cherry_pick,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: master_pickable_commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
expect(response).to redirect_to project_commits_path(project, 'master')
|
2018-07-25 14:22:01 -04:00
|
|
|
expect(flash[:notice]).to eq('The commit has been successfully cherry-picked into master.')
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
2016-05-24 01:59:35 -04:00
|
|
|
end
|
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
context 'when the cherry_pick failed' do
|
|
|
|
before do
|
|
|
|
post(:cherry_pick,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: master_pickable_commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'redirects to the commit page' do
|
2016-06-28 12:25:32 -04:00
|
|
|
# Cherry-picking a commit that has been already cherry-picked.
|
|
|
|
post(:cherry_pick,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
start_branch: 'master',
|
|
|
|
id: master_pickable_commit.id
|
|
|
|
})
|
2016-06-28 12:25:32 -04:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
expect(response).to redirect_to project_commit_path(project, master_pickable_commit.id)
|
2016-06-28 12:25:32 -04:00
|
|
|
expect(flash[:alert]).to match('Sorry, we cannot cherry-pick this commit automatically.')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-08 13:11:47 -04:00
|
|
|
describe 'GET diff_for_path' do
|
2016-06-28 12:25:32 -04:00
|
|
|
def diff_for_path(extra_params = {})
|
|
|
|
params = {
|
2017-02-23 18:55:01 -05:00
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
2016-06-28 12:25:32 -04:00
|
|
|
}
|
|
|
|
|
2018-12-17 17:52:17 -05:00
|
|
|
get :diff_for_path, params: params.merge(extra_params)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:existing_path) { '.gitmodules' }
|
2016-10-03 08:11:16 -04:00
|
|
|
let(:commit2) { project.commit('5937ac0a7beb003549fc5fd26fc247adbce4a52e') }
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
context 'when the commit exists' do
|
|
|
|
context 'when the user has access to the project' do
|
|
|
|
context 'when the path exists in the diff' do
|
|
|
|
it 'enables diff notes' do
|
2016-10-03 08:11:16 -04:00
|
|
|
diff_for_path(id: commit2.id, old_path: existing_path, new_path: existing_path)
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
expect(assigns(:diff_notes_disabled)).to be_falsey
|
2017-03-09 20:29:11 -05:00
|
|
|
expect(assigns(:new_diff_note_attrs)).to eq(noteable_type: 'Commit',
|
2017-03-13 14:05:02 -04:00
|
|
|
commit_id: commit2.id)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'only renders the diffs for the path given' do
|
2016-07-26 03:21:42 -04:00
|
|
|
expect(controller).to receive(:render_diff_for_path).and_wrap_original do |meth, diffs|
|
|
|
|
expect(diffs.diff_files.map(&:new_path)).to contain_exactly(existing_path)
|
|
|
|
meth.call(diffs)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-10-03 08:11:16 -04:00
|
|
|
diff_for_path(id: commit2.id, old_path: existing_path, new_path: existing_path)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the path does not exist in the diff' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
diff_for_path(id: commit.id, old_path: existing_path.succ, new_path: existing_path.succ)
|
|
|
|
end
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
it 'returns a 404' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the user does not have access to the project' do
|
|
|
|
before do
|
|
|
|
project.team.truncate
|
2016-07-08 17:50:06 -04:00
|
|
|
diff_for_path(id: commit.id, old_path: existing_path, new_path: existing_path)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 404' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the commit does not exist' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
2017-11-22 09:48:09 -05:00
|
|
|
diff_for_path(id: commit.id.reverse, old_path: existing_path, new_path: existing_path)
|
2017-06-14 14:18:56 -04:00
|
|
|
end
|
2016-06-28 12:25:32 -04:00
|
|
|
|
|
|
|
it 'returns a 404' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
2016-02-15 15:48:16 -05:00
|
|
|
end
|
|
|
|
end
|
2016-12-27 02:30:52 -05:00
|
|
|
|
|
|
|
describe 'GET pipelines' do
|
|
|
|
def get_pipelines(extra_params = {})
|
|
|
|
params = {
|
2017-02-23 18:55:01 -05:00
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
2016-12-27 02:30:52 -05:00
|
|
|
}
|
|
|
|
|
2018-12-17 17:52:17 -05:00
|
|
|
get :pipelines, params: params.merge(extra_params)
|
2016-12-27 02:30:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the commit exists' do
|
2017-01-27 09:23:09 -05:00
|
|
|
context 'when the commit has pipelines' do
|
|
|
|
before do
|
|
|
|
create(:ci_pipeline, project: project, sha: commit.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when rendering a HTML format' do
|
|
|
|
it 'shows pipelines' do
|
|
|
|
get_pipelines(id: commit.id)
|
|
|
|
|
|
|
|
expect(response).to be_ok
|
|
|
|
end
|
|
|
|
end
|
2016-12-27 02:30:52 -05:00
|
|
|
|
2017-01-27 09:23:09 -05:00
|
|
|
context 'when rendering a JSON format' do
|
|
|
|
it 'responds with serialized pipelines' do
|
|
|
|
get_pipelines(id: commit.id, format: :json)
|
|
|
|
|
|
|
|
expect(response).to be_ok
|
2017-07-14 11:52:54 -04:00
|
|
|
expect(JSON.parse(response.body)['pipelines']).not_to be_empty
|
|
|
|
expect(JSON.parse(response.body)['count']['all']).to eq 1
|
2018-10-30 11:56:30 -04:00
|
|
|
expect(response).to include_pagination_headers
|
2017-01-27 09:23:09 -05:00
|
|
|
end
|
2016-12-27 02:30:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the commit does not exist' do
|
|
|
|
before do
|
|
|
|
get_pipelines(id: 'e7a412c8da9f6d0081a633a4a402dde1c4694ebd')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 404' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2016-12-27 02:30:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-02-15 15:48:16 -05:00
|
|
|
end
|