ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HTMLAttributeValueTest.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 require_once __DIR__ . '/ProvideUTF8CodepointRange.php';
29 
30 class HTMLAttributeValueTest extends TestCase
31 {
33 
34  public function testConstruct(): void
35  {
36  $this->assertInstanceOf(HTMLAttributeValue::class, new HTMLAttributeValue());
37  }
38 
42  public function testTransform(string $exptected, string $in, string $method): void
43  {
44  $this->$method($exptected, (new HTMLAttributeValue())->transform($in));
45  }
46 
47  public function testInvalidEncoding(): void
48  {
49  $this->expectException(ValueError::class);
50  (new HTMLAttributeValue())->transform(chr(128));
51  }
52 
53  public function testInvalidType(): void
54  {
55  $this->expectException(TypeError::class);
56  (new HTMLAttributeValue())->transform(8);
57  }
58 
59  public static function provideTransformData(): array
60  {
61  return [
62  'Empty string' => ['', '', 'assertSame'],
63  'Single quote' => ['&#x27;', '\'', 'assertSame'],
64  'Different quotes' => ['&quot;Hey,&#x20;y&#x27;all&quot;', '"Hey, y' . "'" . 'all"', 'assertSame'],
65  'UTF-8' => ['&#xAE40;&#xCE58;', '김치', 'assertSame'],
66  'Characters beyond ASCII value 255' => ['&#x0100;', 'Ā', 'assertSame'],
67  'Characters beyond Unicode BMP' => ['&#x10000;', "\xF0\x90\x80\x80", 'assertSame'],
68  'Printable control characters' => ['&#x0D;&#x0A;&#x09;', "\r\n\t", 'assertSame'],
69  'Unprintable control characters' => ['&#xFFFD;&#xFFFD;&#xFFFD;&#xFFFD;', "\0\1\x1F\x7F", 'assertSame'],
70  'Named entities' => ['&lt;&gt;&amp;&quot;', '<>&"', 'assertSame'],
71  'Single space' => ['&#x20;', ' ', 'assertSame'],
72  'Encode entities' => ['&amp;quot&#x3B;hello&amp;quot&#x3B;', '&quot;hello&quot;', 'assertSame'],
73  'Braces' => ['&#x7B;&#x5B;&#x28;&#x29;&#x5D;&#x7D;', '{[()]}', 'assertSame'],
74  ...self::oneByteRangeExcept([',', '.', '-', '_']),
75  ];
76  }
77 }
Inspired by: Laminas escaper: https://github.com/laminas/laminas-escaper.
testTransform(string $exptected, string $in, string $method)
provideTransformData