-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathTextDictTestBase.hpp
148 lines (126 loc) · 5.28 KB
/
TextDictTestBase.hpp
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
/*
* Open Chinese Convert
*
* Copyright 2015-2020 Carbo Kuo <byvoid@byvoid.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "Lexicon.hpp"
#include "TestUtils.hpp"
#include "TestUtilsUTF8.hpp"
#include "TextDict.hpp"
namespace opencc {
class TextDictTestBase : public ::testing::Test {
protected:
TextDictTestBase() : textDict(CreateTextDictForText()){};
TextDictPtr CreateTextDictForText() const {
LexiconPtr lexicon(new Lexicon);
lexicon->Add(DictEntryFactory::New("BYVoid", "byv"));
lexicon->Add(DictEntryFactory::New("zigzagzig", "zag"));
lexicon->Add(DictEntryFactory::New(utf8("積羽沉舟"), utf8("羣輕折軸")));
lexicon->Add(DictEntryFactory::New(utf8("清"), "Tsing"));
lexicon->Add(DictEntryFactory::New(utf8("清華"), "Tsinghua"));
lexicon->Add(DictEntryFactory::New(utf8("清華大學"), "TsinghuaUniversity"));
lexicon->Sort();
return TextDictPtr(new TextDict(lexicon));
}
DictPtr CreateDictForCharacters() const {
LexiconPtr lexicon(new Lexicon);
lexicon->Add(DictEntryFactory::New(
utf8("后"), std::vector<std::string>{utf8("后"), utf8("後")}));
lexicon->Add(DictEntryFactory::New(
utf8("发"), std::vector<std::string>{utf8("發"), utf8("髮")}));
lexicon->Add(DictEntryFactory::New(
utf8("干"),
std::vector<std::string>{utf8("幹"), utf8("乾"), utf8("干")}));
lexicon->Add(DictEntryFactory::New(
utf8("里"), std::vector<std::string>{utf8("裏"), utf8("里")}));
lexicon->Sort();
return TextDictPtr(new TextDict(lexicon));
}
DictPtr CreateDictForPhrases() const {
LexiconPtr lexicon(new Lexicon);
lexicon->Add(DictEntryFactory::New(utf8("太后"), utf8("太后")));
lexicon->Add(DictEntryFactory::New(utf8("头发"), utf8("頭髮")));
lexicon->Add(DictEntryFactory::New(utf8("干燥"), utf8("乾燥")));
lexicon->Add(DictEntryFactory::New(utf8("鼠标"), utf8("鼠標")));
lexicon->Sort();
return TextDictPtr(new TextDict(lexicon));
}
DictPtr CreateDictForTaiwanVariants() const {
LexiconPtr lexicon(new Lexicon);
lexicon->Add(DictEntryFactory::New(utf8("裏"), utf8("裡")));
return TextDictPtr(new TextDict(lexicon));
}
DictPtr CreateTaiwanPhraseDict() const {
LexiconPtr lexicon(new Lexicon);
lexicon->Add(DictEntryFactory::New(utf8("鼠标"), utf8("滑鼠")));
lexicon->Add(DictEntryFactory::New(utf8("服务器"), utf8("伺服器")));
lexicon->Add(DictEntryFactory::New(utf8("克罗地亚"), utf8("克羅埃西亞")));
lexicon->Sort();
return TextDictPtr(new TextDict(lexicon));
}
void TestDict(const DictPtr dict) const {
TestMatch(dict);
TestMatchPrefix(dict);
TestMatchAllPrefixes(dict);
}
void TestMatch(const DictPtr& dict) const {
Optional<const DictEntry*> entry = Optional<const DictEntry*>::Null();
entry = dict->Match("BYVoid");
EXPECT_TRUE(!entry.IsNull());
EXPECT_EQ(utf8("BYVoid"), entry.Get()->Key());
EXPECT_EQ(utf8("byv"), entry.Get()->GetDefault());
entry = dict->Match("");
EXPECT_TRUE(entry.IsNull());
entry = dict->Match("xxx");
EXPECT_TRUE(entry.IsNull());
}
void TestMatchPrefix(const DictPtr& dict) const {
Optional<const DictEntry*> entry = Optional<const DictEntry*>::Null();
entry = dict->MatchPrefix("BYVoid");
EXPECT_TRUE(!entry.IsNull());
EXPECT_EQ(utf8("BYVoid"), entry.Get()->Key());
EXPECT_EQ(utf8("byv"), entry.Get()->GetDefault());
entry = dict->MatchPrefix(utf8("清華大學"));
EXPECT_TRUE(!entry.IsNull());
EXPECT_EQ(utf8("清華大學"), entry.Get()->Key());
EXPECT_EQ(utf8("TsinghuaUniversity"), entry.Get()->GetDefault());
entry = dict->MatchPrefix("BYVoid123");
EXPECT_TRUE(!entry.IsNull());
EXPECT_EQ(utf8("BYVoid"), entry.Get()->Key());
EXPECT_EQ(utf8("byv"), entry.Get()->GetDefault());
entry = dict->MatchPrefix(utf8("積羽沉舟"));
EXPECT_TRUE(!entry.IsNull());
EXPECT_EQ(utf8("積羽沉舟"), entry.Get()->Key());
EXPECT_EQ(utf8("羣輕折軸"), entry.Get()->GetDefault());
entry = dict->MatchPrefix("Unknown");
EXPECT_TRUE(entry.IsNull());
entry = dict->MatchPrefix("");
EXPECT_TRUE(entry.IsNull());
}
void TestMatchAllPrefixes(const DictPtr& dict) const {
const std::vector<const DictEntry*> matches =
dict->MatchAllPrefixes(utf8("清華大學計算機系"));
EXPECT_EQ(3, matches.size());
EXPECT_EQ(utf8("清華大學"), matches.at(0)->Key());
EXPECT_EQ(utf8("TsinghuaUniversity"), matches.at(0)->GetDefault());
EXPECT_EQ(utf8("清華"), matches.at(1)->Key());
EXPECT_EQ(utf8("Tsinghua"), matches.at(1)->GetDefault());
EXPECT_EQ(utf8("清"), matches.at(2)->Key());
EXPECT_EQ(utf8("Tsing"), matches.at(2)->GetDefault());
}
const TextDictPtr textDict;
};
} // namespace opencc