clang-format: update c/cc coding style
Update all cc code using .clang-format; please do so as well for future PRs etc.; emacs has a handy 'clang-format' mode to make this automatic. For comparing old changes with git blame, we can disregard this one using --ignore-rev (see https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame )
This commit is contained in:
@ -42,24 +42,24 @@ static std::string DB_PATH1;
|
||||
static std::string DB_PATH2;
|
||||
|
||||
static std::string
|
||||
make_database (const std::string& testdir)
|
||||
make_database(const std::string& testdir)
|
||||
{
|
||||
char *tmpdir{test_mu_common_get_random_tmpdir()};
|
||||
const auto cmdline{
|
||||
format("/bin/sh -c '"
|
||||
"%s init --muhome=%s --maildir=%s --quiet ; "
|
||||
"%s index --muhome=%s --quiet'",
|
||||
MU_PROGRAM, tmpdir, testdir.c_str(),
|
||||
MU_PROGRAM, tmpdir)};
|
||||
|
||||
char* tmpdir{test_mu_common_get_random_tmpdir()};
|
||||
const auto cmdline{format("/bin/sh -c '"
|
||||
"%s init --muhome=%s --maildir=%s --quiet ; "
|
||||
"%s index --muhome=%s --quiet'",
|
||||
MU_PROGRAM,
|
||||
tmpdir,
|
||||
testdir.c_str(),
|
||||
MU_PROGRAM,
|
||||
tmpdir)};
|
||||
|
||||
if (g_test_verbose())
|
||||
g_printerr ("\n%s\n", cmdline.c_str());
|
||||
g_printerr("\n%s\n", cmdline.c_str());
|
||||
|
||||
g_assert (g_spawn_command_line_sync (cmdline.c_str(), NULL, NULL,
|
||||
NULL, NULL));
|
||||
auto xpath= g_strdup_printf ("%s%c%s", tmpdir, G_DIR_SEPARATOR, "xapian");
|
||||
g_free (tmpdir);
|
||||
g_assert(g_spawn_command_line_sync(cmdline.c_str(), NULL, NULL, NULL, NULL));
|
||||
auto xpath = g_strdup_printf("%s%c%s", tmpdir, G_DIR_SEPARATOR, "xapian");
|
||||
g_free(tmpdir);
|
||||
|
||||
std::string dbpath{xpath};
|
||||
g_free(xpath);
|
||||
@ -67,518 +67,476 @@ make_database (const std::string& testdir)
|
||||
return dbpath;
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void
|
||||
assert_no_dups (const QueryResults& qres)
|
||||
assert_no_dups(const QueryResults& qres)
|
||||
{
|
||||
std::unordered_set<std::string> msgid_set, path_set;
|
||||
std::unordered_set<std::string> msgid_set, path_set;
|
||||
|
||||
for (auto&& mi: qres) {
|
||||
g_assert_true(msgid_set.find(mi.message_id().value()) == msgid_set.end());
|
||||
g_assert_true(path_set.find(mi.path().value()) == path_set.end());
|
||||
for (auto&& mi : qres) {
|
||||
g_assert_true(msgid_set.find(mi.message_id().value()) == msgid_set.end());
|
||||
g_assert_true(path_set.find(mi.path().value()) == path_set.end());
|
||||
|
||||
path_set.emplace(*mi.path());
|
||||
msgid_set.emplace(*mi.message_id());
|
||||
path_set.emplace(*mi.path());
|
||||
msgid_set.emplace(*mi.message_id());
|
||||
|
||||
g_assert_false(msgid_set.find(mi.message_id().value()) == msgid_set.end());
|
||||
g_assert_false(path_set.find(mi.path().value()) == path_set.end());
|
||||
}
|
||||
g_assert_false(msgid_set.find(mi.message_id().value()) == msgid_set.end());
|
||||
g_assert_false(path_set.find(mi.path().value()) == path_set.end());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* note: this also *moves the iter* */
|
||||
static size_t
|
||||
run_and_count_matches (const std::string& xpath, const std::string& expr,
|
||||
Mu::QueryFlags flags = Mu::QueryFlags::None)
|
||||
run_and_count_matches(const std::string& xpath,
|
||||
const std::string& expr,
|
||||
Mu::QueryFlags flags = Mu::QueryFlags::None)
|
||||
{
|
||||
Mu::Store store{xpath};
|
||||
Mu::Query query{store};
|
||||
|
||||
if (g_test_verbose()) {
|
||||
std::cout << "==> mquery: " << query.parse (expr, false) << "\n";
|
||||
std::cout << "==> xquery: " << query.parse (expr, true) << "\n";
|
||||
std::cout << "==> mquery: " << query.parse(expr, false) << "\n";
|
||||
std::cout << "==> xquery: " << query.parse(expr, true) << "\n";
|
||||
}
|
||||
|
||||
Mu::allow_warnings();
|
||||
|
||||
auto qres{query.run (expr, MU_MSG_FIELD_ID_NONE, flags)};
|
||||
g_assert_true (!!qres);
|
||||
assert_no_dups (*qres);
|
||||
auto qres{query.run(expr, MU_MSG_FIELD_ID_NONE, flags)};
|
||||
g_assert_true(!!qres);
|
||||
assert_no_dups(*qres);
|
||||
|
||||
return qres->size();
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
const char *query;
|
||||
size_t count; /* expected number of matches */
|
||||
typedef struct {
|
||||
const char* query;
|
||||
size_t count; /* expected number of matches */
|
||||
} QResults;
|
||||
|
||||
static void
|
||||
test_mu_query_01 (void)
|
||||
test_mu_query_01(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "basic", 3 },
|
||||
{ "question", 5 },
|
||||
{ "thanks", 2 },
|
||||
{ "html", 4 },
|
||||
{ "subject:exception", 1 },
|
||||
{ "exception", 1 },
|
||||
{ "subject:A&B", 1 },
|
||||
{ "A&B", 1 },
|
||||
{ "subject:elisp", 1 },
|
||||
{ "html AND contains", 1 },
|
||||
{ "html and contains", 1 },
|
||||
{ "from:pepernoot", 0 },
|
||||
{ "foo:pepernoot", 0 },
|
||||
{ "funky", 1 },
|
||||
{ "fünkÿ", 1 },
|
||||
// { "", 18 },
|
||||
{ "msgid:abcd$efgh@example.com", 1},
|
||||
{ "i:abcd$efgh@example.com", 1},
|
||||
{"basic", 3},
|
||||
{"question", 5},
|
||||
{"thanks", 2},
|
||||
{"html", 4},
|
||||
{"subject:exception", 1},
|
||||
{"exception", 1},
|
||||
{"subject:A&B", 1},
|
||||
{"A&B", 1},
|
||||
{"subject:elisp", 1},
|
||||
{"html AND contains", 1},
|
||||
{"html and contains", 1},
|
||||
{"from:pepernoot", 0},
|
||||
{"foo:pepernoot", 0},
|
||||
{"funky", 1},
|
||||
{"fünkÿ", 1},
|
||||
// { "", 18 },
|
||||
{"msgid:abcd$efgh@example.com", 1},
|
||||
{"i:abcd$efgh@example.com", 1},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_02 (void)
|
||||
test_mu_query_02(void)
|
||||
{
|
||||
const char* q;
|
||||
q = "i:f7ccd24b0808061357t453f5962w8b61f9a453b684d0@mail.gmail.com";
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1, q), ==, 1);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, q), ==, 1);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_03 (void)
|
||||
test_mu_query_03(void)
|
||||
{
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "ploughed", 1},
|
||||
{ "i:3BE9E6535E3029448670913581E7A1A20D852173@"
|
||||
"emss35m06.us.lmco.com", 1},
|
||||
{ "i:!&!AAAAAAAAAYAAAAAAAAAOH1+8mkk+lLn7Gg5fke7"
|
||||
"FbCgAAAEAAAAJ7eBDgcactKhXL6r8cEnJ8BAAAAAA==@"
|
||||
"example.com", 1},
|
||||
int i;
|
||||
QResults queries[] = {{"ploughed", 1},
|
||||
{"i:3BE9E6535E3029448670913581E7A1A20D852173@"
|
||||
"emss35m06.us.lmco.com",
|
||||
1},
|
||||
{"i:!&!AAAAAAAAAYAAAAAAAAAOH1+8mkk+lLn7Gg5fke7"
|
||||
"FbCgAAAEAAAAJ7eBDgcactKhXL6r8cEnJ8BAAAAAA==@"
|
||||
"example.com",
|
||||
1},
|
||||
|
||||
/* subsets of the words in the subject should match */
|
||||
{ "s:gcc include search order" , 1},
|
||||
{ "s:gcc include search" , 1},
|
||||
{ "s:search order" , 1},
|
||||
{ "s:include" , 1},
|
||||
/* subsets of the words in the subject should match */
|
||||
{"s:gcc include search order", 1},
|
||||
{"s:gcc include search", 1},
|
||||
{"s:search order", 1},
|
||||
{"s:include", 1},
|
||||
|
||||
{ "s:lisp", 1},
|
||||
{ "s:LISP", 1},
|
||||
{"s:lisp", 1},
|
||||
{"s:LISP", 1},
|
||||
|
||||
/* { "s:\"Re: Learning LISP; Scheme vs elisp.\"", 1}, */
|
||||
/* { "subject:Re: Learning LISP; Scheme vs elisp.", 1}, */
|
||||
/* { "subject:\"Re: Learning LISP; Scheme vs elisp.\"", 1}, */
|
||||
{ "to:help-gnu-emacs@gnu.org", 4},
|
||||
{ "t:help-gnu-emacs", 4},
|
||||
{ "flag:flagged", 1}
|
||||
};
|
||||
/* { "s:\"Re: Learning LISP; Scheme vs elisp.\"", 1}, */
|
||||
/* { "subject:Re: Learning LISP; Scheme vs elisp.", 1}, */
|
||||
/* { "subject:\"Re: Learning LISP; Scheme vs elisp.\"", 1}, */
|
||||
{"to:help-gnu-emacs@gnu.org", 4},
|
||||
{"t:help-gnu-emacs", 4},
|
||||
{"flag:flagged", 1}};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_04 (void)
|
||||
test_mu_query_04(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
QResults queries[] = {
|
||||
{ "frodo@example.com", 1},
|
||||
{ "f:frodo@example.com", 1},
|
||||
{ "f:Frodo Baggins", 1},
|
||||
{ "bilbo@anotherexample.com", 1},
|
||||
{ "t:bilbo@anotherexample.com", 1},
|
||||
{ "t:bilbo", 1},
|
||||
{ "f:bilbo", 0},
|
||||
{ "baggins", 1},
|
||||
{ "prio:h", 1},
|
||||
{ "prio:high", 1},
|
||||
{ "prio:normal", 11},
|
||||
{ "prio:l", 7},
|
||||
{ "not prio:l", 12},
|
||||
{"frodo@example.com", 1},
|
||||
{"f:frodo@example.com", 1},
|
||||
{"f:Frodo Baggins", 1},
|
||||
{"bilbo@anotherexample.com", 1},
|
||||
{"t:bilbo@anotherexample.com", 1},
|
||||
{"t:bilbo", 1},
|
||||
{"f:bilbo", 0},
|
||||
{"baggins", 1},
|
||||
{"prio:h", 1},
|
||||
{"prio:high", 1},
|
||||
{"prio:normal", 11},
|
||||
{"prio:l", 7},
|
||||
{"not prio:l", 12},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_logic (void)
|
||||
test_mu_query_logic(void)
|
||||
{
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "subject:gcc" , 1},
|
||||
{ "subject:lisp" , 1},
|
||||
{ "subject:gcc OR subject:lisp" , 2},
|
||||
{ "subject:gcc or subject:lisp" , 2},
|
||||
{ "subject:gcc AND subject:lisp" , 0},
|
||||
int i;
|
||||
QResults queries[] = {{"subject:gcc", 1},
|
||||
{"subject:lisp", 1},
|
||||
{"subject:gcc OR subject:lisp", 2},
|
||||
{"subject:gcc or subject:lisp", 2},
|
||||
{"subject:gcc AND subject:lisp", 0},
|
||||
|
||||
{ "subject:gcc OR (subject:scheme AND subject:elisp)" , 2},
|
||||
{ "(subject:gcc OR subject:scheme) AND subject:elisp" , 1}
|
||||
};
|
||||
{"subject:gcc OR (subject:scheme AND subject:elisp)", 2},
|
||||
{"(subject:gcc OR subject:scheme) AND subject:elisp", 1}};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_accented_chars_01 (void)
|
||||
test_mu_query_accented_chars_01(void)
|
||||
{
|
||||
Store store{DB_PATH1};
|
||||
Query q{store};
|
||||
|
||||
auto qres{q.run("fünkÿ")};
|
||||
g_assert_true(!!qres);
|
||||
g_assert_false(qres->empty());
|
||||
auto qres{q.run("fünkÿ")};
|
||||
g_assert_true(!!qres);
|
||||
g_assert_false(qres->empty());
|
||||
|
||||
auto begin{qres->begin()};
|
||||
auto msg{begin.floating_msg()};
|
||||
auto begin{qres->begin()};
|
||||
auto msg{begin.floating_msg()};
|
||||
if (!msg) {
|
||||
g_warning ("error getting message");
|
||||
g_assert_not_reached ();
|
||||
g_warning("error getting message");
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
||||
g_assert_cmpstr (mu_msg_get_subject(msg),==,
|
||||
"Greetings from Lothlórien");
|
||||
g_assert_cmpstr(mu_msg_get_subject(msg), ==, "Greetings from Lothlórien");
|
||||
/* TODO: fix this again */
|
||||
|
||||
auto summ = mu_str_summarize (mu_msg_get_body_text
|
||||
(msg, MU_MSG_OPTION_NONE), 5);
|
||||
g_assert_cmpstr (summ,==,
|
||||
"Let's write some fünkÿ text using umlauts. Foo.");
|
||||
g_free (summ);
|
||||
auto summ = mu_str_summarize(mu_msg_get_body_text(msg, MU_MSG_OPTION_NONE), 5);
|
||||
g_assert_cmpstr(summ, ==, "Let's write some fünkÿ text using umlauts. Foo.");
|
||||
g_free(summ);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_accented_chars_02 (void)
|
||||
test_mu_query_accented_chars_02(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
QResults queries[] = {
|
||||
{ "f:mü", 1},
|
||||
{ "s:motörhead", 1},
|
||||
{ "t:Helmut", 1},
|
||||
{ "t:Kröger", 1},
|
||||
{ "s:MotorHeäD", 1},
|
||||
{ "queensryche", 1},
|
||||
{ "Queensrÿche", 1}
|
||||
};
|
||||
QResults queries[] = {{"f:mü", 1},
|
||||
{"s:motörhead", 1},
|
||||
{"t:Helmut", 1},
|
||||
{"t:Kröger", 1},
|
||||
{"s:MotorHeäD", 1},
|
||||
{"queensryche", 1},
|
||||
{"Queensrÿche", 1}};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_accented_chars_fraiche (void)
|
||||
test_mu_query_accented_chars_fraiche(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
QResults queries[] = {
|
||||
{ "crème fraîche", 1},
|
||||
{ "creme fraiche", 1},
|
||||
{ "fraîche crème", 1},
|
||||
{ "будланула", 1},
|
||||
{ "БУДЛАНУЛА", 1},
|
||||
{ "CRÈME FRAÎCHE", 1},
|
||||
{ "CREME FRAICHE", 1}
|
||||
};
|
||||
QResults queries[] = {{"crème fraîche", 1},
|
||||
{"creme fraiche", 1},
|
||||
{"fraîche crème", 1},
|
||||
{"будланула", 1},
|
||||
{"БУДЛАНУЛА", 1},
|
||||
{"CRÈME FRAÎCHE", 1},
|
||||
{"CREME FRAICHE", 1}};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i) {
|
||||
if (g_test_verbose())
|
||||
g_print("'%s'\n", queries[i].query);
|
||||
|
||||
if (g_test_verbose ())
|
||||
g_print ("'%s'\n", queries[i].query);
|
||||
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_wildcards (void)
|
||||
test_mu_query_wildcards(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
QResults queries[] = {
|
||||
{ "f:mü", 1},
|
||||
{ "s:mo*", 1},
|
||||
{ "t:Helm*", 1},
|
||||
{ "queensryche", 1},
|
||||
{ "Queen*", 1},
|
||||
{"f:mü", 1},
|
||||
{"s:mo*", 1},
|
||||
{"t:Helm*", 1},
|
||||
{"queensryche", 1},
|
||||
{"Queen*", 1},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_dates_helsinki (void)
|
||||
{
|
||||
int i;
|
||||
const char *old_tz;
|
||||
|
||||
QResults queries[] = {
|
||||
{ "date:20080731..20080804", 5},
|
||||
{ "date:20080731..20080804 s:gcc", 1},
|
||||
{ "date:200808110803..now", 7},
|
||||
{ "date:200808110803..today",7},
|
||||
{ "date:200808110801..now", 7}
|
||||
};
|
||||
|
||||
old_tz = set_tz ("Europe/Helsinki");
|
||||
|
||||
const auto xpath{make_database (MU_TESTMAILDIR)};
|
||||
g_assert_false (xpath.empty());
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches
|
||||
(xpath, queries[i].query),
|
||||
==, queries[i].count);
|
||||
|
||||
set_tz (old_tz);
|
||||
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_dates_sydney (void)
|
||||
test_mu_query_dates_helsinki(void)
|
||||
{
|
||||
int i;
|
||||
const char *old_tz;
|
||||
QResults queries[] = {
|
||||
{ "date:20080731..20080804", 5},
|
||||
{ "date:20080731..20080804 s:gcc", 1},
|
||||
{ "date:200808110803..now", 7},
|
||||
{ "date:200808110803..today", 7},
|
||||
{ "date:200808110801..now", 7}
|
||||
};
|
||||
int i;
|
||||
const char* old_tz;
|
||||
|
||||
old_tz = set_tz ("Australia/Sydney");
|
||||
QResults queries[] = {{"date:20080731..20080804", 5},
|
||||
{"date:20080731..20080804 s:gcc", 1},
|
||||
{"date:200808110803..now", 7},
|
||||
{"date:200808110803..today", 7},
|
||||
{"date:200808110801..now", 7}};
|
||||
|
||||
old_tz = set_tz("Europe/Helsinki");
|
||||
|
||||
const auto xpath{make_database(MU_TESTMAILDIR)};
|
||||
g_assert_false (xpath.empty());
|
||||
g_assert_false(xpath.empty());
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches
|
||||
(xpath, queries[i].query),
|
||||
==, queries[i].count);
|
||||
set_tz (old_tz);
|
||||
g_assert_cmpuint(run_and_count_matches(xpath, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
|
||||
set_tz(old_tz);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_dates_la (void)
|
||||
test_mu_query_dates_sydney(void)
|
||||
{
|
||||
int i;
|
||||
const char *old_tz;
|
||||
int i;
|
||||
const char* old_tz;
|
||||
QResults queries[] = {{"date:20080731..20080804", 5},
|
||||
{"date:20080731..20080804 s:gcc", 1},
|
||||
{"date:200808110803..now", 7},
|
||||
{"date:200808110803..today", 7},
|
||||
{"date:200808110801..now", 7}};
|
||||
|
||||
QResults queries[] = {
|
||||
{ "date:20080731..20080804", 5},
|
||||
{ "date:2008-07-31..2008-08-04", 5},
|
||||
{ "date:20080804..20080731", 5},
|
||||
{ "date:20080731..20080804 s:gcc", 1},
|
||||
{ "date:200808110803..now", 6},
|
||||
{ "date:200808110803..today", 6},
|
||||
{ "date:200808110801..now", 6}
|
||||
};
|
||||
old_tz = set_tz("Australia/Sydney");
|
||||
|
||||
old_tz = set_tz ("America/Los_Angeles");
|
||||
const auto xpath{make_database(MU_TESTMAILDIR)};
|
||||
g_assert_false(xpath.empty());
|
||||
|
||||
const auto xpath = make_database (MU_TESTMAILDIR);
|
||||
g_assert_false (xpath.empty());
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint(run_and_count_matches(xpath, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
set_tz(old_tz);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_dates_la(void)
|
||||
{
|
||||
int i;
|
||||
const char* old_tz;
|
||||
|
||||
QResults queries[] = {{"date:20080731..20080804", 5},
|
||||
{"date:2008-07-31..2008-08-04", 5},
|
||||
{"date:20080804..20080731", 5},
|
||||
{"date:20080731..20080804 s:gcc", 1},
|
||||
{"date:200808110803..now", 6},
|
||||
{"date:200808110803..today", 6},
|
||||
{"date:200808110801..now", 6}};
|
||||
|
||||
old_tz = set_tz("America/Los_Angeles");
|
||||
|
||||
const auto xpath = make_database(MU_TESTMAILDIR);
|
||||
g_assert_false(xpath.empty());
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i) {
|
||||
/* g_print ("%s\n", queries[i].query); */
|
||||
g_assert_cmpuint (run_and_count_matches
|
||||
(xpath, queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(xpath, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
set_tz (old_tz);
|
||||
set_tz(old_tz);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_sizes (void)
|
||||
test_mu_query_sizes(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "size:0b..2m", 19},
|
||||
{ "size:3b..2m", 19},
|
||||
{ "size:2k..4k", 4},
|
||||
{"size:0b..2m", 19},
|
||||
{"size:3b..2m", 19},
|
||||
{"size:2k..4k", 4},
|
||||
|
||||
{ "size:0b..2m", 19},
|
||||
{ "size:2m..0b", 19},
|
||||
{"size:0b..2m", 19},
|
||||
{"size:2m..0b", 19},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_attach (void)
|
||||
test_mu_query_attach(void)
|
||||
{
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "j:sittingbull.jpg", 1},
|
||||
{ "file:custer", 0},
|
||||
{ "file:custer.jpg", 1}
|
||||
};
|
||||
int i;
|
||||
QResults queries[] = {{"j:sittingbull.jpg", 1}, {"file:custer", 0}, {"file:custer.jpg", 1}};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i) {
|
||||
if (g_test_verbose())
|
||||
g_print ("query: %s\n", queries[i].query);
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_print("query: %s\n", queries[i].query);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_msgid (void)
|
||||
test_mu_query_msgid(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "i:CAHSaMxZ9rk5ASjqsbXizjTQuSk583=M6TORHz"
|
||||
"=bfogtmbGGs5A@mail.gmail.com", 1},
|
||||
{ "msgid:CAHSaMxZ9rk5ASjqsbXizjTQuSk583=M6TORHz="
|
||||
"bfogtmbGGs5A@mail.gmail.com", 1},
|
||||
{"i:CAHSaMxZ9rk5ASjqsbXizjTQuSk583=M6TORHz"
|
||||
"=bfogtmbGGs5A@mail.gmail.com",
|
||||
1},
|
||||
{"msgid:CAHSaMxZ9rk5ASjqsbXizjTQuSk583=M6TORHz="
|
||||
"bfogtmbGGs5A@mail.gmail.com",
|
||||
1},
|
||||
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i) {
|
||||
if (g_test_verbose())
|
||||
g_print ("query: %s\n", queries[i].query);
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_print("query: %s\n", queries[i].query);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_tags (void)
|
||||
test_mu_query_tags(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "x:paradise", 1},
|
||||
{ "tag:lost", 1},
|
||||
{ "tag:lost tag:paradise", 1},
|
||||
{ "tag:lost tag:horizon", 0},
|
||||
{ "tag:lost OR tag:horizon", 1},
|
||||
{ "x:paradise,lost", 0},
|
||||
{ "x:paradise AND x:lost", 1},
|
||||
{ "x:\\\\backslash", 1},
|
||||
{"x:paradise", 1},
|
||||
{"tag:lost", 1},
|
||||
{"tag:lost tag:paradise", 1},
|
||||
{"tag:lost tag:horizon", 0},
|
||||
{"tag:lost OR tag:horizon", 1},
|
||||
{"x:paradise,lost", 0},
|
||||
{"x:paradise AND x:lost", 1},
|
||||
{"x:\\\\backslash", 1},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_wom_bat (void)
|
||||
test_mu_query_wom_bat(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "maildir:/wom_bat", 3},
|
||||
//{ "\"maildir:/wom bat\"", 3},
|
||||
// as expected, no longer works with new parser
|
||||
{"maildir:/wom_bat", 3},
|
||||
//{ "\"maildir:/wom bat\"", 3},
|
||||
// as expected, no longer works with new parser
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_signed_encrypted (void)
|
||||
test_mu_query_signed_encrypted(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "flag:encrypted", 2},
|
||||
{ "flag:signed", 2},
|
||||
{"flag:encrypted", 2},
|
||||
{"flag:signed", 2},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
test_mu_query_multi_to_cc (void)
|
||||
test_mu_query_multi_to_cc(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "to:a@example.com", 1},
|
||||
{ "cc:d@example.com", 1},
|
||||
{ "to:b@example.com", 1},
|
||||
{ "cc:e@example.com", 1},
|
||||
{ "cc:e@example.com AND cc:d@example.com", 1},
|
||||
{"to:a@example.com", 1},
|
||||
{"cc:d@example.com", 1},
|
||||
{"to:b@example.com", 1},
|
||||
{"cc:e@example.com", 1},
|
||||
{"cc:e@example.com AND cc:d@example.com", 1},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i)
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH1,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH1, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
|
||||
static void
|
||||
test_mu_query_tags_02 (void)
|
||||
test_mu_query_tags_02(void)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
QResults queries[] = {
|
||||
{ "x:paradise", 1},
|
||||
{ "tag:@NextActions", 1},
|
||||
{ "x:queensrÿche", 1},
|
||||
{ "tag:lost OR tag:operation*", 2},
|
||||
{"x:paradise", 1},
|
||||
{"tag:@NextActions", 1},
|
||||
{"x:queensrÿche", 1},
|
||||
{"tag:lost OR tag:operation*", 2},
|
||||
};
|
||||
|
||||
for (i = 0; i != G_N_ELEMENTS(queries); ++i) {
|
||||
g_assert_cmpuint (run_and_count_matches (DB_PATH2,
|
||||
queries[i].query),
|
||||
==, queries[i].count);
|
||||
g_assert_cmpuint(run_and_count_matches(DB_PATH2, queries[i].query),
|
||||
==,
|
||||
queries[i].count);
|
||||
}
|
||||
}
|
||||
|
||||
@ -588,87 +546,75 @@ test_mu_query_tags_02 (void)
|
||||
--related option doesn't work.
|
||||
*/
|
||||
static void
|
||||
test_mu_query_threads_compilation_error (void)
|
||||
test_mu_query_threads_compilation_error(void)
|
||||
{
|
||||
const auto xpath = make_database (MU_TESTMAILDIR);
|
||||
const auto xpath = make_database(MU_TESTMAILDIR);
|
||||
|
||||
g_assert_cmpuint (run_and_count_matches
|
||||
(xpath, "msgid:uwsireh25.fsf@one.dot.net"),
|
||||
==, 1);
|
||||
g_assert_cmpuint(run_and_count_matches(xpath, "msgid:uwsireh25.fsf@one.dot.net"), ==, 1);
|
||||
|
||||
g_assert_cmpuint (run_and_count_matches
|
||||
(xpath, "msgid:uwsireh25.fsf@one.dot.net",
|
||||
QueryFlags::IncludeRelated),
|
||||
==, 3);
|
||||
g_assert_cmpuint(run_and_count_matches(xpath,
|
||||
"msgid:uwsireh25.fsf@one.dot.net",
|
||||
QueryFlags::IncludeRelated),
|
||||
==,
|
||||
3);
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
main(int argc, char* argv[])
|
||||
{
|
||||
int rv;
|
||||
|
||||
setlocale (LC_ALL, "");
|
||||
setlocale(LC_ALL, "");
|
||||
|
||||
g_test_init (&argc, &argv, NULL);
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
|
||||
DB_PATH1 = make_database (MU_TESTMAILDIR);
|
||||
g_assert_false (DB_PATH1.empty());
|
||||
DB_PATH1 = make_database(MU_TESTMAILDIR);
|
||||
g_assert_false(DB_PATH1.empty());
|
||||
|
||||
DB_PATH2 = make_database (MU_TESTMAILDIR2);
|
||||
g_assert_false (DB_PATH2.empty());
|
||||
DB_PATH2 = make_database(MU_TESTMAILDIR2);
|
||||
g_assert_false(DB_PATH2.empty());
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-01", test_mu_query_01);
|
||||
g_test_add_func ("/mu-query/test-mu-query-02", test_mu_query_02);
|
||||
g_test_add_func ("/mu-query/test-mu-query-03", test_mu_query_03);
|
||||
g_test_add_func ("/mu-query/test-mu-query-04", test_mu_query_04);
|
||||
g_test_add_func("/mu-query/test-mu-query-01", test_mu_query_01);
|
||||
g_test_add_func("/mu-query/test-mu-query-02", test_mu_query_02);
|
||||
g_test_add_func("/mu-query/test-mu-query-03", test_mu_query_03);
|
||||
g_test_add_func("/mu-query/test-mu-query-04", test_mu_query_04);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-signed-encrypted",
|
||||
test_mu_query_signed_encrypted);
|
||||
g_test_add_func ("/mu-query/test-mu-query-multi-to-cc",
|
||||
test_mu_query_multi_to_cc);
|
||||
g_test_add_func ("/mu-query/test-mu-query-logic", test_mu_query_logic);
|
||||
g_test_add_func("/mu-query/test-mu-query-signed-encrypted", test_mu_query_signed_encrypted);
|
||||
g_test_add_func("/mu-query/test-mu-query-multi-to-cc", test_mu_query_multi_to_cc);
|
||||
g_test_add_func("/mu-query/test-mu-query-logic", test_mu_query_logic);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-accented-chars-1",
|
||||
test_mu_query_accented_chars_01);
|
||||
g_test_add_func ("/mu-query/test-mu-query-accented-chars-2",
|
||||
test_mu_query_accented_chars_02);
|
||||
g_test_add_func ("/mu-query/test-mu-query-accented-chars-fraiche",
|
||||
test_mu_query_accented_chars_fraiche);
|
||||
g_test_add_func("/mu-query/test-mu-query-accented-chars-1",
|
||||
test_mu_query_accented_chars_01);
|
||||
g_test_add_func("/mu-query/test-mu-query-accented-chars-2",
|
||||
test_mu_query_accented_chars_02);
|
||||
g_test_add_func("/mu-query/test-mu-query-accented-chars-fraiche",
|
||||
test_mu_query_accented_chars_fraiche);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-msgid",
|
||||
test_mu_query_msgid);
|
||||
g_test_add_func("/mu-query/test-mu-query-msgid", test_mu_query_msgid);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-wom-bat",
|
||||
test_mu_query_wom_bat);
|
||||
g_test_add_func("/mu-query/test-mu-query-wom-bat", test_mu_query_wom_bat);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-wildcards",
|
||||
test_mu_query_wildcards);
|
||||
g_test_add_func ("/mu-query/test-mu-query-sizes",
|
||||
test_mu_query_sizes);
|
||||
g_test_add_func("/mu-query/test-mu-query-wildcards", test_mu_query_wildcards);
|
||||
g_test_add_func("/mu-query/test-mu-query-sizes", test_mu_query_sizes);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-dates-helsinki",
|
||||
test_mu_query_dates_helsinki);
|
||||
g_test_add_func ("/mu-query/test-mu-query-dates-sydney",
|
||||
test_mu_query_dates_sydney);
|
||||
g_test_add_func ("/mu-query/test-mu-query-dates-la",
|
||||
test_mu_query_dates_la);
|
||||
g_test_add_func("/mu-query/test-mu-query-dates-helsinki", test_mu_query_dates_helsinki);
|
||||
g_test_add_func("/mu-query/test-mu-query-dates-sydney", test_mu_query_dates_sydney);
|
||||
g_test_add_func("/mu-query/test-mu-query-dates-la", test_mu_query_dates_la);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-attach",
|
||||
test_mu_query_attach);
|
||||
g_test_add_func ("/mu-query/test-mu-query-tags",
|
||||
test_mu_query_tags);
|
||||
g_test_add_func ("/mu-query/test-mu-query-tags_02",
|
||||
test_mu_query_tags_02);
|
||||
g_test_add_func("/mu-query/test-mu-query-attach", test_mu_query_attach);
|
||||
g_test_add_func("/mu-query/test-mu-query-tags", test_mu_query_tags);
|
||||
g_test_add_func("/mu-query/test-mu-query-tags_02", test_mu_query_tags_02);
|
||||
|
||||
g_test_add_func ("/mu-query/test-mu-query-threads-compilation-error",
|
||||
test_mu_query_threads_compilation_error);
|
||||
g_test_add_func("/mu-query/test-mu-query-threads-compilation-error",
|
||||
test_mu_query_threads_compilation_error);
|
||||
|
||||
if (!g_test_verbose())
|
||||
g_log_set_handler (NULL,
|
||||
(GLogLevelFlags)(G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL|
|
||||
G_LOG_LEVEL_WARNING|G_LOG_FLAG_RECURSION),
|
||||
(GLogFunc)black_hole, NULL);
|
||||
rv = g_test_run ();
|
||||
g_log_set_handler(NULL,
|
||||
(GLogLevelFlags)(G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL |
|
||||
G_LOG_LEVEL_WARNING | G_LOG_FLAG_RECURSION),
|
||||
(GLogFunc)black_hole,
|
||||
NULL);
|
||||
rv = g_test_run();
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user