Improved generation of c/cpp string from query
Extra lines before and after query are removed. Whitespace at end of line is removed. SQL comments are converted to cpp style comments and are outside the string literal. To achieve this the function now uses the SQLLexer to know what is comment. This also required the additional capability in the lexer to also return whitespace and newline tokens. Also a few bugs in the lexer were fixed.
This commit is contained in:
parent
fbd630489e
commit
48ac8c6bab
7 changed files with 247 additions and 34 deletions
|
|
@ -35,6 +35,27 @@ TEST(SqlLexer, lexer)
|
|||
ASSERT_THAT( out, Eq(QString("SELECT")) );
|
||||
}
|
||||
|
||||
TEST(SqlLexer, lexerWithWhiteSpace)
|
||||
{
|
||||
QString input = " SELECT ";
|
||||
SqlLexer lexer(input, LexerState::Null, true);
|
||||
|
||||
int startpos, length;
|
||||
BasicTokenType tokentype;
|
||||
QString out;
|
||||
lexer.nextBasicToken(startpos, length, tokentype, out);
|
||||
ASSERT_THAT(startpos, Eq(0));
|
||||
ASSERT_THAT(length, Eq(1));
|
||||
ASSERT_THAT(tokentype, Eq(BasicTokenType::WhiteSpace));
|
||||
ASSERT_THAT(out, Eq(QString(" ")) );
|
||||
|
||||
lexer.nextBasicToken(startpos, length, tokentype, out);
|
||||
ASSERT_THAT(startpos, Eq(1));
|
||||
ASSERT_THAT(length, Eq(6));
|
||||
ASSERT_THAT(tokentype, Eq(BasicTokenType::Symbol));
|
||||
ASSERT_THAT(out, Eq(QString("SELECT")) );
|
||||
}
|
||||
|
||||
TEST(SqlLexer, lexer_quote_in_string)
|
||||
{
|
||||
QString input = " 'abc''def' ";
|
||||
|
|
@ -48,6 +69,7 @@ TEST(SqlLexer, lexer_quote_in_string)
|
|||
ASSERT_THAT(startpos, Eq(1));
|
||||
ASSERT_THAT(length, Eq(10));
|
||||
ASSERT_THAT(tokentype, Eq(BasicTokenType::QuotedString));
|
||||
ASSERT_THAT(out, Eq(QString("'abc''def'")) );
|
||||
}
|
||||
|
||||
TEST(SqlLexer, lexer_comma_handling)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue