test-fts-tokenizer.c revision b04e76cbc807707d299055be79500f8ff131da43
/* Copyright (c) 2014-2015 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "unichar.h"
#include "test-common.h"
#include "fts-tokenizer.h"
#include "fts-tokenizer-private.h"
#include "fts-tokenizer-generic-private.h"
#include <stdlib.h>
#define TEST_INPUT_ADDRESS \
"@invalid invalid@ Abc Dfg <abc.dfg@example.com>, " \
"Bar Baz <bar@example.org>" \
"Foo Bar (comment)foo.bar@host.example.org " \
"foo, foo@domain"
static const char *test_inputs[] = {
/* generic things and word truncation: */
"hello world\r\n\nAnd there\twas: text galore, "
"abc@example.com, "
"Bar Baz <bar@example.org>, "
"foo@domain "
"1234567890123456789012345678ä,"
"12345678901234567890123456789ä,"
"123456789012345678901234567890ä,"
"and longlonglongabcdefghijklmnopqrstuvwxyz more.\n\n "
"(\"Hello world\")3.14 3,14 last",
"1.",
/* whitespace: with Unicode(utf8) U+FF01(ef bc 81)(U+2000(e2 80 80) and
U+205A(e2 81 9a) and U+205F(e2 81 9f) */
"hello\xEF\xBC\x81world\r\nAnd\xE2\x80\x80there\twas: text "
"galore\xE2\x81\x9F""and\xE2\x81\x9Amore.\n\n",
/* TR29 MinNumLet U+FF0E at end: u+FF0E is EF BC 8E */
"hello world\xEF\xBC\x8E"
};
static void test_fts_tokenizer_find(void)
{
test_begin("fts tokenizer find");
test_end();
}
static unsigned int
const char *const *expected_output,
unsigned int first_outi)
{
/* test all input at once */
outi = first_outi;
outi++;
}
outi++;
}
/* test input one byte at a time */
outi = first_outi;
outi++;
}
}
outi++;
}
/* test input in random chunks */
outi = first_outi;
outi++;
}
}
outi++;
}
return outi+1;
}
static void
const char *const *expected_output)
{
unsigned int i, outi = 0;
for (i = 0; i < N_ELEMENTS(test_inputs); i++) {
}
}
static void test_fts_tokenizer_generic_only(void)
{
static const char *const expected_output[] = {
"hello", "world", "And",
"there", "was", "text", "galore",
"abc", "example", "com", "Bar", "Baz",
"bar", "example", "org", "foo", "domain",
"1234567890123456789012345678ä",
"12345678901234567890123456789",
"123456789012345678901234567890",
"and", "longlonglongabcdefghijklmnopqr",
"1", NULL,
"hello", "world", "And",
"there", "was", "text", "galore",
};
struct fts_tokenizer *tok;
const char *error;
test_begin("fts tokenizer generic simple");
test_end();
}
/* TODO: U+206F is in "Format" and therefore currently not word break.
This definitely needs to be remapped. */
static void test_fts_tokenizer_generic_tr29_only(void)
{
static const char *const expected_output[] = {
"hello", "world", "And",
"there", "was", "text", "galore",
"bar", "example.org", "foo", "domain",
"1234567890123456789012345678ä",
"12345678901234567890123456789",
"123456789012345678901234567890",
"and", "longlonglongabcdefghijklmnopqr",
"1", NULL,
"hello", "world", "And",
"there", "was", "text", "galore",
};
struct fts_tokenizer *tok;
const char *error;
test_begin("fts tokenizer generic TR29");
test_end();
}
static void test_fts_tokenizer_address_only(void)
{
static const char input[] = TEST_INPUT_ADDRESS;
static const char *const expected_output[] = {
"abc.dfg@example.com", "bar@example.org",
};
struct fts_tokenizer *tok;
const char *error;
test_begin("fts tokenizer email address only");
test_end();
}
static void test_fts_tokenizer_address_parent(void)
{
static const char input[] = TEST_INPUT_ADDRESS;
static const char *const expected_output[] = {
"invalid", "invalid", "Abc", "Dfg", "abc", "dfg", "example", "com", "abc.dfg@example.com",
"Bar", "Baz", "bar", "example", "org", "bar@example.org",
"Foo", "Bar", "comment", "foo", "bar", "host", "example", "org", "foo.bar@host.example.org",
};
const char *error;
test_begin("fts tokenizer email address + parent");
test_end();
}
static void test_fts_tokenizer_address_search(void)
{
static const char input[] = TEST_INPUT_ADDRESS;
static const char *const expected_output[] = {
"invalid", "invalid", "Abc", "Dfg", "abc.dfg@example.com",
"Bar", "Baz", "bar@example.org",
"Foo", "Bar", "comment", "foo.bar@host.example.org",
};
test_begin("fts tokenizer search email address + parent");
test_assert(fts_tokenizer_create(fts_tokenizer_email_address, gen_tok, settings, &tok, &error) == 0);
/* make sure state is forgotten at EOF */
/* test reset explicitly */
test_end();
}
int main(void)
{
static void (*test_functions[])(void) = {
};
int ret;
return ret;
}