-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
test.py
243 lines (198 loc) · 7.98 KB
/
test.py
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# coding: utf8
from __future__ import unicode_literals
import sys
import unittest
PYTHON3 = sys.version_info >= (3,)
V8_0_0 = sys.version_info >= (3, 5)
V10_0_0 = sys.version_info >= (3, 7)
class SmokeTest(unittest.TestCase):
def test_cafe(self):
from pyuca import Collator
c = Collator()
self.assertEqual(
sorted(["cafe", "caff", "café"]),
["cafe", "caff", "café"]
)
self.assertEqual(
sorted(["cafe", "caff", "café"], key=c.sort_key),
["cafe", "café", "caff"]
)
class UtilsTest(unittest.TestCase):
def test_hexstrings2int(self):
from pyuca.utils import hexstrings2int
self.assertEqual(
hexstrings2int(["0000", "0001", "FFFF"]),
[0, 1, 65535]
)
def test_int2hexstrings(self):
from pyuca.utils import int2hexstrings
self.assertEqual(
int2hexstrings([0, 1, 65535]),
["0000", "0001", "FFFF"]
)
def test_format_collation_elements(self):
from pyuca.utils import format_collation_elements
self.assertEqual(
format_collation_elements([[1, 2, 3], [4, 5]]),
"[0001.0002.0003], [0004.0005]"
)
def test_format_collation_elements_none(self):
from pyuca.utils import format_collation_elements
self.assertEqual(
format_collation_elements(None),
None
)
def test_format_sort_key(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key([0, 1, 65535]),
"| 0001 FFFF"
)
class TrieTest(unittest.TestCase):
def __init__(self, *args, **kwargs):
from pyuca.trie import Trie
super(TrieTest, self).__init__(*args, **kwargs)
self.t = Trie()
def test_1(self):
self.t.add("foo", "bar")
self.assertEqual(self.t.find_prefix("fo"), ("", None, "fo"))
self.assertEqual(self.t.find_prefix("foo"), ("foo", "bar", ""))
self.assertEqual(self.t.find_prefix("food"), ("foo", "bar", "d"))
def test_2(self):
self.t.add("a", "yes")
self.t.add("abc", "yes")
self.assertEqual(self.t.find_prefix("abdc"), ("a", "yes", "bdc"))
class FromFullTest(unittest.TestCase):
def __init__(self, *args, **kwargs):
from pyuca import Collator
super(FromFullTest, self).__init__(*args, **kwargs)
self.c = Collator()
(0, 74, 33, 0, 2, 2, 0)
@unittest.skipIf(not PYTHON3, "only matches Python 3's UCA version")
def test_1(self):
self.assertEqual(
self.c.sort_key("\u0332\u0334"),
(0x0000, 0x004A, 0x0021, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(not PYTHON3, "only matches Python 3's UCA version")
@unittest.skipIf(V8_0_0, "not for UCA version 8.0.0")
@unittest.skipIf(V10_0_0, "not for UCA version 10.0.0")
def test_2(self):
self.assertEqual(
self.c.sort_key("\u0430\u0306\u0334"),
(0x1991, 0x0000, 0x0020, 0x004A, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(not PYTHON3, "only matches Python 3's UCA version")
@unittest.skipIf(V8_0_0, "not for UCA version 8.0.0")
@unittest.skipIf(V10_0_0, "not for UCA version 10.0.0")
def test_3(self):
self.assertEqual(
self.c.sort_key("\u0FB2\u0F71\u0001\u0F80\u0061"),
(0x2571, 0x2587, 0x258A, 0x15EB, 0x0000, 0x0020, 0x0020, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(not PYTHON3, "only matches Python 3's UCA version")
@unittest.skipIf(V8_0_0, "not for UCA version 8.0.0")
@unittest.skipIf(V10_0_0, "not for UCA version 10.0.0")
def test_4(self):
self.assertEqual(
self.c.sort_key("\u4E00\u0021"),
(0xFB40, 0xCE00, 0x025D, 0x0000, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(not PYTHON3, "only matches Python 3's UCA version")
@unittest.skipIf(V8_0_0, "not for UCA version 8.0.0")
@unittest.skipIf(V10_0_0, "not for UCA version 10.0.0")
def test_5(self):
self.assertEqual(
self.c.sort_key("\u3400\u0021"),
(0xFB80, 0xB400, 0x025D, 0x0000, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(PYTHON3, "only matches the older Python 2's UCA version")
def test_1_old(self):
self.assertEqual(
self.c.sort_key("\u0332\u0334"),
(0x0000, 0x007C, 0x0021, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(PYTHON3, "only matches the older Python 2's UCA version")
def test_2_old(self):
self.assertEqual(
self.c.sort_key("\u0430\u0306\u0334"),
(0x15B0, 0x0000, 0x0020, 0x007C, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(PYTHON3, "only matches the older Python 2's UCA version")
def test_3_old(self):
self.assertEqual(
self.c.sort_key("\u0FB2\u0F71\u0001\u0F80\u0061"),
(0x205B, 0x206D, 0x2070, 0x120F, 0x0000, 0x0020, 0x0020, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(PYTHON3, "only matches the older Python 2's UCA version")
def test_4_old(self):
self.assertEqual(
self.c.sort_key("\u4E00\u0021"),
(0xFB40, 0xCE00, 0x026E, 0x0000, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0000)
)
@unittest.skipIf(PYTHON3, "only matches the older Python 2's UCA version")
def test_5_old(self):
self.assertEqual(
self.c.sort_key("\u3400\u0021"),
(0xFB80, 0xB400, 0x026E, 0x0000, 0x0020,
0x0020, 0x0000, 0x0002, 0x0002, 0x0000)
)
class FromFullTestV8_0_0(unittest.TestCase):
def __init__(self, *args, **kwargs):
from pyuca.collator import Collator_8_0_0
super(FromFullTestV8_0_0, self).__init__(*args, **kwargs)
self.c = Collator_8_0_0()
@unittest.skipIf(not V8_0_0, "only matches UCA version 8.0.0")
def test_1(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\u9FD5\u0062")),
"FB41 9FD5 1BDB | 0020 0020 | 0002 0002 |",
)
@unittest.skipIf(not V8_0_0, "only matches UCA version 8.0.0")
def test_2(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\U0002CEA1\u0062")),
"FB85 CEA1 1BDB | 0020 0020 | 0002 0002 |",
)
@unittest.skipIf(not V8_0_0, "only matches UCA version 8.0.0")
def test_3(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\U0002B81E\u0062")),
"FBC5 B81E 1BDB | 0020 0020 | 0002 0002 |",
)
@unittest.skipIf(not V8_0_0, "only matches UCA version 8.0.0")
def test_4(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\U0002CEA2\u0021")),
"FBC5 CEA2 025F | 0020 0020 | 0002 0002 |",
)
class FromFullTestV10_0_0(unittest.TestCase):
def __init__(self, *args, **kwargs):
from pyuca.collator import Collator_10_0_0
super(FromFullTestV10_0_0, self).__init__(*args, **kwargs)
self.c = Collator_10_0_0()
@unittest.skipIf(not V10_0_0, "only matches UCA version 10.0.0")
def test_1(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\u1DF6\u0334")),
"| 004A 0033 | 0002 0002 |",
)
@unittest.skipIf(not V10_0_0, "only matches UCA version 10.0.0")
def test_2(self):
from pyuca.utils import format_sort_key
self.assertEqual(
format_sort_key(self.c.sort_key("\u9FEA\u0062")),
"FB41 9FEA 1CC6 | 0020 0020 | 0002 0002 |",
)
if __name__ == "__main__":
unittest.main()