add query generator and tests for query generator

This commit is contained in:
Bilal Catic
2020-01-31 11:45:59 +01:00
parent 6f412ba9b8
commit 9a22804e62
2 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
require './text_to_sql_query'
class SqlGeneratorTester
describe 'Testing query generator' do
it 'tests simple search term without column name and without quotes' do
@query = TextToSqlQuery.new('-123', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ?', '%-123%']
end
it 'tests simple search term with column name and without quotes' do
@query = TextToSqlQuery.new('title:ab', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.title LIKE ?', '%ab%']
end
it 'tests simple search term with unknown column name and without quotes' do
@query = TextToSqlQuery.new('unknown:ab', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ?', '%ab%']
end
it 'tests simple search term without column name and with quotes' do
@query = TextToSqlQuery.new('"ab"', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ?', '%"ab"%']
end
it 'tests simple search term with column name and with quotes' do
@query = TextToSqlQuery.new('tag:"ab"', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.tag LIKE ?', '%"ab"%']
end
it 'tests search without operators' do
@query = TextToSqlQuery.new('123 456', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ? OR players.device_id LIKE ?', '%123%', '%456%']
end
it 'tests search with OR operator' do
@query = TextToSqlQuery.new('123 or 456', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ? OR players.device_id LIKE ?', '%123%', '%456%']
end
it 'tests search with AND operator' do
@query = TextToSqlQuery.new('123 and 456', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.device_id LIKE ? AND players.device_id LIKE ?', '%123%', '%456%']
end
it 'tests search with NOT operator on default column' do
@query = TextToSqlQuery.new('not 23', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['NOT players.device_id LIKE ?', '%23%']
end
it 'tests search with NOT operator on non-default column' do
@query = TextToSqlQuery.new('not tag:23', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['NOT players.tag LIKE ?', '%23%']
end
it 'tests search with mixed logical operators' do
@query = TextToSqlQuery.new('title:ab and not tag:hf-1', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.title LIKE ? AND NOT players.tag LIKE ?', '%ab%', '%hf-1%']
end
it 'tests search with mixed logical operators without NOT' do
@query = TextToSqlQuery.new('title:a and title:b or title:c', [:'players.title', :'players.tag', :'players.device_id'], :'players.device_id')
expect(@query.where_clause).to eq ['players.title LIKE ? AND players.title LIKE ? OR players.title LIKE ?', '%a%', '%b%', '%c%']
end
end
end

79
text_to_sql_query.rb Normal file
View File

@@ -0,0 +1,79 @@
require './parser'
class TextToSqlQuery
def initialize(text, fields, default_field, fields_mappings = {})
@text = text.to_s.strip
@fields = fields.map(&:to_sym)
@default_field = default_field.to_sym
@fields_mappings = fields_mappings.merge(@fields.reduce({}) do |mappings, field|
_table_name, field_name = field.to_s.split('.')
mappings[field_name.to_sym] = field
mappings
end)
end
def where_clause
@parser = Query.new
@parsed_tree = @parser.parse(@text)
generate_sql @parsed_tree
end
private
def generate_sql(tree)
@first_key = tree.keys.first
case @first_key
when :DEFAULT_COLUMN
["#{@default_field.to_s} LIKE ?", "%#{tree[@first_key]}%"]
when :OPERATOR_OR
generate_expression_for_logical_operator(:OR, tree[@first_key])
when :OPERATOR_AND
generate_expression_for_logical_operator(:AND, tree[@first_key])
when :OPERATOR_NOT
@not_array = generate_sql tree[@first_key]
if @not_array.length < 2
raise "There should be more than 1 element for expression following NOT operator"
end
@not_expression = @not_array.first
@not_params = @not_array[1..]
["NOT #{@not_expression}"] + @not_params
else
# key is column name
@mapping = @fields_mappings[@first_key.to_sym]
if @mapping.nil?
["#{@default_field.to_s} LIKE ?", "%#{tree[@first_key]}%"]
else
["#{@mapping.to_s} LIKE ?", "%#{tree[@first_key]}%"]
end
end
end
def generate_expression_for_logical_operator(operator, operator_array)
if operator_array.length != 2
raise "There should be two array elements for #{operator.to_s} operator"
end
@first_operand = generate_sql operator_array.first
@second_operand = generate_sql operator_array.last
if @first_operand.length < 2
raise 'There should be more than 1 element in first operand array'
end
if @second_operand.length < 2
raise 'There should be more than 1 element in second operand array'
end
@first_operand_expression = @first_operand.first
@first_operand_params = @first_operand[1..]
@second_operand_expression = @second_operand.first
@second_operand_params = @second_operand[1..]
["#{@first_operand_expression} #{operator.to_s} #{@second_operand_expression}"] + @first_operand_params + @second_operand_params
end
end