ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UTFNormalTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
29 class UTFNormalTest extends TestCase
30 {
35 
36  public function setUp(): void
37  {
38  $language = $this->getMockBuilder(\ILIAS\Language\Language::class)
39  ->disableOriginalConstructor()
40  ->getMock();
41  $group = new Group(new Factory(), $language);
42 
43  $this->form_d = $group->utfnormal()->formD();
44  $this->form_c = $group->utfnormal()->formC();
45  $this->form_kc = $group->utfnormal()->formKC();
46  $this->form_kd = $group->utfnormal()->formKD();
47  }
48 
49  public static function stringProvider(): array
50  {
51  // Never ever try to change something on this array :-) e.g. a 'ä' isn't a 'ä' but a 'ä' ;-)
52  return [
53  ["Ä\uFB03n", "Ä\uFB03n", 'Ä\uFB03n', 'Ä\uFB03n', 'Ä\uFB03n'],
54  ["\xC3\x85", 'Å', 'Å', 'Å', 'Å'],
55  ["\xCC\x8A", '̊', '̊', '̊', '̊'],
56  ["\u{FFDA}", 'ᅳ', 'ᅳ', 'ᅳ', 'ᅳ'],
57  ["\u{FDFA}", 'ﷺ', 'ﷺ', 'صلى الله عليه وسلم', 'صلى الله عليه وسلم'],
58  ["\xF5", '', '', '', ''],
59  ["ä", 'ä', 'ä', 'ä', 'ä'],
60  ["🤔", "🤔", "🤔", "🤔", "🤔"],
61  ["你好", "你好", "你好", "你好", "你好"],
62  ];
63  }
64 
68  public function testNormalization(
69  string $string,
70  string $expected_form_c,
71  string $expected_form_d,
72  string $expected_form_kc,
73  string $expected_form_kd
74  ): void {
75  // FORM C
76  $this->assertEquals($expected_form_c, $this->form_c->transform($string));
77 
78  // FORM D
79  $this->assertEquals($expected_form_d, $this->form_d->transform($string));
80 
81  // FORM KC
82  $this->assertEquals($expected_form_kc, $this->form_kc->transform($string));
83 
84  // FORM KD
85  $this->assertEquals($expected_form_kd, $this->form_kd->transform($string));
86  }
87 
88  public function testUmlaut(): void
89  {
90  $char_A_ring = "\xC3\x85"; // 'LATIN CAPITAL LETTER A WITH RING ABOVE' (U+00C5)
91  $char_combining_ring_above = 'A' . "\xCC\x8A"; // 'COMBINING RING ABOVE' (U+030A)
92 
93  $this->assertNotEquals($char_A_ring, $char_combining_ring_above);
94  $this->assertNotEquals(bin2hex($char_A_ring), bin2hex($char_combining_ring_above));
95  $tranformation = $this->form_d;
96  $this->assertEquals('Å', $tranformation->transform($char_A_ring));
97  $this->assertEquals(bin2hex('Å'), bin2hex($tranformation->transform($char_A_ring)));
98  $this->assertEquals('Å', $tranformation->transform($char_combining_ring_above));
99  $this->assertEquals(bin2hex('Å'), bin2hex($tranformation->transform($char_combining_ring_above)));
100  $this->assertEquals(
101  $tranformation->transform($char_A_ring),
102  $this->form_kd->transform($char_combining_ring_above)
103  );
104  $this->assertEquals(
105  bin2hex($tranformation->transform($char_A_ring)),
106  bin2hex($this->form_kd->transform($char_combining_ring_above))
107  );
108  }
109 }
Interface Observer Contains several chained tasks and infos about them.
testNormalization(string $string, string $expected_form_c, string $expected_form_d, string $expected_form_kc, string $expected_form_kd)
stringProvider
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Builds data types.
Definition: Factory.php:35
A transformation is a function from one datatype to another.