1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*
Test file for HfstTokenizer.
*/
#include "HfstTransducer.h"
#include "auxiliary_functions.cc"
using namespace hfst;
int main(int argc, char **argv)
{
/* From one string. */
verbose_print("Tokenization from one string with multichar symbol "
"\"foo\" and skip symbol \"bar\"");
HfstTokenizer tok1;
tok1.add_multichar_symbol("foo");
tok1.add_skip_symbol("bar");
StringPairVector tokenization1 = tok1.tokenize("fobaro");
assert(tokenization1.size() == 3);
assert(tokenization1[0] == StringPair("f","f"));
assert(tokenization1[1] == StringPair("o","o"));
assert(tokenization1[2] == StringPair("o","o"));
verbose_print("Tokenization from one string with multichar symbol "
"\"foo\" and skip symbol \"fo\"");
HfstTokenizer tok2;
tok2.add_multichar_symbol("foo");
tok2.add_skip_symbol("fo");
StringPairVector tokenization2 = tok2.tokenize("foo");
assert(tokenization2.size() == 1);
assert(tokenization2[0] == StringPair("foo","foo"));
verbose_print("Tokenization from one string with multichar symbol "
"\"fo\" and skip symbol \"foo\"");
HfstTokenizer tok3;
tok3.add_multichar_symbol("fo");
tok3.add_skip_symbol("foo");
StringPairVector tokenization3 = tok3.tokenize("foo");
assert(tokenization3.size() == 0);
/* From two strings. */
verbose_print("Tokenization from two strings with multichar symbol "
"\"foo\" and skip symbol \"bar\"");
HfstTokenizer tok4;
tok4.add_multichar_symbol("foo");
tok4.add_skip_symbol("bar");
StringPairVector tokenization4 = tok4.tokenize("fooba", "foobar");
assert(tokenization4.size() == 3);
assert(tokenization4[0] == StringPair("foo","foo"));
assert(tokenization4[1] == StringPair("b","@_EPSILON_SYMBOL_@"));
assert(tokenization4[2] == StringPair("a","@_EPSILON_SYMBOL_@"));
// Utf-8 correctness testing.
HfstTokenizer utf8_tokenizer;
char line[100];
// Positive cases
// Empty string
line[0] = 0;
try
{ utf8_tokenizer.check_utf8_correctness(line); }
catch (const IncorrectUtf8CodingException & e)
{ assert(false); }
// ASCII string "ab".
line[0] = 'a';
line[1] = 'b';
line[2] = 0;
try
{ utf8_tokenizer.check_utf8_correctness(line); }
catch (const IncorrectUtf8CodingException & e)
{ assert(false); }
// Four byte, three byte, two byte and single byte sequence.
verbose_print("Case: 11110000, 10000000, 10000000, 10000000,\n");
verbose_print("11100000, 10000000, 10000000, 11010000, 10000000,\n");
verbose_print("01000000");
line[0] = get_bin(1,1,1,1,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(1,0,0,0,0,0,0,0);
line[4] = get_bin(1,1,1,0,0,0,0,0);
line[5] = get_bin(1,0,0,0,0,0,0,0);
line[6] = get_bin(1,0,0,0,0,0,0,0);
line[7] = get_bin(1,1,0,1,0,0,0,0);
line[8] = get_bin(1,0,0,0,0,0,0,0);
line[9] = get_bin(0,1,0,0,0,0,0,0);
line[10]= 0;
try
{ utf8_tokenizer.check_utf8_correctness(line); }
catch (const IncorrectUtf8CodingException & e)
{ assert(false); }
// Negative Cases
// String with byte 192.
line[0] = get_bin(1,1,0,0,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// String with byte 193.
line[0] = get_bin(1,1,0,0,0,0,0,1);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// String with byte 245.
line[0] = get_bin(1,1,1,1,0,1,0,1);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(1,0,0,0,0,0,0,0);
line[4] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// String with byte 246.
line[0] = get_bin(1,1,1,1,0,1,1,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(1,0,0,0,0,0,0,0);
line[4] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// String with byte 247.
line[0] = get_bin(1,1,1,1,0,1,1,1);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(1,0,0,0,0,0,0,0);
line[4] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// ASCII character followed by a continuation character.
line[0] = get_bin(0,1,0,0,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// 11010000 followed by ASCII character
line[0] = get_bin(1,1,0,1,0,0,0,0);
line[1] = get_bin(0,1,0,0,0,0,0,0);
line[2] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// 11100000 followed by one continuation character and an ASCII character
line[0] = get_bin(1,1,1,0,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(0,1,0,0,0,0,0,0);
line[3] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// 11110000 followed by two continuation characters and an ASCII character
line[0] = get_bin(1,1,1,1,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(0,1,0,0,0,0,0,0);
line[4] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
// 11110000 followed by two continuation characters and 11010000,10000000
line[0] = get_bin(1,1,1,1,0,0,0,0);
line[1] = get_bin(1,0,0,0,0,0,0,0);
line[2] = get_bin(1,0,0,0,0,0,0,0);
line[3] = get_bin(1,1,0,1,0,0,0,0);
line[4] = get_bin(1,0,0,0,0,0,0,0);
line[5] = 0;
try
{
utf8_tokenizer.check_utf8_correctness(line);
assert(false);
}
catch (const IncorrectUtf8CodingException & e) {};
}
|