File: hyphenation_test.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (416 lines) | stat: -rw-r--r-- 15,894 bytes parent folder | download | duplicates (11)
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
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/text/hyphenation.h"

#include "build/build_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/text/layout_locale.h"

using testing::ElementsAre;
using testing::ElementsAreArray;

#if defined(USE_MINIKIN_HYPHENATION) && BUILDFLAG(IS_FUCHSIA)
// Fuchsia doesn't include |blink_platform_unittests_data|.
#undef USE_MINIKIN_HYPHENATION
#endif

#if defined(USE_MINIKIN_HYPHENATION)
#include "base/files/file_path.h"
#include "third_party/blink/renderer/platform/text/hyphenation/hyphenation_minikin.h"
#endif

namespace blink {

class NoHyphenation : public Hyphenation {
 public:
  wtf_size_t LastHyphenLocation(const StringView&,
                                wtf_size_t before_index) const override {
    return 0;
  }
};

class HyphenationTest : public testing::Test {
 protected:
  void TearDown() override { LayoutLocale::ClearForTesting(); }

#if defined(USE_MINIKIN_HYPHENATION) || BUILDFLAG(IS_APPLE)
  // Get a |Hyphenation| instance for the specified locale for testing.
  scoped_refptr<Hyphenation> GetHyphenation(const AtomicString& locale) {
#if defined(USE_MINIKIN_HYPHENATION)
    // Because the mojo service to open hyphenation dictionaries is not
    // accessible from the unit test, open the dictionary file directly for
    // testing.
    std::string filename = "hyph-" + locale.Ascii() + ".hyb";
#if BUILDFLAG(IS_ANDROID)
    base::FilePath path("/system/usr/hyphen-data");
#else
    base::FilePath path = test::HyphenationDictionaryDir();
#endif
    path = path.AppendASCII(filename);
    base::File file(path, base::File::FLAG_OPEN | base::File::FLAG_READ);
    if (file.IsValid())
      return HyphenationMinikin::FromFileForTesting(locale, std::move(file));
#else
    if (const LayoutLocale* layout_locale = LayoutLocale::Get(locale))
      return layout_locale->GetHyphenation();
#endif
    return nullptr;
  }

  Vector<wtf_size_t> FirstHyphenLocations(
      StringView word,
      const Hyphenation& hyphenation) const {
    Vector<wtf_size_t> indexes;
    const wtf_size_t word_len = word.length();
    for (wtf_size_t i = 0; i < word_len; ++i)
      indexes.push_back(hyphenation.FirstHyphenLocation(word, i));
    return indexes;
  }

  Vector<wtf_size_t> LastHyphenLocations(StringView word,
                                         const Hyphenation& hyphenation) const {
    Vector<wtf_size_t> indexes;
    const wtf_size_t word_len = word.length();
    for (wtf_size_t i = 0; i < word_len; ++i)
      indexes.push_back(hyphenation.LastHyphenLocation(word, i));
    return indexes;
  }
#endif

#if defined(USE_MINIKIN_HYPHENATION)
  void TestWordToHyphenate(StringView text,
                           StringView expected,
                           unsigned expected_num_leading_chars) {
    unsigned num_leading_chars;
    const StringView result =
        HyphenationMinikin::WordToHyphenate(text, &num_leading_chars);
    EXPECT_EQ(result, expected);
    EXPECT_EQ(num_leading_chars, expected_num_leading_chars);

    // |WordToHyphenate| has separate codepaths for 8 and 16 bits. Make sure
    // both codepaths return the same results. When a paragraph has at least one
    // 16 bits character (e.g., Emoji), there will be 8 bits words in 16 bits
    // string.
    if (!text.Is8Bit()) {
      // If |text| is 16 bits, 16 bits codepath is already tested.
      return;
    }
    String text16 = text.ToString();
    text16.Ensure16Bit();
    const StringView result16 =
        HyphenationMinikin::WordToHyphenate(text16, &num_leading_chars);
    EXPECT_EQ(result16, expected);
    EXPECT_EQ(num_leading_chars, expected_num_leading_chars);
  }
#endif
};

TEST_F(HyphenationTest, Get) {
  scoped_refptr<Hyphenation> hyphenation = base::AdoptRef(new NoHyphenation);
  AtomicString local_en_us("en-US");
  LayoutLocale::SetHyphenationForTesting(local_en_us, hyphenation);
  EXPECT_EQ(hyphenation.get(),
            LayoutLocale::Get(local_en_us)->GetHyphenation());
  AtomicString local_en_uk("en-UK");
  LayoutLocale::SetHyphenationForTesting(local_en_uk, nullptr);
  EXPECT_EQ(nullptr, LayoutLocale::Get(local_en_uk)->GetHyphenation());
}

#if defined(USE_MINIKIN_HYPHENATION)
TEST_F(HyphenationTest, MapLocale) {
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("de-de")), "de-1996");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("de-de-xyz")),
            "de-1996");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("de-li")), "de-1996");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("de-li-1901")),
            "de-ch-1901");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("en")), "en-us");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("en-gu")), "en-us");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("en-gu-xyz")), "en-us");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("en-xyz")), "en-gb");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("en-xyz-xyz")), "en-gb");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("fr-ca")), "fr");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("fr-fr")), "fr");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("fr-fr-xyz")), "fr");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("mn-xyz")), "mn-cyrl");
  EXPECT_EQ(HyphenationMinikin::MapLocale(AtomicString("und-Deva-xyz")), "hi");

  const char* no_map_locales[] = {"en-us", "fr"};
  for (const char* locale_str : no_map_locales) {
    AtomicString locale(locale_str);
    AtomicString mapped_locale = HyphenationMinikin::MapLocale(locale);
    // If no mapping, the same instance should be returned.
    EXPECT_EQ(locale.Impl(), mapped_locale.Impl());
  }
}
#endif

#if defined(USE_MINIKIN_HYPHENATION) || BUILDFLAG(IS_APPLE)
TEST_F(HyphenationTest, HyphenLocations) {
  scoped_refptr<Hyphenation> hyphenation =
      GetHyphenation(AtomicString("en-us"));
#if BUILDFLAG(IS_ANDROID)
  // Hyphenation is available only for Android M MR1 or later.
  if (!hyphenation)
    return;
#endif
  ASSERT_TRUE(hyphenation) << "Cannot find the hyphenation for en-us";

  // Get all hyphenation points by |HyphenLocations|.
  const String word("hyphenation");
  Vector<wtf_size_t, 8> locations = hyphenation->HyphenLocations(word);
  EXPECT_GT(locations.size(), 0u);

  for (wtf_size_t i = 1; i < locations.size(); i++) {
    ASSERT_GT(locations[i - 1], locations[i])
        << "hyphenLocations must return locations in the descending order";
  }

  // Test |LastHyphenLocation| returns all hyphenation points.
  Vector<wtf_size_t, 8> actual;
  for (wtf_size_t offset = word.length();;) {
    offset = hyphenation->LastHyphenLocation(word, offset);
    if (!offset)
      break;
    actual.push_back(offset);
  }
  EXPECT_THAT(actual, ElementsAreArray(locations));

  // Test |FirstHyphenLocation| returns all hyphenation points.
  actual.clear();
  for (wtf_size_t offset = 0;;) {
    offset = hyphenation->FirstHyphenLocation(word, offset);
    if (!offset)
      break;
    actual.push_back(offset);
  }
  locations.Reverse();
  EXPECT_THAT(actual, ElementsAreArray(locations));
}

#if defined(USE_MINIKIN_HYPHENATION)
TEST_F(HyphenationTest, WordToHyphenate) {
  TestWordToHyphenate("word", "word", 0);
  TestWordToHyphenate(" word", "word", 1);
  TestWordToHyphenate("  word", "word", 2);
  TestWordToHyphenate("  word..", "word", 2);
  TestWordToHyphenate(" ( word. ).", "word", 3);
  TestWordToHyphenate(u" ( \u3042. ).", u"\u3042", 3);
  TestWordToHyphenate(u" ( \U00020B9F. ).", u"\U00020B9F", 3);
}
#endif

TEST_F(HyphenationTest, LeadingSpaces) {
  scoped_refptr<Hyphenation> hyphenation =
      GetHyphenation(AtomicString("en-us"));
#if BUILDFLAG(IS_ANDROID)
  // Hyphenation is available only for Android M MR1 or later.
  if (!hyphenation)
    return;
#endif
  ASSERT_TRUE(hyphenation) << "Cannot find the hyphenation for en-us";

  String leading_space(" principle");
  EXPECT_THAT(hyphenation->HyphenLocations(leading_space), ElementsAre(7, 5));
  EXPECT_EQ(5u, hyphenation->LastHyphenLocation(leading_space, 6));

  String multi_leading_spaces("   principle");
  EXPECT_THAT(hyphenation->HyphenLocations(multi_leading_spaces),
              ElementsAre(9, 7));
  EXPECT_EQ(7u, hyphenation->LastHyphenLocation(multi_leading_spaces, 8));

  // Line breaker is not supposed to pass only spaces, no locations.
  String only_spaces("   ");
  EXPECT_THAT(hyphenation->HyphenLocations(only_spaces), ElementsAre());
  EXPECT_EQ(0u, hyphenation->LastHyphenLocation(only_spaces, 3));
}

TEST_F(HyphenationTest, NonLetters) {
  scoped_refptr<Hyphenation> hyphenation =
      GetHyphenation(AtomicString("en-us"));
#if BUILDFLAG(IS_ANDROID)
  // Hyphenation is available only for Android M MR1 or later.
  if (!hyphenation)
    return;
#endif

  String non_letters("**********");
  EXPECT_EQ(0u,
            hyphenation->LastHyphenLocation(non_letters, non_letters.length()));

  non_letters.Ensure16Bit();
  EXPECT_EQ(0u,
            hyphenation->LastHyphenLocation(non_letters, non_letters.length()));
}

TEST_F(HyphenationTest, English) {
  scoped_refptr<Hyphenation> hyphenation =
      GetHyphenation(AtomicString("en-us"));
#if BUILDFLAG(IS_ANDROID)
  // Hyphenation is available only for Android M MR1 or later.
  if (!hyphenation)
    return;
#endif
  ASSERT_TRUE(hyphenation) << "Cannot find the hyphenation for en-us";

  Vector<wtf_size_t, 8> locations = hyphenation->HyphenLocations("hyphenation");
  EXPECT_THAT(locations, testing::AnyOf(ElementsAreArray({6, 2}),
                                        ElementsAreArray({7, 6, 2})));
}

TEST_F(HyphenationTest, German) {
  scoped_refptr<Hyphenation> hyphenation =
      GetHyphenation(AtomicString("de-1996"));
#if BUILDFLAG(IS_ANDROID)
  // Hyphenation is available only for Android M MR1 or later.
  if (!hyphenation)
    return;
#endif
  ASSERT_TRUE(hyphenation) << "Cannot find the hyphenation for de-1996";

  Vector<wtf_size_t, 8> locations =
      hyphenation->HyphenLocations("konsonantien");
#if BUILDFLAG(IS_APPLE)
  EXPECT_THAT(locations, ElementsAreArray({10, 8, 5, 3}));
#else
  EXPECT_THAT(locations, ElementsAreArray({8, 5, 3}));
#endif

  // Test words with non-ASCII (> U+0080) characters.
  locations = hyphenation->HyphenLocations(
      "B"
      "\xE4"  // LATIN SMALL LETTER A WITH DIAERESIS
      "chlein");
  EXPECT_THAT(locations, ElementsAreArray({4}));
}
#endif

#if defined(USE_MINIKIN_HYPHENATION) || BUILDFLAG(IS_APPLE)
TEST_F(HyphenationTest, CapitalizedWords) {
  // Avoid hyphenating capitalized words for "en".
  if (scoped_refptr<Hyphenation> en = GetHyphenation(AtomicString("en-us"))) {
    Vector<wtf_size_t, 8> locations = en->HyphenLocations("Hyphenation");
    EXPECT_EQ(locations.size(), 0u);
  }

  // Hyphenate capitalized words if German.
  if (scoped_refptr<Hyphenation> de = GetHyphenation(AtomicString("de-1996"))) {
    Vector<wtf_size_t, 8> locations = de->HyphenLocations("Konsonantien");
    EXPECT_NE(locations.size(), 0u);
  }
}

// Test the used values of the `hyphenate-limit-chars` property.
// https://w3c.github.io/csswg-drafts/css-text-4/#propdef-hyphenate-limit-chars
TEST_F(HyphenationTest, SetLimits) {
  scoped_refptr<Hyphenation> en = GetHyphenation(AtomicString("en-us"));
  if (!en)
    return;

  en->SetLimits(0, 0, 0);
  EXPECT_THAT(en->MinPrefixLength(), Hyphenation::kDefaultMinPrefixLength);
  EXPECT_THAT(en->MinSuffixLength(), Hyphenation::kDefaultMinSuffixLength);
  EXPECT_THAT(en->MinWordLength(), Hyphenation::kDefaultMinWordLength);

  const wtf_size_t word = Hyphenation::kDefaultMinWordLength + 1;
  en->SetLimits(0, 0, word);
  EXPECT_THAT(en->MinPrefixLength(), Hyphenation::kDefaultMinPrefixLength);
  EXPECT_THAT(en->MinSuffixLength(), Hyphenation::kDefaultMinSuffixLength);
  EXPECT_THAT(en->MinWordLength(), word);

  const wtf_size_t prefix = Hyphenation::kDefaultMinPrefixLength + 1;
  const wtf_size_t suffix = Hyphenation::kDefaultMinSuffixLength + 10;
  en->SetLimits(prefix, suffix, 0);
  EXPECT_THAT(en->MinPrefixLength(), prefix);
  EXPECT_THAT(en->MinSuffixLength(), suffix);
  EXPECT_THAT(en->MinWordLength(),
              std::max(prefix + suffix, Hyphenation::kDefaultMinWordLength));

  // If the `suffix` is missing, it is the same as the `prefix`.
  en->SetLimits(prefix, 0, 0);
  EXPECT_THAT(en->MinPrefixLength(), prefix);
  EXPECT_THAT(en->MinSuffixLength(), prefix);
  EXPECT_THAT(en->MinWordLength(),
              std::max(prefix + prefix, Hyphenation::kDefaultMinWordLength));

  // If the `prefix` is missing, it is `auto`.
  en->SetLimits(0, suffix, 0);
  EXPECT_THAT(en->MinPrefixLength(), Hyphenation::kDefaultMinPrefixLength);
  EXPECT_THAT(en->MinSuffixLength(), suffix);
  EXPECT_THAT(en->MinWordLength(),
              std::max(Hyphenation::kDefaultMinPrefixLength + suffix,
                       Hyphenation::kDefaultMinWordLength));

  en->ResetLimits();
}

// Test the limitation with all the 3 public APIs.
TEST_F(HyphenationTest, Limits) {
  scoped_refptr<Hyphenation> en = GetHyphenation(AtomicString("en-us"));
  if (!en)
    return;

  // "example" hyphenates to "ex-am-ple".
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre(4, 2));
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(2, 2, 4, 4, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 2, 2, 4, 4));

  // Limiting prefix >= 2 and suffix >= 3 doesn't affect results.
  en->SetLimits(2, 3, 0);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre(4, 2));
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(2, 2, 4, 4, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 2, 2, 4, 4));

  // Limiting the prefix >= 3 disables the first hyphenation point.
  en->SetLimits(3, 0, 0);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre(4));
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(4, 4, 4, 4, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 0, 0, 4, 4));

  // Limiting the suffix >= 4 disables the last hyphenation point.
  en->SetLimits(0, 4, 0);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre(2));
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(2, 2, 0, 0, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 2, 2, 2, 2));

  // Applying both limitations results in no hyphenation points.
  en->SetLimits(3, 4, 0);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre());
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 0, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 0, 0, 0, 0));

  // Limiting the word length >= 7 doesn't affect the results.
  en->SetLimits(0, 0, 7);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre(4, 2));
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(2, 2, 4, 4, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 2, 2, 4, 4));

  // Limiting the word length >= 8 disables hyphenating "example".
  en->SetLimits(0, 0, 8);
  EXPECT_THAT(en->HyphenLocations("example"), ElementsAre());
  EXPECT_THAT(FirstHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 0, 0, 0, 0));
  EXPECT_THAT(LastHyphenLocations("example", *en),
              ElementsAre(0, 0, 0, 0, 0, 0, 0));

  en->ResetLimits();
}
#endif  // defined(USE_MINIKIN_HYPHENATION) || BUILDFLAG(IS_APPLE)

}  // namespace blink