ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HTMLSpecialCharsAsEntitiesTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 use ValueError;
26 use TypeError;
27 
28 class HTMLSpecialCharsAsEntitiesTest extends TestCase
29 {
30  public function testConstruct(): void
31  {
32  $this->assertInstanceOf(HTMLSpecialCharsAsEntities::class, new HTMLSpecialCharsAsEntities());
33  }
34 
38  public function testTransform(string $exptected, string $in): void
39  {
40  $this->assertSame($exptected, (new HTMLSpecialCharsAsEntities())->transform($in));
41  }
42 
43  public function testInvalidType(): void
44  {
45  $this->expectException(TypeError::class);
47  }
48 
49  public function testInvalidEncoding(): void
50  {
51  $this->expectException(ValueError::class);
52  (new HTMLSpecialCharsAsEntities())->transform(chr(128));
53  }
54 
55  public static function provideTransformData(): array
56  {
57  $alpha = implode('', range(ord('A'), ord('z')));
58  $numbers = implode('', range(ord('0'), ord('9')));
59 
60  return array_map(fn($s) => [htmlspecialchars($s, ENT_QUOTES | ENT_SUBSTITUTE, 'utf-8'), $s], [
61  'Empty string' => '',
62  'Single quotes' => '\'',
63  'Different quotes' => '"Hey, y' . "'" . 'all"',
64  'Characters beyond ASCII value 255' => 'Ā',
65  'Characters beyond Unicode BMP' => "\xF0\x90\x80\x80",
66  'UTF-8' => '커피',
67  'Immune chars' => ',.-_',
68  'Alpha' => $alpha,
69  'Numbers' => $numbers,
70  'Basic control characters and null' => "\r\n\t\0",
71  'Named entities' => '<>&"',
72  'Single space' => ' ',
73  'Encode entities' => '&quot;hello&quot;',
74  'Braces' => '{[()]}',
75  ]);
76  }
77 
78  public function htmlSpecialCharsProvider(): array
79  {
80  return [
81  '\'' => ['\'', '&#039;'],
82  '"' => ['"', '&quot;'],
83  '<' => ['<', '&lt;'],
84  '>' => ['>', '&gt;'],
85  '&' => ['&', '&amp;'],
86  ];
87  }
88 }
Inspired by: Laminas escaper: https://github.com/laminas/laminas-escaper.