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
0
Merge Requests
0
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
Kazuhiko Shiozaki
gitlab-ce
Commits
a10678e7
Commit
a10678e7
authored
Feb 25, 2016
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added specs for the various Repository hooks
parent
3b520efd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
106 additions
and
2 deletions
+106
-2
spec/models/repository_spec.rb
spec/models/repository_spec.rb
+106
-2
No files found.
spec/models/repository_spec.rb
View file @
a10678e7
...
...
@@ -362,14 +362,14 @@ describe Repository, models: true do
repository
.
expire_cache
(
'master'
)
end
it
'expires the emptiness cache for an empty repository'
do
it
'expires the emptiness cache
s
for an empty repository'
do
expect
(
repository
).
to
receive
(
:empty?
).
and_return
(
true
)
expect
(
repository
).
to
receive
(
:expire_emptiness_caches
)
repository
.
expire_cache
end
it
'does not expire the emptiness cache for a non-empty repository'
do
it
'does not expire the emptiness cache
s
for a non-empty repository'
do
expect
(
repository
).
to
receive
(
:empty?
).
and_return
(
false
)
expect
(
repository
).
to_not
receive
(
:expire_emptiness_caches
)
...
...
@@ -464,4 +464,108 @@ describe Repository, models: true do
expect
(
repository
.
blob_at_branch
(
'master'
,
'files/ruby/feature.rb'
)).
not_to
be_present
end
end
describe
'#before_delete'
do
describe
'when a repository does not exist'
do
before
do
allow
(
repository
).
to
receive
(
:exists?
).
and_return
(
false
)
end
it
'does not flush caches that depend on repository data'
do
expect
(
repository
).
to_not
receive
(
:expire_cache
)
repository
.
before_delete
end
it
'flushes the root ref cache'
do
expect
(
repository
).
to
receive
(
:expire_root_ref_cache
)
repository
.
before_delete
end
it
'flushes the emptiness caches'
do
expect
(
repository
).
to
receive
(
:expire_emptiness_caches
)
repository
.
before_delete
end
end
describe
'when a repository exists'
do
before
do
allow
(
repository
).
to
receive
(
:exists?
).
and_return
(
true
)
end
it
'flushes the caches that depend on repository data'
do
expect
(
repository
).
to
receive
(
:expire_cache
)
repository
.
before_delete
end
it
'flushes the root ref cache'
do
expect
(
repository
).
to
receive
(
:expire_root_ref_cache
)
repository
.
before_delete
end
it
'flushes the emptiness caches'
do
expect
(
repository
).
to
receive
(
:expire_emptiness_caches
)
repository
.
before_delete
end
end
end
describe
'#before_change_head'
do
it
'flushes the branch cache'
do
expect
(
repository
).
to
receive
(
:expire_branch_cache
)
repository
.
before_change_head
end
it
'flushes the root ref cache'
do
expect
(
repository
).
to
receive
(
:expire_root_ref_cache
)
repository
.
before_change_head
end
end
describe
'#before_create_tag'
do
it
'flushes the cache'
do
expect
(
repository
).
to
receive
(
:expire_cache
)
repository
.
before_create_tag
end
end
describe
'#after_import'
do
it
'flushes the emptiness cachess'
do
expect
(
repository
).
to
receive
(
:expire_emptiness_caches
)
repository
.
after_import
end
end
describe
'#after_push_commit'
do
it
'flushes the cache'
do
expect
(
repository
).
to
receive
(
:expire_cache
).
with
(
'master'
)
repository
.
after_push_commit
(
'master'
)
end
end
describe
'#after_create_branch'
do
it
'flushes the visible content cache'
do
expect
(
repository
).
to
receive
(
:expire_has_visible_content_cache
)
repository
.
after_create_branch
end
end
describe
'#after_remove_branch'
do
it
'flushes the visible content cache'
do
expect
(
repository
).
to
receive
(
:expire_has_visible_content_cache
)
repository
.
after_remove_branch
end
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