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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
package uniseg
import (
"testing"
)
// Test official Grapheme Cluster Unicode test cases for grapheme clusters using
// the [Step] function.
func TestStepBytesGrapheme(t *testing.T) {
for testNum, testCase := range graphemeBreakTestCases {
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
b := []byte(testCase.original)
state := -1
var (
index int
c []byte
)
GraphemeLoop:
for len(b) > 0 {
c, b, _, state = Step(b, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More grapheme clusters returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
cluster := []rune(string(c))
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Grapheme cluster at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Grapheme cluster at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer grapheme clusters returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
cluster, rest, boundaries, newState := Step([]byte{}, -1)
if len(cluster) > 0 {
t.Errorf(`Expected cluster to be empty byte slice, got %q`, cluster)
}
if len(rest) > 0 {
t.Errorf(`Expected rest to be empty byte slice, got %q`, rest)
}
if boundaries != 0 {
t.Errorf(`Expected width to be 0, got %d`, boundaries)
}
if newState != 0 {
t.Errorf(`Expected newState to be 0, got %d`, newState)
}
}
// Test official word boundaries Unicode test cases for grapheme clusters using
// the [Step] function.
func TestStepBytesWord(t *testing.T) {
for testNum, testCase := range wordBreakTestCases {
if testNum == 1700 {
// This test case reveals an inconsistency in the Unicode rule set,
// namely the handling of ZWJ within two RI graphemes. (Grapheme
// rules will restart the RI count, word rules will ignore the ZWJ.)
// An error has been reported.
continue
}
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
b := []byte(testCase.original)
state := -1
var (
index, boundaries int
c []byte
growingCluster []rune
)
GraphemeLoop:
for len(b) > 0 {
c, b, boundaries, state = Step(b, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More words returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
growingCluster = append(growingCluster, []rune(string(c))...)
if boundaries&MaskWord == 0 {
continue
}
cluster := growingCluster
growingCluster = nil
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Word at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Word at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer words returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
}
// Test official sentence boundaries Unicode test cases for grapheme clusters
// using the [Step] function.
func TestStepBytesSentence(t *testing.T) {
for testNum, testCase := range sentenceBreakTestCases {
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
b := []byte(testCase.original)
state := -1
var (
index, boundaries int
c []byte
growingCluster []rune
)
GraphemeLoop:
for len(b) > 0 {
c, b, boundaries, state = Step(b, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More sentences returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
growingCluster = append(growingCluster, []rune(string(c))...)
if boundaries&MaskSentence == 0 {
continue
}
cluster := growingCluster
growingCluster = nil
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Sentence at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Sentence at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer sentences returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
}
// We don't test the [Step] function for UAX #14 line breaking because the rules
// aren't really compatible. Specifically emoji modifiers and zero-width joiners
// are kept together by the grapheme cluster rules while line breaking rules
// will allow them to be broken apart. The handling of this limitation is
// outlined in Section 8.2 Example 6 of UAX #14.
// Test official Grapheme Cluster Unicode test cases for grapheme clusters using
// the StepString() function.
func TestStepStringGrapheme(t *testing.T) {
for testNum, testCase := range graphemeBreakTestCases {
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
str := testCase.original
state := -1
var (
index int
c string
)
GraphemeLoop:
for len(str) > 0 {
c, str, _, state = StepString(str, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More grapheme clusters returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
cluster := []rune(c)
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Grapheme cluster at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Grapheme cluster at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer grapheme clusters returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
cluster, rest, boundaries, newState := StepString("", -1)
if len(cluster) > 0 {
t.Errorf(`Expected cluster to be empty string, got %q`, cluster)
}
if len(rest) > 0 {
t.Errorf(`Expected rest to be empty string, got %q`, rest)
}
if boundaries != 0 {
t.Errorf(`Expected width to be 0, got %d`, boundaries)
}
if newState != 0 {
t.Errorf(`Expected newState to be 0, got %d`, newState)
}
}
// Test official word boundaries Unicode test cases for grapheme clusters using
// the StepString() function.
func TestStepStringWord(t *testing.T) {
for testNum, testCase := range wordBreakTestCases {
if testNum == 1700 {
// This test case reveals an inconsistency in the Unicode rule set,
// namely the handling of ZWJ within two RI graphemes. (Grapheme
// rules will restart the RI count, word rules will ignore the ZWJ.)
// An error has been reported.
continue
}
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
str := testCase.original
state := -1
var (
index, boundaries int
c string
growingCluster []rune
)
GraphemeLoop:
for len(str) > 0 {
c, str, boundaries, state = StepString(str, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More words returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
growingCluster = append(growingCluster, []rune(c)...)
if boundaries&MaskWord == 0 {
continue
}
cluster := growingCluster
growingCluster = nil
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Word at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Word at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer words returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
}
// Test official sentence boundaries Unicode test cases for grapheme clusters
// using the StepString() function.
func TestStepStringSentence(t *testing.T) {
for testNum, testCase := range sentenceBreakTestCases {
/*t.Logf(`Test case %d %q: Expecting %x, getting %x, code points %x"`,
testNum,
strings.TrimSpace(testCase.original),
testCase.expected,
decomposed(testCase.original),
[]rune(testCase.original))*/
str := testCase.original
state := -1
var (
index, boundaries int
c string
growingCluster []rune
)
GraphemeLoop:
for len(str) > 0 {
c, str, boundaries, state = StepString(str, state)
if index >= len(testCase.expected) {
t.Errorf(`Test case %d %q failed: More sentences returned than expected %d`,
testNum,
testCase.original,
len(testCase.expected))
break
}
growingCluster = append(growingCluster, []rune(c)...)
if boundaries&MaskSentence == 0 {
continue
}
cluster := growingCluster
growingCluster = nil
if len(cluster) != len(testCase.expected[index]) {
t.Errorf(`Test case %d %q failed: Sentence at index %d has %d codepoints %x, %d expected %x`,
testNum,
testCase.original,
index,
len(cluster),
cluster,
len(testCase.expected[index]),
testCase.expected[index])
break
}
for i, r := range cluster {
if r != testCase.expected[index][i] {
t.Errorf(`Test case %d %q failed: Sentence at index %d is %x, expected %x`,
testNum,
testCase.original,
index,
cluster,
testCase.expected[index])
break GraphemeLoop
}
}
index++
}
if index < len(testCase.expected) {
t.Errorf(`Test case %d %q failed: Fewer sentences returned (%d) than expected (%d)`,
testNum,
testCase.original,
index,
len(testCase.expected))
}
}
}
// Benchmark the use of the [Step] function.
func BenchmarkStepBytes(b *testing.B) {
for i := 0; i < b.N; i++ {
var c []byte
state := -1
str := benchmarkBytes
for len(str) > 0 {
c, str, _, state = Step(str, state)
resultRunes = []rune(string(c))
}
}
}
// Benchmark the use of the StepString() function.
func BenchmarkStepString(b *testing.B) {
for i := 0; i < b.N; i++ {
var c string
state := -1
str := benchmarkStr
for len(str) > 0 {
c, str, _, state = StepString(str, state)
resultRunes = []rune(c)
}
}
}
// Fuzz the StepString function.
func FuzzStepString(f *testing.F) {
for _, tc := range graphemeBreakTestCases {
f.Add(tc.original)
}
f.Fuzz(func(t *testing.T, orig string) {
var (
c string
b []byte
boundaries int
)
str := orig
state := -1
for len(str) > 0 {
c, str, boundaries, state = StepString(str, state)
b = append(b, []byte(c)...)
}
// Check if the constructed string is the same as the original.
if string(b) != orig {
t.Errorf("Fuzzing failed: %q != %q", string(b), orig)
}
// For all other checks, we need to have a non-empty string.
if orig == "" {
return
}
// Check end boundaries.
if boundaries&MaskWord == 0 {
t.Errorf("String %q does not end on a word boundary (final boundary = %x)", orig, state)
}
if boundaries&MaskSentence == 0 {
t.Errorf("String %q does not end on a sentence boundary (final boundary = %x)", orig, state)
}
if boundaries&MaskLine != LineMustBreak {
t.Errorf("String %q does not end with a mandatory line break (final boundary = %x)", orig, state)
}
// Note: If you have ideas for more useful checks we could add here,
// please submit them here:
// https://github.com/rivo/uniseg/issues
})
}
|