167 lines
3.1 KiB
C++
167 lines
3.1 KiB
C++
|
|
#include "parser.hpp"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <exception>
|
|
#include <iostream>
|
|
|
|
static std::vector<std::string> valid_queries = {
|
|
// true/false predicates
|
|
"truepredicate",
|
|
"falsepredicate",
|
|
" TRUEPREDICATE ",
|
|
" FALSEPREDICATE ",
|
|
|
|
// characters/strings
|
|
"\"\" = ''",
|
|
"'azAZ09/ :()[]{}<>,.^@-+=*&~`' = '\\\" \\' \\\\ \\/ \\b \\f \\n \\r \\t \\0'",
|
|
"\"azAZ09/\" = \"\\\" \\' \\\\ \\/ \\b \\f \\n \\r \\t \\0\"",
|
|
"'\\uffFf' = '\\u0020'",
|
|
"'\\u01111' = 'asdf\\u0111asdf'",
|
|
|
|
// expressions (numbers, bools, keypaths, arguments)
|
|
"-1 = 12",
|
|
"0 = 001",
|
|
"0x0 = -0X398235fcAb",
|
|
"10. = -.034",
|
|
"10.0 = 5.034",
|
|
"true = false",
|
|
"_ = a",
|
|
"_a = _.aZ",
|
|
"a09._br.z = __-__.Z-9",
|
|
"$0 = $19",
|
|
"$0=$0",
|
|
|
|
// operators
|
|
"0=0",
|
|
"0 = 0",
|
|
"0!=0",
|
|
"0 != 0",
|
|
"0==0",
|
|
"0 == 0",
|
|
"0>0",
|
|
"0 > 0",
|
|
"0>=0",
|
|
"0 >= 0",
|
|
"0<0",
|
|
"0 < 0",
|
|
"0<=0",
|
|
"0 <= 0",
|
|
"0 contains 0",
|
|
"0 BeGiNsWiTh 0",
|
|
"0 ENDSWITH 0",
|
|
|
|
// atoms/groups
|
|
"(0=0)",
|
|
"( 0=0 )",
|
|
"((0=0))",
|
|
"!0=0",
|
|
"! 0=0",
|
|
"!(0=0)",
|
|
"! (0=0)",
|
|
"NOT0=0", // keypath NOT0
|
|
"not 0=0",
|
|
"NOT(0=0)",
|
|
"not (0=0)",
|
|
"NOT (!0=0)",
|
|
|
|
// compound
|
|
"a==a && a==a",
|
|
"a==a || a==a",
|
|
"a==a&&a==a||a=a",
|
|
"a==a and a==a",
|
|
"a==a OR a==a",
|
|
"and=='AND'&&'or'=='||'",
|
|
"and == or && ORE > GRAND",
|
|
"a=1AND NOTb=2",
|
|
};
|
|
|
|
static std::vector<std::string> invalid_queries = {
|
|
"predicate",
|
|
"'\\a' = ''", // invalid escape
|
|
|
|
// invalid unicode
|
|
"'\\u0' = ''",
|
|
|
|
// invalid strings
|
|
"\"' = ''",
|
|
"\" = ''",
|
|
"' = ''",
|
|
|
|
// expressions
|
|
"03a = 1",
|
|
"1..0 = 1",
|
|
"1.0. = 1",
|
|
"1-0 = 1",
|
|
"0x = 1",
|
|
"truey = false",
|
|
"- = a",
|
|
"a..b = a",
|
|
"a$a = a",
|
|
"{} = $0",
|
|
"$-1 = $0",
|
|
"$a = $0",
|
|
"$ = $",
|
|
|
|
// operators
|
|
"0===>0",
|
|
"0 <> 0",
|
|
"0 contains1",
|
|
"endswith 0",
|
|
|
|
// atoms/groups
|
|
"0=0)",
|
|
"(0=0",
|
|
"(0=0))",
|
|
"! =0",
|
|
"NOTNOT(0=0)",
|
|
"(!!0=0)",
|
|
"0=0 !",
|
|
|
|
// compound
|
|
"a==a & a==a",
|
|
"a==a | a==a",
|
|
"a==a &| a==a",
|
|
"a==a && OR a==a",
|
|
"a==aORa==a",
|
|
//"a=1ANDNOT b=2",
|
|
|
|
"truepredicate &&",
|
|
"truepredicate & truepredicate",
|
|
};
|
|
|
|
namespace realm {
|
|
namespace parser {
|
|
|
|
bool testGrammar()
|
|
{
|
|
bool success = true;
|
|
for (auto &query : valid_queries) {
|
|
std::cout << "valid query: " << query << std::endl;
|
|
try {
|
|
realm::parser::parse(query);
|
|
} catch (std::exception &ex) {
|
|
std::cout << "FAILURE - " << ex.what() << std::endl;
|
|
success = false;
|
|
}
|
|
}
|
|
|
|
for (auto &query : invalid_queries) {
|
|
std::cout << "invalid query: " << query << std::endl;
|
|
try {
|
|
realm::parser::parse(query);
|
|
} catch (std::exception &ex) {
|
|
// std::cout << "message: " << ex.what() << std::endl;
|
|
continue;
|
|
}
|
|
std::cout << "FAILURE - query should throw an exception" << std::endl;
|
|
success = false;
|
|
}
|
|
|
|
return success;
|
|
}
|
|
|
|
}
|
|
}
|