ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
JsonTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 use JsonException;
26 
27 require_once __DIR__ . '/ProvideUTF8CodepointRange.php';
28 
29 class JsonTest extends TestCase
30 {
32 
33  public function testConstruct(): void
34  {
35  $this->assertInstanceOf(Json::class, new Json());
36  }
37 
41  public function testTransform(string $exptected, string $in, string $method): void
42  {
43  $this->$method($exptected, (new Json())->transform($in));
44  }
45 
46  public function testInvalidEncoding(): void
47  {
48  $this->expectException(JsonException::class);
49  (new Json())->transform(chr(128));
50  }
51 
52  public static function provideTransformData(): array
53  {
54  return [
55  'Empty string' => ['""', '', 'assertSame'],
56  'UTF-8' => ['"\uc548\ub155\ud558\uc11c\u3163\uc694"', '안녕하서ㅣ요', 'assertSame'],
57  'HTML special chars' => ['"\\u003C\\u003E\\u0027\\u0022\\u0026"', '<>\'"&', 'assertSame'],
58  'Characters beyond ASCII value 255' => ['"\\u0100"', 'Ā', 'assertSame'],
59  'Characters beyond Unicode BMP' => ['"\\ud800\\udc00"', "\xF0\x90\x80\x80", 'assertSame'],
60  'Basic control characters and null' => ['"\\r\\n\\t\\u0000"', "\r\n\t\0", 'assertSame'],
61  'Single space' => ['" "', ' ', 'assertSame'],
62  'Slash' => ['"\\/"', '/', 'assertSame'],
63  ];
64  }
65 }
testTransform(string $exptected, string $in, string $method)
provideTransformData
Definition: JsonTest.php:41
This class expects a valid UTF-8 string.
Definition: Json.php:34