Commit 20e79f71 authored by James Lopez's avatar James Lopez

refactored GitPushService and updated spec

parent 83a81ffc
class GitPushService class GitPushService < BaseService
attr_accessor :project, :user, :push_data, :push_commits attr_accessor :push_data, :push_commits
include Gitlab::CurrentSettings include Gitlab::CurrentSettings
include Gitlab::Access include Gitlab::Access
def initialize(project, user, oldrev, newrev, ref)
# TODO: Consider passing an options hash instead https://github.com/bbatsov/ruby-style-guide#too-many-params
@project = project
@user = user
@oldrev = oldrev
@newrev = newrev
@ref = ref
end
# This method will be called after each git update # This method will be called after each git update
# and only if the provided user and project is present in GitLab. # and only if the provided user and project are present in GitLab.
# #
# All callbacks for post receive action should be placed here. # All callbacks for post receive action should be placed here.
# #
...@@ -41,14 +32,14 @@ class GitPushService ...@@ -41,14 +32,14 @@ class GitPushService
# Use the pushed commits that aren't reachable by the default branch # Use the pushed commits that aren't reachable by the default branch
# as a heuristic. This may include more commits than are actually pushed, but # as a heuristic. This may include more commits than are actually pushed, but
# that shouldn't matter because we check for existing cross-references later. # that shouldn't matter because we check for existing cross-references later.
@push_commits = @project.repository.commits_between(@project.default_branch, @newrev) @push_commits = @project.repository.commits_between(@project.default_branch, params[:newrev])
# don't process commits for the initial push to the default branch # don't process commits for the initial push to the default branch
process_commit_messages process_commit_messages
end end
elsif push_to_existing_branch? elsif push_to_existing_branch?
# Collect data for this git push # Collect data for this git push
@push_commits = @project.repository.commits_between(@oldrev, @newrev) @push_commits = @project.repository.commits_between(params[:oldrev], params[:newrev])
process_commit_messages process_commit_messages
end end
# Update merge requests that may be affected by this push. A new branch # Update merge requests that may be affected by this push. A new branch
...@@ -59,17 +50,17 @@ class GitPushService ...@@ -59,17 +50,17 @@ class GitPushService
protected protected
def update_merge_requests def update_merge_requests
@project.update_merge_requests(@oldrev, @newrev, @ref, @user) @project.update_merge_requests(params[:oldrev], params[:newrev], params[:ref], current_user)
EventCreateService.new.push(@project, @user, build_push_data) EventCreateService.new.push(@project, current_user, build_push_data)
@project.execute_hooks(build_push_data.dup, :push_hooks) @project.execute_hooks(build_push_data.dup, :push_hooks)
@project.execute_services(build_push_data.dup, :push_hooks) @project.execute_services(build_push_data.dup, :push_hooks)
CreateCommitBuildsService.new.execute(@project, @user, build_push_data) CreateCommitBuildsService.new.execute(@project, current_user, build_push_data)
ProjectCacheWorker.perform_async(@project.id) ProjectCacheWorker.perform_async(@project.id)
end end
def process_default_branch def process_default_branch
@push_commits = project.repository.commits(@newrev) @push_commits = project.repository.commits(params[:newrev])
# Ensure HEAD points to the default branch in case it is not master # Ensure HEAD points to the default branch in case it is not master
project.change_head(branch_name) project.change_head(branch_name)
...@@ -103,7 +94,7 @@ class GitPushService ...@@ -103,7 +94,7 @@ class GitPushService
# Close issues if these commits were pushed to the project's default branch and the commit message matches the # Close issues if these commits were pushed to the project's default branch and the commit message matches the
# closing regex. Exclude any mentioned Issues from cross-referencing even if the commits are being pushed to # closing regex. Exclude any mentioned Issues from cross-referencing even if the commits are being pushed to
# a different branch. # a different branch.
closed_issues = commit.closes_issues(user) closed_issues = commit.closes_issues(current_user)
closed_issues.each do |issue| closed_issues.each do |issue|
Issues::CloseService.new(project, authors[commit], {}).execute(issue, commit) Issues::CloseService.new(project, authors[commit], {}).execute(issue, commit)
end end
...@@ -115,36 +106,36 @@ class GitPushService ...@@ -115,36 +106,36 @@ class GitPushService
def build_push_data def build_push_data
@push_data ||= Gitlab::PushDataBuilder. @push_data ||= Gitlab::PushDataBuilder.
build(@project, @user, @oldrev, @newrev, @ref, push_commits) build(@project, current_user, params[:oldrev], params[:newrev], params[:ref], push_commits)
end end
def push_to_existing_branch? def push_to_existing_branch?
# Return if this is not a push to a branch (e.g. new commits) # Return if this is not a push to a branch (e.g. new commits)
Gitlab::Git.branch_ref?(@ref) && !Gitlab::Git.blank_ref?(@oldrev) Gitlab::Git.branch_ref?(params[:ref]) && !Gitlab::Git.blank_ref?(params[:oldrev])
end end
def push_to_new_branch? def push_to_new_branch?
Gitlab::Git.branch_ref?(@ref) && Gitlab::Git.blank_ref?(@oldrev) Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:oldrev])
end end
def push_remove_branch? def push_remove_branch?
Gitlab::Git.branch_ref?(@ref) && Gitlab::Git.blank_ref?(@newrev) Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:newrev])
end end
def push_to_branch? def push_to_branch?
Gitlab::Git.branch_ref?(@ref) Gitlab::Git.branch_ref?(params[:ref])
end end
def is_default_branch? def is_default_branch?
Gitlab::Git.branch_ref?(@ref) && Gitlab::Git.branch_ref?(params[:ref]) &&
(Gitlab::Git.ref_name(@ref) == project.default_branch || project.default_branch.nil?) (Gitlab::Git.ref_name(params[:ref]) == project.default_branch || project.default_branch.nil?)
end end
def commit_user(commit) def commit_user(commit)
commit.author || user commit.author || current_user
end end
def branch_name def branch_name
@_branch_name ||= Gitlab::Git.ref_name(@ref) @_branch_name ||= Gitlab::Git.ref_name(params[:ref])
end end
end end
...@@ -38,7 +38,12 @@ class PostReceive ...@@ -38,7 +38,12 @@ class PostReceive
if Gitlab::Git.tag_ref?(ref) if Gitlab::Git.tag_ref?(ref)
GitTagPushService.new.execute(project, @user, oldrev, newrev, ref) GitTagPushService.new.execute(project, @user, oldrev, newrev, ref)
else else
GitPushService.new(project, @user, oldrev, newrev, ref).execute GitPushService.new(project, @user,
{
oldrev: oldrev,
newrev: newrev,
ref: ref
}).execute
end end
end end
end end
......
...@@ -16,7 +16,7 @@ describe GitPushService, services: true do ...@@ -16,7 +16,7 @@ describe GitPushService, services: true do
describe 'Push branches' do describe 'Push branches' do
context 'new branch' do context 'new branch' do
subject do subject do
service = described_class.new(project, user, @blankrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @blankrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -37,7 +37,7 @@ describe GitPushService, services: true do ...@@ -37,7 +37,7 @@ describe GitPushService, services: true do
context 'existing branch' do context 'existing branch' do
subject do subject do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -52,7 +52,7 @@ describe GitPushService, services: true do ...@@ -52,7 +52,7 @@ describe GitPushService, services: true do
context 'rm branch' do context 'rm branch' do
subject do subject do
service = described_class.new(project, user, @oldrev, @blankrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @blankrev, ref: @ref })
service.execute service.execute
end end
...@@ -74,7 +74,7 @@ describe GitPushService, services: true do ...@@ -74,7 +74,7 @@ describe GitPushService, services: true do
describe "Git Push Data" do describe "Git Push Data" do
before do before do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
@push_data = service.push_data @push_data = service.push_data
@commit = project.commit(@newrev) @commit = project.commit(@newrev)
...@@ -137,7 +137,7 @@ describe GitPushService, services: true do ...@@ -137,7 +137,7 @@ describe GitPushService, services: true do
describe "Push Event" do describe "Push Event" do
before do before do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
@event = Event.last @event = Event.last
@push_data = service.push_data @push_data = service.push_data
...@@ -152,7 +152,7 @@ describe GitPushService, services: true do ...@@ -152,7 +152,7 @@ describe GitPushService, services: true do
it "when pushing a new branch for the first time" do it "when pushing a new branch for the first time" do
expect(project).to receive(:update_merge_requests). expect(project).to receive(:update_merge_requests).
with(@blankrev, 'newrev', 'refs/heads/master', user) with(@blankrev, 'newrev', 'refs/heads/master', user)
service = described_class.new(project, user, @blankrev, 'newrev', 'refs/heads/master') service = described_class.new(project, user, { oldrev: @blankrev, newrev: 'newrev', ref: 'refs/heads/master' })
service.execute service.execute
end end
end end
...@@ -164,7 +164,7 @@ describe GitPushService, services: true do ...@@ -164,7 +164,7 @@ describe GitPushService, services: true do
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
expect(project.default_branch).to eq("master") expect(project.default_branch).to eq("master")
expect(project.protected_branches).to receive(:create).with({ name: "master", developers_can_push: false }) expect(project.protected_branches).to receive(:create).with({ name: "master", developers_can_push: false })
service = described_class.new(project, user, @blankrev, 'newrev', 'refs/heads/master') service = described_class.new(project, user, { oldrev: @blankrev, newrev: 'newrev', ref: 'refs/heads/master' })
service.execute service.execute
end end
...@@ -174,7 +174,7 @@ describe GitPushService, services: true do ...@@ -174,7 +174,7 @@ describe GitPushService, services: true do
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
expect(project.default_branch).to eq("master") expect(project.default_branch).to eq("master")
expect(project.protected_branches).not_to receive(:create) expect(project.protected_branches).not_to receive(:create)
service = described_class.new(project, user, @blankrev, 'newrev', 'refs/heads/master') service = described_class.new(project, user, { oldrev: @blankrev, newrev: 'newrev', ref: 'refs/heads/master' })
service.execute service.execute
end end
...@@ -184,13 +184,13 @@ describe GitPushService, services: true do ...@@ -184,13 +184,13 @@ describe GitPushService, services: true do
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
expect(project.default_branch).to eq("master") expect(project.default_branch).to eq("master")
expect(project.protected_branches).to receive(:create).with({ name: "master", developers_can_push: true }) expect(project.protected_branches).to receive(:create).with({ name: "master", developers_can_push: true })
service = described_class.new(project, user, @blankrev, 'newrev', 'refs/heads/master') service = described_class.new(project, user, { oldrev: @blankrev, newrev: 'newrev', ref: 'refs/heads/master' })
service.execute service.execute
end end
it "when pushing new commits to existing branch" do it "when pushing new commits to existing branch" do
expect(project).to receive(:execute_hooks) expect(project).to receive(:execute_hooks)
service = described_class.new(project, user, 'oldrev', 'newrev', 'refs/heads/master') service = described_class.new(project, user, { oldrev: 'oldrev', newrev: 'newrev', ref: 'refs/heads/master' })
service.execute service.execute
end end
end end
...@@ -214,7 +214,7 @@ describe GitPushService, services: true do ...@@ -214,7 +214,7 @@ describe GitPushService, services: true do
it "creates a note if a pushed commit mentions an issue" do it "creates a note if a pushed commit mentions an issue" do
expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, commit_author) expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, commit_author)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -224,7 +224,7 @@ describe GitPushService, services: true do ...@@ -224,7 +224,7 @@ describe GitPushService, services: true do
expect(SystemNoteService).not_to receive(:cross_reference).with(issue, commit, commit_author) expect(SystemNoteService).not_to receive(:cross_reference).with(issue, commit, commit_author)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -236,7 +236,7 @@ describe GitPushService, services: true do ...@@ -236,7 +236,7 @@ describe GitPushService, services: true do
) )
expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, user) expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, user)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -247,7 +247,7 @@ describe GitPushService, services: true do ...@@ -247,7 +247,7 @@ describe GitPushService, services: true do
expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, commit_author) expect(SystemNoteService).to receive(:cross_reference).with(issue, commit, commit_author)
service = described_class.new(project, user, @blankrev, @newrev, 'refs/heads/other') service = described_class.new(project, user, { oldrev: @blankrev, newrev: @newrev, ref: 'refs/heads/other' })
service.execute service.execute
end end
...@@ -273,20 +273,20 @@ describe GitPushService, services: true do ...@@ -273,20 +273,20 @@ describe GitPushService, services: true do
context "to default branches" do context "to default branches" do
it "closes issues" do it "closes issues" do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
expect(Issue.find(issue.id)).to be_closed expect(Issue.find(issue.id)).to be_closed
end end
it "adds a note indicating that the issue is now closed" do it "adds a note indicating that the issue is now closed" do
expect(SystemNoteService).to receive(:change_status).with(issue, project, commit_author, "closed", closing_commit) expect(SystemNoteService).to receive(:change_status).with(issue, project, commit_author, "closed", closing_commit)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
it "doesn't create additional cross-reference notes" do it "doesn't create additional cross-reference notes" do
expect(SystemNoteService).not_to receive(:cross_reference) expect(SystemNoteService).not_to receive(:cross_reference)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
...@@ -295,7 +295,7 @@ describe GitPushService, services: true do ...@@ -295,7 +295,7 @@ describe GitPushService, services: true do
# The push still shouldn't create cross-reference notes. # The push still shouldn't create cross-reference notes.
expect do expect do
service = described_class.new(project, user, @oldrev, @newrev, 'refs/heads/hurf') service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: 'refs/heads/hurf' })
service.execute service.execute
end.not_to change { Note.where(project_id: project.id, system: true).count } end.not_to change { Note.where(project_id: project.id, system: true).count }
end end
...@@ -309,12 +309,12 @@ describe GitPushService, services: true do ...@@ -309,12 +309,12 @@ describe GitPushService, services: true do
it "creates cross-reference notes" do it "creates cross-reference notes" do
expect(SystemNoteService).to receive(:cross_reference).with(issue, closing_commit, commit_author) expect(SystemNoteService).to receive(:cross_reference).with(issue, closing_commit, commit_author)
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
end end
it "doesn't close issues" do it "doesn't close issues" do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
expect(Issue.find(issue.id)).to be_opened expect(Issue.find(issue.id)).to be_opened
end end
...@@ -352,7 +352,7 @@ describe GitPushService, services: true do ...@@ -352,7 +352,7 @@ describe GitPushService, services: true do
let(:message) { "this is some work.\n\nrelated to JIRA-1" } let(:message) { "this is some work.\n\nrelated to JIRA-1" }
it "should initiate one api call to jira server to mention the issue" do it "should initiate one api call to jira server to mention the issue" do
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
expect(WebMock).to have_requested(:post, jira_api_comment_url).with( expect(WebMock).to have_requested(:post, jira_api_comment_url).with(
...@@ -371,7 +371,7 @@ describe GitPushService, services: true do ...@@ -371,7 +371,7 @@ describe GitPushService, services: true do
} }
}.to_json }.to_json
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
expect(WebMock).to have_requested(:post, jira_api_transition_url).with( expect(WebMock).to have_requested(:post, jira_api_transition_url).with(
...@@ -384,7 +384,7 @@ describe GitPushService, services: true do ...@@ -384,7 +384,7 @@ describe GitPushService, services: true do
body: "Issue solved with [#{closing_commit.id}|http://localhost/#{project.path_with_namespace}/commit/#{closing_commit.id}]." body: "Issue solved with [#{closing_commit.id}|http://localhost/#{project.path_with_namespace}/commit/#{closing_commit.id}]."
}.to_json }.to_json
service = described_class.new(project, user, @oldrev, @newrev, @ref) service = described_class.new(project, user, { oldrev: @oldrev, newrev: @newrev, ref: @ref })
service.execute service.execute
expect(WebMock).to have_requested(:post, jira_api_comment_url).with( expect(WebMock).to have_requested(:post, jira_api_comment_url).with(
...@@ -405,7 +405,7 @@ describe GitPushService, services: true do ...@@ -405,7 +405,7 @@ describe GitPushService, services: true do
end end
it 'push to first branch updates HEAD' do it 'push to first branch updates HEAD' do
service = described_class.new(project, user, @blankrev, @newrev, new_ref) service = described_class.new(project, user, { oldrev: @blankrev, newrev: @newrev, ref: new_ref })
service.execute service.execute
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment