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
8756cf51
Commit
8756cf51
authored
Jul 08, 2020
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the en/dis-ablement of the ES feature in a flaky test
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
50967e64
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
26 deletions
+33
-26
ee/spec/workers/elastic_namespace_indexer_worker_spec.rb
ee/spec/workers/elastic_namespace_indexer_worker_spec.rb
+33
-26
No files found.
ee/spec/workers/elastic_namespace_indexer_worker_spec.rb
View file @
8756cf51
...
...
@@ -2,21 +2,27 @@
require
'spec_helper'
RSpec
.
describe
ElasticNamespaceIndexerWorker
,
:elastic
do
RSpec
.
describe
ElasticNamespaceIndexerWorker
do
subject
{
described_class
.
new
}
context
'when ES is disabled'
do
before
do
stub_ee_application_setting
(
elasticsearch_indexing:
true
)
stub_ee_application_setting
(
elasticsearch_limit_indexing:
true
)
end
it
'returns true if ES disabled'
do
stub_ee_application_setting
(
elasticsearch_indexing:
false
)
stub_ee_application_setting
(
elasticsearch_limit_indexing:
false
)
end
it
'returns true'
do
expect
(
Elastic
::
ProcessInitialBookkeepingService
).
not_to
receive
(
:backfill_projects!
)
expect
(
subject
.
perform
(
1
,
"index"
)).
to
be_truthy
end
end
context
'when ES is enabled'
,
:elastic
do
before
do
stub_ee_application_setting
(
elasticsearch_indexing:
true
)
stub_ee_application_setting
(
elasticsearch_limit_indexing:
true
)
end
it
'returns true if limited indexing is not enabled'
do
stub_ee_application_setting
(
elasticsearch_limit_indexing:
false
)
...
...
@@ -43,4 +49,5 @@ RSpec.describe ElasticNamespaceIndexerWorker, :elastic do
subject
.
perform
(
namespace
.
id
,
:delete
)
end
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