Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-27 00:07:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-27 00:07:49 +0300
commitb558264c9d10841f46a8ffeb15f18d0cee60fa7a (patch)
tree48733878d8c1351038ec21146dadef50a86b14b4 /spec/controllers/search_controller_spec.rb
parent3677c80c9b40d5b412cbbe127510a7d7b975a8e7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/controllers/search_controller_spec.rb')
-rw-r--r--spec/controllers/search_controller_spec.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/controllers/search_controller_spec.rb b/spec/controllers/search_controller_spec.rb
index 3dcafae295a..1559a50d016 100644
--- a/spec/controllers/search_controller_spec.rb
+++ b/spec/controllers/search_controller_spec.rb
@@ -92,6 +92,7 @@ describe SearchController do
end
context 'global search' do
+ using RSpec::Parameterized::TableSyntax
render_views
it 'omits pipeline status from load' do
@@ -102,6 +103,47 @@ describe SearchController do
expect(assigns[:search_objects].first).to eq project
end
+
+ context 'check search term length' do
+ let(:search_queries) do
+ char_limit = controller.class::NON_ES_SEARCH_CHAR_LIMIT
+ term_limit = controller.class::NON_ES_SEARCH_TERM_LIMIT
+ {
+ chars_under_limit: ('a' * (char_limit - 1)),
+ chars_over_limit: ('a' * (char_limit + 1)),
+ terms_under_limit: ('abc ' * (term_limit - 1)),
+ terms_over_limit: ('abc ' * (term_limit + 1))
+ }
+ end
+
+ where(:es_enabled, :string_name, :expectation) do
+ true | :chars_under_limit | :not_to_set_flash
+ true | :chars_over_limit | :not_to_set_flash
+ true | :terms_under_limit | :not_to_set_flash
+ true | :terms_over_limit | :not_to_set_flash
+ false | :chars_under_limit | :not_to_set_flash
+ false | :chars_over_limit | :set_chars_flash
+ false | :terms_under_limit | :not_to_set_flash
+ false | :terms_over_limit | :set_terms_flash
+ end
+
+ with_them do
+ it do
+ allow(Gitlab::CurrentSettings).to receive(:elasticsearch_search?).and_return(es_enabled)
+
+ get :show, params: { scope: 'projects', search: search_queries[string_name] }
+
+ case expectation
+ when :not_to_set_flash
+ expect(controller).not_to set_flash[:alert]
+ when :set_chars_flash
+ expect(controller).to set_flash[:alert].to(/characters/)
+ when :set_terms_flash
+ expect(controller).to set_flash[:alert].to(/terms/)
+ end
+ end
+ end
+ end
end
it 'finds issue comments' do