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
8d500cba
Commit
8d500cba
authored
Aug 13, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
3bbc62f8
3702ab73
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
109 additions
and
13 deletions
+109
-13
app/models/repository.rb
app/models/repository.rb
+4
-4
app/services/git/branch_hooks_service.rb
app/services/git/branch_hooks_service.rb
+2
-2
app/workers/post_receive.rb
app/workers/post_receive.rb
+3
-0
changelogs/unreleased/65803-invalidate-branches-cache-on-refresh.yml
...unreleased/65803-invalidate-branches-cache-on-refresh.yml
+5
-0
lib/gitlab/git_post_receive.rb
lib/gitlab/git_post_receive.rb
+6
-0
spec/lib/gitlab/git_post_receive_spec.rb
spec/lib/gitlab/git_post_receive_spec.rb
+52
-0
spec/models/repository_spec.rb
spec/models/repository_spec.rb
+12
-0
spec/workers/post_receive_spec.rb
spec/workers/post_receive_spec.rb
+25
-7
No files found.
app/models/repository.rb
View file @
8d500cba
...
...
@@ -460,8 +460,8 @@ class Repository
end
# Runs code after a new branch has been created.
def
after_create_branch
expire_branches_cache
def
after_create_branch
(
expire_cache:
true
)
expire_branches_cache
if
expire_cache
repository_event
(
:push_branch
)
end
...
...
@@ -474,8 +474,8 @@ class Repository
end
# Runs code after an existing branch has been removed.
def
after_remove_branch
expire_branches_cache
def
after_remove_branch
(
expire_cache:
true
)
expire_branches_cache
if
expire_cache
end
def
method_missing
(
msg
,
*
args
,
&
block
)
...
...
app/services/git/branch_hooks_service.rb
View file @
8d500cba
...
...
@@ -63,7 +63,7 @@ module Git
end
def
branch_create_hooks
project
.
repository
.
after_create_branch
project
.
repository
.
after_create_branch
(
expire_cache:
false
)
project
.
after_create_default_branch
if
default_branch?
end
...
...
@@ -78,7 +78,7 @@ module Git
end
def
branch_remove_hooks
project
.
repository
.
after_remove_branch
project
.
repository
.
after_remove_branch
(
expire_cache:
false
)
end
# Schedules processing of commit messages
...
...
app/workers/post_receive.rb
View file @
8d500cba
...
...
@@ -42,6 +42,9 @@ class PostReceive
user
=
identify_user
(
post_received
)
return
false
unless
user
# Expire the branches cache so we have updated data for this push
post_received
.
project
.
repository
.
expire_branches_cache
if
post_received
.
includes_branches?
post_received
.
enum_for
(
:changes_refs
).
with_index
do
|
(
oldrev
,
newrev
,
ref
),
index
|
service_klass
=
if
Gitlab
::
Git
.
tag_ref?
(
ref
)
...
...
changelogs/unreleased/65803-invalidate-branches-cache-on-refresh.yml
0 → 100644
View file @
8d500cba
---
title
:
Invalidate branches cache on PostReceive
merge_request
:
31653
author
:
type
:
fixed
lib/gitlab/git_post_receive.rb
View file @
8d500cba
...
...
@@ -27,6 +27,12 @@ module Gitlab
end
end
def
includes_branches?
enum_for
(
:changes_refs
).
any?
do
|
_oldrev
,
_newrev
,
ref
|
Gitlab
::
Git
.
branch_ref?
(
ref
)
end
end
private
def
deserialize_changes
(
changes
)
...
...
spec/lib/gitlab/git_post_receive_spec.rb
0 → 100644
View file @
8d500cba
# frozen_string_literal: true
require
'spec_helper'
describe
::
Gitlab
::
GitPostReceive
do
let
(
:project
)
{
create
(
:project
)
}
subject
{
described_class
.
new
(
project
,
"project-
#{
project
.
id
}
"
,
changes
.
dup
,
{})
}
describe
'#includes_branches?'
do
context
'with no branches'
do
let
(
:changes
)
do
<<~
EOF
654321 210987 refs/nobranches/tag1
654322 210986 refs/tags/test1
654323 210985 refs/merge-requests/mr1
EOF
end
it
'returns false'
do
expect
(
subject
.
includes_branches?
).
to
be_falsey
end
end
context
'with branches'
do
let
(
:changes
)
do
<<~
EOF
654322 210986 refs/heads/test1
654321 210987 refs/tags/tag1
654323 210985 refs/merge-requests/mr1
EOF
end
it
'returns true'
do
expect
(
subject
.
includes_branches?
).
to
be_truthy
end
end
context
'with malformed changes'
do
let
(
:changes
)
do
<<~
EOF
ref/heads/1 a
somebranch refs/heads/2
EOF
end
it
'returns false'
do
expect
(
subject
.
includes_branches?
).
to
be_falsey
end
end
end
end
spec/models/repository_spec.rb
View file @
8d500cba
...
...
@@ -1781,6 +1781,12 @@ describe Repository do
repository
.
after_create_branch
end
it
'does not expire the branch caches when specified'
do
expect
(
repository
).
not_to
receive
(
:expire_branches_cache
)
repository
.
after_create_branch
(
expire_cache:
false
)
end
end
describe
'#after_remove_branch'
do
...
...
@@ -1789,6 +1795,12 @@ describe Repository do
repository
.
after_remove_branch
end
it
'does not expire the branch caches when specified'
do
expect
(
repository
).
not_to
receive
(
:expire_branches_cache
)
repository
.
after_remove_branch
(
expire_cache:
false
)
end
end
describe
'#after_create'
do
...
...
spec/workers/post_receive_spec.rb
View file @
8d500cba
...
...
@@ -57,13 +57,25 @@ describe PostReceive do
context
'with changes'
do
before
do
allow_any_instance_of
(
Gitlab
::
GitPostReceive
).
to
receive
(
:identify
).
and_return
(
project
.
owner
)
allow
(
Gitlab
::
GlRepository
).
to
receive
(
:parse
).
and_return
([
project
,
Gitlab
::
GlRepository
::
PROJECT
])
end
context
"branches"
do
let
(
:changes
)
{
"123456 789012 refs/heads/tést"
}
let
(
:changes
)
do
<<~
EOF
'123456 789012 refs/heads/tést1'
'123456 789012 refs/heads/tést2'
EOF
end
it
"calls Git::BranchPushService"
do
expect_next_instance_of
(
Git
::
BranchPushService
)
do
|
service
|
it
'expires the branches cache'
do
expect
(
project
.
repository
).
to
receive
(
:expire_branches_cache
).
once
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
it
'calls Git::BranchPushService'
do
expect_any_instance_of
(
Git
::
BranchPushService
)
do
|
service
|
expect
(
service
).
to
receive
(
:execute
).
and_return
(
true
)
end
...
...
@@ -73,16 +85,22 @@ describe PostReceive do
end
end
context
"tags"
do
let
(
:changes
)
{
"123456 789012 refs/tags/tag"
}
context
'tags'
do
let
(
:changes
)
{
'123456 789012 refs/tags/tag'
}
it
'does not expire branches cache'
do
expect
(
project
.
repository
).
not_to
receive
(
:expire_branches_cache
)
it
"calls Git::TagPushService"
do
expect
(
Git
::
BranchPushService
).
not_to
receive
(
:execute
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
it
'calls Git::TagPushService'
do
expect_next_instance_of
(
Git
::
TagPushService
)
do
|
service
|
expect
(
service
).
to
receive
(
:execute
).
and_return
(
true
)
end
expect
(
Git
::
BranchPushService
).
not_to
receive
(
:new
)
described_class
.
new
.
perform
(
gl_repository
,
key_id
,
base64_changes
)
end
end
...
...
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