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:
authorHiroyuki Sato <sathiroyuki@gmail.com>2017-08-26 16:32:55 +0300
committerHiroyuki Sato <sathiroyuki@gmail.com>2017-08-26 16:32:55 +0300
commit866aab7f2a92f9929a5c5811d3d3c23c11184b26 (patch)
tree7ea024ee7d908aedae9d3576e9c09fad55c74844 /spec/lib/gitlab/sql
parent9e203582b367a1b84035572261a79b62e22bfeaa (diff)
Fix escape characters was not sanitized
Diffstat (limited to 'spec/lib/gitlab/sql')
-rw-r--r--spec/lib/gitlab/sql/pattern_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/lib/gitlab/sql/pattern_spec.rb b/spec/lib/gitlab/sql/pattern_spec.rb
index cbafe36de06..d0412f37098 100644
--- a/spec/lib/gitlab/sql/pattern_spec.rb
+++ b/spec/lib/gitlab/sql/pattern_spec.rb
@@ -12,6 +12,14 @@ describe Gitlab::SQL::Pattern do
end
end
+ context 'when a query with a escape character is shorter than 3 chars' do
+ let(:query) { '_2' }
+
+ it 'returns sanitized exact matching pattern' do
+ expect(to_sql).to eq('\_2')
+ end
+ end
+
context 'when a query is equal to 3 chars' do
let(:query) { '123' }
@@ -20,6 +28,14 @@ describe Gitlab::SQL::Pattern do
end
end
+ context 'when a query with a escape character is equal to 3 chars' do
+ let(:query) { '_23' }
+
+ it 'returns partial matching pattern' do
+ expect(to_sql).to eq('%\_23%')
+ end
+ end
+
context 'when a query is longer than 3 chars' do
let(:query) { '1234' }
@@ -27,5 +43,13 @@ describe Gitlab::SQL::Pattern do
expect(to_sql).to eq('%1234%')
end
end
+
+ context 'when a query with a escape character is longer than 3 chars' do
+ let(:query) { '_234' }
+
+ it 'returns sanitized partial matching pattern' do
+ expect(to_sql).to eq('%\_234%')
+ end
+ end
end
end