Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
83fc1464
Commit
83fc1464
authored
Mar 22, 2019
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename GitPushService -> Git::BranchPushService
parent
558e9462
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
258 additions
and
260 deletions
+258
-260
app/services/after_branch_delete_service.rb
app/services/after_branch_delete_service.rb
+1
-4
app/services/git/branch_push_service.rb
app/services/git/branch_push_service.rb
+244
-0
app/services/git_push_service.rb
app/services/git_push_service.rb
+0
-243
app/workers/create_gpg_signature_worker.rb
app/workers/create_gpg_signature_worker.rb
+2
-2
app/workers/post_receive.rb
app/workers/post_receive.rb
+1
-1
spec/features/projects/environments/environment_spec.rb
spec/features/projects/environments/environment_spec.rb
+1
-1
spec/services/git/branch_push_service_spec.rb
spec/services/git/branch_push_service_spec.rb
+1
-1
spec/support/helpers/cycle_analytics_helpers.rb
spec/support/helpers/cycle_analytics_helpers.rb
+1
-1
spec/workers/post_receive_spec.rb
spec/workers/post_receive_spec.rb
+7
-7
No files found.
app/services/after_branch_delete_service.rb
View file @
83fc1464
# frozen_string_literal: true
# frozen_string_literal: true
##
# Branch can be deleted either by DeleteBranchService or by Git::BranchPushService.
# Branch can be deleted either by DeleteBranchService
# or by GitPushService.
#
class
AfterBranchDeleteService
<
BaseService
class
AfterBranchDeleteService
<
BaseService
attr_reader
:branch_name
attr_reader
:branch_name
...
...
app/services/git/branch_push_service.rb
0 → 100644
View file @
83fc1464
# frozen_string_literal: true
module
Git
class
BranchPushService
<
BaseService
attr_accessor
:push_data
,
:push_commits
include
Gitlab
::
Access
include
Gitlab
::
Utils
::
StrongMemoize
# The N most recent commits to process in a single push payload.
PROCESS_COMMIT_LIMIT
=
100
# This method will be called after each git update
# and only if the provided user and project are present in GitLab.
#
# All callbacks for post receive action should be placed here.
#
# Next, this method:
# 1. Creates the push event
# 2. Updates merge requests
# 3. Recognizes cross-references from commit messages
# 4. Executes the project's webhooks
# 5. Executes the project's services
# 6. Checks if the project's main language has changed
#
def
execute
update_commits
execute_related_hooks
perform_housekeeping
update_remote_mirrors
update_caches
update_signatures
end
def
update_commits
project
.
repository
.
after_create
if
project
.
empty_repo?
project
.
repository
.
after_push_commit
(
branch_name
)
if
push_remove_branch?
project
.
repository
.
after_remove_branch
@push_commits
=
[]
elsif
push_to_new_branch?
project
.
repository
.
after_create_branch
# Re-find the pushed commits.
if
default_branch?
# Initial push to the default branch. Take the full history of that branch as "newly pushed".
process_default_branch
else
# 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
# that shouldn't matter because we check for existing cross-references later.
@push_commits
=
project
.
repository
.
commits_between
(
project
.
default_branch
,
params
[
:newrev
])
# don't process commits for the initial push to the default branch
process_commit_messages
end
elsif
push_to_existing_branch?
# Collect data for this git push
@push_commits
=
project
.
repository
.
commits_between
(
params
[
:oldrev
],
params
[
:newrev
])
process_commit_messages
# Update the bare repositories info/attributes file using the contents of the default branches
# .gitattributes file
update_gitattributes
if
default_branch?
end
end
def
update_gitattributes
project
.
repository
.
copy_gitattributes
(
params
[
:ref
])
end
def
update_caches
if
default_branch?
if
push_to_new_branch?
# If this is the initial push into the default branch, the file type caches
# will already be reset as a result of `Project#change_head`.
types
=
[]
else
paths
=
Set
.
new
last_pushed_commits
.
each
do
|
commit
|
commit
.
raw_deltas
.
each
do
|
diff
|
paths
<<
diff
.
new_path
end
end
types
=
Gitlab
::
FileDetector
.
types_in_paths
(
paths
.
to_a
)
end
DetectRepositoryLanguagesWorker
.
perform_async
(
@project
.
id
,
current_user
.
id
)
else
types
=
[]
end
ProjectCacheWorker
.
perform_async
(
project
.
id
,
types
,
[
:commit_count
,
:repository_size
])
end
# rubocop: disable CodeReuse/ActiveRecord
def
update_signatures
commit_shas
=
last_pushed_commits
.
map
(
&
:sha
)
return
if
commit_shas
.
empty?
shas_with_cached_signatures
=
GpgSignature
.
where
(
commit_sha:
commit_shas
).
pluck
(
:commit_sha
)
commit_shas
-=
shas_with_cached_signatures
return
if
commit_shas
.
empty?
commit_shas
=
Gitlab
::
Git
::
Commit
.
shas_with_signatures
(
project
.
repository
,
commit_shas
)
CreateGpgSignatureWorker
.
perform_async
(
commit_shas
,
project
.
id
)
end
# rubocop: enable CodeReuse/ActiveRecord
# Schedules processing of commit messages.
def
process_commit_messages
default
=
default_branch?
last_pushed_commits
.
each
do
|
commit
|
if
commit
.
matches_cross_reference_regex?
ProcessCommitWorker
.
perform_async
(
project
.
id
,
current_user
.
id
,
commit
.
to_hash
,
default
)
end
end
end
def
update_remote_mirrors
return
unless
project
.
has_remote_mirror?
project
.
mark_stuck_remote_mirrors_as_failed!
project
.
update_remote_mirrors
end
def
execute_related_hooks
# Update merge requests that may be affected by this push. A new branch
# could cause the last commit of a merge request to change.
#
UpdateMergeRequestsWorker
.
perform_async
(
project
.
id
,
current_user
.
id
,
params
[
:oldrev
],
params
[
:newrev
],
params
[
:ref
])
EventCreateService
.
new
.
push
(
project
,
current_user
,
build_push_data
)
Ci
::
CreatePipelineService
.
new
(
project
,
current_user
,
build_push_data
).
execute
(
:push
,
pipeline_options
)
project
.
execute_hooks
(
build_push_data
.
dup
,
:push_hooks
)
project
.
execute_services
(
build_push_data
.
dup
,
:push_hooks
)
if
push_remove_branch?
AfterBranchDeleteService
.
new
(
project
,
current_user
)
.
execute
(
branch_name
)
end
end
def
perform_housekeeping
housekeeping
=
Projects
::
HousekeepingService
.
new
(
project
)
housekeeping
.
increment!
housekeeping
.
execute
if
housekeeping
.
needed?
rescue
Projects
::
HousekeepingService
::
LeaseTaken
end
def
process_default_branch
offset
=
[
push_commits_count_for_ref
-
PROCESS_COMMIT_LIMIT
,
0
].
max
@push_commits
=
project
.
repository
.
commits
(
params
[
:newrev
],
offset:
offset
,
limit:
PROCESS_COMMIT_LIMIT
)
project
.
after_create_default_branch
end
def
build_push_data
@push_data
||=
Gitlab
::
DataBuilder
::
Push
.
build
(
project
,
current_user
,
params
[
:oldrev
],
params
[
:newrev
],
params
[
:ref
],
@push_commits
,
commits_count:
commits_count
,
push_options:
params
[
:push_options
]
||
[]
)
end
def
push_to_existing_branch?
# Return if this is not a push to a branch (e.g. new commits)
branch_ref?
&&
!
Gitlab
::
Git
.
blank_ref?
(
params
[
:oldrev
])
end
def
push_to_new_branch?
strong_memoize
(
:push_to_new_branch
)
do
branch_ref?
&&
Gitlab
::
Git
.
blank_ref?
(
params
[
:oldrev
])
end
end
def
push_remove_branch?
strong_memoize
(
:push_remove_branch
)
do
branch_ref?
&&
Gitlab
::
Git
.
blank_ref?
(
params
[
:newrev
])
end
end
def
default_branch?
branch_ref?
&&
(
branch_name
==
project
.
default_branch
||
project
.
default_branch
.
nil?
)
end
def
commit_user
(
commit
)
commit
.
author
||
current_user
end
def
branch_name
strong_memoize
(
:branch_name
)
do
Gitlab
::
Git
.
ref_name
(
params
[
:ref
])
end
end
def
branch_ref?
strong_memoize
(
:branch_ref
)
do
Gitlab
::
Git
.
branch_ref?
(
params
[
:ref
])
end
end
def
commits_count
return
push_commits_count_for_ref
if
default_branch?
&&
push_to_new_branch?
Array
(
@push_commits
).
size
end
def
push_commits_count_for_ref
strong_memoize
(
:push_commits_count_for_ref
)
do
project
.
repository
.
commit_count_for_ref
(
params
[
:ref
])
end
end
def
last_pushed_commits
@last_pushed_commits
||=
@push_commits
.
last
(
PROCESS_COMMIT_LIMIT
)
end
private
def
pipeline_options
{}
# to be overridden in EE
end
end
end
app/services/git_push_service.rb
deleted
100644 → 0
View file @
558e9462
# frozen_string_literal: true
class
GitPushService
<
BaseService
attr_accessor
:push_data
,
:push_commits
include
Gitlab
::
Access
include
Gitlab
::
Utils
::
StrongMemoize
# The N most recent commits to process in a single push payload.
PROCESS_COMMIT_LIMIT
=
100
# This method will be called after each git update
# and only if the provided user and project are present in GitLab.
#
# All callbacks for post receive action should be placed here.
#
# Next, this method:
# 1. Creates the push event
# 2. Updates merge requests
# 3. Recognizes cross-references from commit messages
# 4. Executes the project's webhooks
# 5. Executes the project's services
# 6. Checks if the project's main language has changed
#
def
execute
update_commits
execute_related_hooks
perform_housekeeping
update_remote_mirrors
update_caches
update_signatures
end
protected
def
update_commits
project
.
repository
.
after_create
if
project
.
empty_repo?
project
.
repository
.
after_push_commit
(
branch_name
)
if
push_remove_branch?
project
.
repository
.
after_remove_branch
@push_commits
=
[]
elsif
push_to_new_branch?
project
.
repository
.
after_create_branch
# Re-find the pushed commits.
if
default_branch?
# Initial push to the default branch. Take the full history of that branch as "newly pushed".
process_default_branch
else
# 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
# that shouldn't matter because we check for existing cross-references later.
@push_commits
=
project
.
repository
.
commits_between
(
project
.
default_branch
,
params
[
:newrev
])
# don't process commits for the initial push to the default branch
process_commit_messages
end
elsif
push_to_existing_branch?
# Collect data for this git push
@push_commits
=
project
.
repository
.
commits_between
(
params
[
:oldrev
],
params
[
:newrev
])
process_commit_messages
# Update the bare repositories info/attributes file using the contents of the default branches
# .gitattributes file
update_gitattributes
if
default_branch?
end
end
def
update_gitattributes
project
.
repository
.
copy_gitattributes
(
params
[
:ref
])
end
def
update_caches
if
default_branch?
if
push_to_new_branch?
# If this is the initial push into the default branch, the file type caches
# will already be reset as a result of `Project#change_head`.
types
=
[]
else
paths
=
Set
.
new
last_pushed_commits
.
each
do
|
commit
|
commit
.
raw_deltas
.
each
do
|
diff
|
paths
<<
diff
.
new_path
end
end
types
=
Gitlab
::
FileDetector
.
types_in_paths
(
paths
.
to_a
)
end
DetectRepositoryLanguagesWorker
.
perform_async
(
@project
.
id
,
current_user
.
id
)
else
types
=
[]
end
ProjectCacheWorker
.
perform_async
(
project
.
id
,
types
,
[
:commit_count
,
:repository_size
])
end
# rubocop: disable CodeReuse/ActiveRecord
def
update_signatures
commit_shas
=
last_pushed_commits
.
map
(
&
:sha
)
return
if
commit_shas
.
empty?
shas_with_cached_signatures
=
GpgSignature
.
where
(
commit_sha:
commit_shas
).
pluck
(
:commit_sha
)
commit_shas
-=
shas_with_cached_signatures
return
if
commit_shas
.
empty?
commit_shas
=
Gitlab
::
Git
::
Commit
.
shas_with_signatures
(
project
.
repository
,
commit_shas
)
CreateGpgSignatureWorker
.
perform_async
(
commit_shas
,
project
.
id
)
end
# rubocop: enable CodeReuse/ActiveRecord
# Schedules processing of commit messages.
def
process_commit_messages
default
=
default_branch?
last_pushed_commits
.
each
do
|
commit
|
if
commit
.
matches_cross_reference_regex?
ProcessCommitWorker
.
perform_async
(
project
.
id
,
current_user
.
id
,
commit
.
to_hash
,
default
)
end
end
end
def
update_remote_mirrors
return
unless
project
.
has_remote_mirror?
project
.
mark_stuck_remote_mirrors_as_failed!
project
.
update_remote_mirrors
end
def
execute_related_hooks
# Update merge requests that may be affected by this push. A new branch
# could cause the last commit of a merge request to change.
#
UpdateMergeRequestsWorker
.
perform_async
(
project
.
id
,
current_user
.
id
,
params
[
:oldrev
],
params
[
:newrev
],
params
[
:ref
])
EventCreateService
.
new
.
push
(
project
,
current_user
,
build_push_data
)
Ci
::
CreatePipelineService
.
new
(
project
,
current_user
,
build_push_data
).
execute
(
:push
,
pipeline_options
)
project
.
execute_hooks
(
build_push_data
.
dup
,
:push_hooks
)
project
.
execute_services
(
build_push_data
.
dup
,
:push_hooks
)
if
push_remove_branch?
AfterBranchDeleteService
.
new
(
project
,
current_user
)
.
execute
(
branch_name
)
end
end
def
perform_housekeeping
housekeeping
=
Projects
::
HousekeepingService
.
new
(
project
)
housekeeping
.
increment!
housekeeping
.
execute
if
housekeeping
.
needed?
rescue
Projects
::
HousekeepingService
::
LeaseTaken
end
def
process_default_branch
offset
=
[
push_commits_count_for_ref
-
PROCESS_COMMIT_LIMIT
,
0
].
max
@push_commits
=
project
.
repository
.
commits
(
params
[
:newrev
],
offset:
offset
,
limit:
PROCESS_COMMIT_LIMIT
)
project
.
after_create_default_branch
end
def
build_push_data
@push_data
||=
Gitlab
::
DataBuilder
::
Push
.
build
(
project
,
current_user
,
params
[
:oldrev
],
params
[
:newrev
],
params
[
:ref
],
@push_commits
,
commits_count:
commits_count
,
push_options:
params
[
:push_options
]
||
[])
end
def
push_to_existing_branch?
# Return if this is not a push to a branch (e.g. new commits)
branch_ref?
&&
!
Gitlab
::
Git
.
blank_ref?
(
params
[
:oldrev
])
end
def
push_to_new_branch?
strong_memoize
(
:push_to_new_branch
)
do
branch_ref?
&&
Gitlab
::
Git
.
blank_ref?
(
params
[
:oldrev
])
end
end
def
push_remove_branch?
strong_memoize
(
:push_remove_branch
)
do
branch_ref?
&&
Gitlab
::
Git
.
blank_ref?
(
params
[
:newrev
])
end
end
def
default_branch?
branch_ref?
&&
(
branch_name
==
project
.
default_branch
||
project
.
default_branch
.
nil?
)
end
def
commit_user
(
commit
)
commit
.
author
||
current_user
end
def
branch_name
strong_memoize
(
:branch_name
)
do
Gitlab
::
Git
.
ref_name
(
params
[
:ref
])
end
end
def
branch_ref?
strong_memoize
(
:branch_ref
)
do
Gitlab
::
Git
.
branch_ref?
(
params
[
:ref
])
end
end
def
commits_count
return
push_commits_count_for_ref
if
default_branch?
&&
push_to_new_branch?
Array
(
@push_commits
).
size
end
def
push_commits_count_for_ref
strong_memoize
(
:push_commits_count_for_ref
)
do
project
.
repository
.
commit_count_for_ref
(
params
[
:ref
])
end
end
def
last_pushed_commits
@last_pushed_commits
||=
@push_commits
.
last
(
PROCESS_COMMIT_LIMIT
)
end
private
def
pipeline_options
{}
# to be overridden in EE
end
end
app/workers/create_gpg_signature_worker.rb
View file @
83fc1464
...
@@ -5,8 +5,8 @@ class CreateGpgSignatureWorker
...
@@ -5,8 +5,8 @@ class CreateGpgSignatureWorker
# rubocop: disable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def
perform
(
commit_shas
,
project_id
)
def
perform
(
commit_shas
,
project_id
)
# Older versions of Git
PushService may push a single commit ID on the stack.
# Older versions of Git
::BranchPushService may push a single commit ID on
# We need this to be backwards compatible.
#
the stack.
We need this to be backwards compatible.
commit_shas
=
Array
(
commit_shas
)
commit_shas
=
Array
(
commit_shas
)
return
if
commit_shas
.
empty?
return
if
commit_shas
.
empty?
...
...
app/workers/post_receive.rb
View file @
83fc1464
...
@@ -46,7 +46,7 @@ class PostReceive
...
@@ -46,7 +46,7 @@ class PostReceive
ref:
ref
,
ref:
ref
,
push_options:
post_received
.
push_options
).
execute
push_options:
post_received
.
push_options
).
execute
elsif
Gitlab
::
Git
.
branch_ref?
(
ref
)
elsif
Gitlab
::
Git
.
branch_ref?
(
ref
)
GitPushService
.
new
(
Git
::
Branch
PushService
.
new
(
post_received
.
project
,
post_received
.
project
,
@user
,
@user
,
oldrev:
oldrev
,
oldrev:
oldrev
,
...
...
spec/features/projects/environments/environment_spec.rb
View file @
83fc1464
...
@@ -319,7 +319,7 @@ describe 'Environment' do
...
@@ -319,7 +319,7 @@ describe 'Environment' do
yield
yield
GitPushService
.
new
(
project
,
user
,
params
).
execute
Git
::
Branch
PushService
.
new
(
project
,
user
,
params
).
execute
end
end
end
end
...
...
spec/services/git_push_service_spec.rb
→
spec/services/git
/branch
_push_service_spec.rb
View file @
83fc1464
require
'spec_helper'
require
'spec_helper'
describe
GitPushService
,
services:
true
do
describe
Git
::
Branch
PushService
,
services:
true
do
include
RepoHelpers
include
RepoHelpers
set
(
:user
)
{
create
(
:user
)
}
set
(
:user
)
{
create
(
:user
)
}
...
...
spec/support/helpers/cycle_analytics_helpers.rb
View file @
83fc1464
...
@@ -23,7 +23,7 @@ module CycleAnalyticsHelpers
...
@@ -23,7 +23,7 @@ module CycleAnalyticsHelpers
return
if
skip_push_handler
return
if
skip_push_handler
GitPushService
.
new
(
project
,
Git
::
Branch
PushService
.
new
(
project
,
user
,
user
,
oldrev:
oldrev
,
oldrev:
oldrev
,
newrev:
commit_shas
.
last
,
newrev:
commit_shas
.
last
,
...
...
spec/workers/post_receive_spec.rb
View file @
83fc1464
...
@@ -33,7 +33,7 @@ describe PostReceive do
...
@@ -33,7 +33,7 @@ describe PostReceive do
describe
"#process_project_changes"
do
describe
"#process_project_changes"
do
context
'empty changes'
do
context
'empty changes'
do
it
"does not call any PushService but runs after project hooks"
do
it
"does not call any PushService but runs after project hooks"
do
expect
(
GitPushService
).
not_to
receive
(
:new
)
expect
(
Git
::
Branch
PushService
).
not_to
receive
(
:new
)
expect
(
Git
::
TagPushService
).
not_to
receive
(
:new
)
expect
(
Git
::
TagPushService
).
not_to
receive
(
:new
)
expect_next_instance_of
(
SystemHooksService
)
{
|
service
|
expect
(
service
).
to
receive
(
:execute_hooks
)
}
expect_next_instance_of
(
SystemHooksService
)
{
|
service
|
expect
(
service
).
to
receive
(
:execute_hooks
)
}
...
@@ -45,7 +45,7 @@ describe PostReceive do
...
@@ -45,7 +45,7 @@ describe PostReceive do
let!
(
:key_id
)
{
""
}
let!
(
:key_id
)
{
""
}
it
'returns false'
do
it
'returns false'
do
expect
(
GitPushService
).
not_to
receive
(
:new
)
expect
(
Git
::
Branch
PushService
).
not_to
receive
(
:new
)
expect
(
Git
::
TagPushService
).
not_to
receive
(
:new
)
expect
(
Git
::
TagPushService
).
not_to
receive
(
:new
)
expect
(
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)).
to
be
false
expect
(
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)).
to
be
false
...
@@ -60,8 +60,8 @@ describe PostReceive do
...
@@ -60,8 +60,8 @@ describe PostReceive do
context
"branches"
do
context
"branches"
do
let
(
:changes
)
{
"123456 789012 refs/heads/tést"
}
let
(
:changes
)
{
"123456 789012 refs/heads/tést"
}
it
"calls GitPushService"
do
it
"calls Git
::Branch
PushService"
do
expect_any_instance_of
(
GitPushService
).
to
receive
(
:execute
).
and_return
(
true
)
expect_any_instance_of
(
Git
::
Branch
PushService
).
to
receive
(
:execute
).
and_return
(
true
)
expect_any_instance_of
(
Git
::
TagPushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
TagPushService
).
not_to
receive
(
:execute
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
end
...
@@ -71,7 +71,7 @@ describe PostReceive do
...
@@ -71,7 +71,7 @@ describe PostReceive do
let
(
:changes
)
{
"123456 789012 refs/tags/tag"
}
let
(
:changes
)
{
"123456 789012 refs/tags/tag"
}
it
"calls Git::TagPushService"
do
it
"calls Git::TagPushService"
do
expect_any_instance_of
(
GitPushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
Branch
PushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
TagPushService
).
to
receive
(
:execute
).
and_return
(
true
)
expect_any_instance_of
(
Git
::
TagPushService
).
to
receive
(
:execute
).
and_return
(
true
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
end
...
@@ -81,7 +81,7 @@ describe PostReceive do
...
@@ -81,7 +81,7 @@ describe PostReceive do
let
(
:changes
)
{
"123456 789012 refs/merge-requests/123"
}
let
(
:changes
)
{
"123456 789012 refs/merge-requests/123"
}
it
"does not call any of the services"
do
it
"does not call any of the services"
do
expect_any_instance_of
(
GitPushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
Branch
PushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
TagPushService
).
not_to
receive
(
:execute
)
expect_any_instance_of
(
Git
::
TagPushService
).
not_to
receive
(
:execute
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
end
...
@@ -125,7 +125,7 @@ describe PostReceive do
...
@@ -125,7 +125,7 @@ describe PostReceive do
allow_any_instance_of
(
Gitlab
::
DataBuilder
::
Repository
).
to
receive
(
:update
).
and_return
(
fake_hook_data
)
allow_any_instance_of
(
Gitlab
::
DataBuilder
::
Repository
).
to
receive
(
:update
).
and_return
(
fake_hook_data
)
# silence hooks so we can isolate
# silence hooks so we can isolate
allow_any_instance_of
(
Key
).
to
receive
(
:post_create_hook
).
and_return
(
true
)
allow_any_instance_of
(
Key
).
to
receive
(
:post_create_hook
).
and_return
(
true
)
allow_any_instance_of
(
GitPushService
).
to
receive
(
:execute
).
and_return
(
true
)
allow_any_instance_of
(
Git
::
Branch
PushService
).
to
receive
(
:execute
).
and_return
(
true
)
end
end
it
'calls SystemHooksService'
do
it
'calls SystemHooksService'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment