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
6789e4fc
Commit
6789e4fc
authored
Mar 06, 2017
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for Geo::GeoBackfillWorker
parent
6b5997eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
1 deletion
+35
-1
spec/workers/geo_backfill_worker_spec.rb
spec/workers/geo_backfill_worker_spec.rb
+35
-1
No files found.
spec/workers/geo_backfill_worker_spec.rb
View file @
6789e4fc
require
'spec_helper'
describe
Geo
::
GeoBackfillWorker
,
services:
true
do
let!
(
:primary
)
{
create
(
:geo_node
,
:primary
,
host:
'primary-geo-node'
)
}
let!
(
:secondary
)
{
create
(
:geo_node
,
:current
)
}
let!
(
:projects
)
{
create_list
(
:empty_project
,
2
)
}
subject
{
described_class
.
new
}
describe
'#perform'
do
pending
{
raise
'must be implemented'
}
it
'performs GeoSingleRepositoryBackfillWorker for each project'
do
expect
(
GeoSingleRepositoryBackfillWorker
).
to
receive
(
:new
).
exactly
(
2
).
and_call_original
subject
.
perform
end
it
'does not perform GeoSingleRepositoryBackfillWorker when node is disabled'
do
allow
(
secondary
).
to
receive
(
:enabled?
)
{
false
}
expect
(
GeoSingleRepositoryBackfillWorker
).
not_to
receive
(
:new
)
subject
.
perform
end
it
'does not perform GeoSingleRepositoryBackfillWorker for projects that repository exists'
do
create_list
(
:project
,
2
)
expect
(
GeoSingleRepositoryBackfillWorker
).
to
receive
(
:new
).
exactly
(
2
).
and_call_original
subject
.
perform
end
it
'does not perform GeoSingleRepositoryBackfillWorker when can not obtain a lease'
do
allow_any_instance_of
(
Gitlab
::
ExclusiveLease
).
to
receive
(
:try_obtain
)
{
false
}
expect
(
GeoSingleRepositoryBackfillWorker
).
not_to
receive
(
:new
)
subject
.
perform
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