View source
<?php
namespace Drupal\Tests\Component\Serialization;
use Drupal\Component\Serialization\Json;
use Drupal\Tests\UnitTestCase;
class JsonTest extends UnitTestCase {
protected $string;
protected $htmlUnsafe;
protected $htmlUnsafeEscaped;
protected function setUp() {
parent::setUp();
$this->string = '';
for ($i = 1; $i < 128; $i++) {
$this->string .= chr($i);
}
$this->htmlUnsafe = array(
'<',
'>',
'\'',
'&',
);
$this->htmlUnsafeEscaped = array(
'\\u003C',
'\\u003E',
'\\u0027',
'\\u0026',
'\\u0022',
);
}
public function testEncodingAscii() {
$this
->assertSame(strlen($this->string), 127, 'A string with the full ASCII table has the correct length.');
foreach ($this->htmlUnsafe as $char) {
$this
->assertTrue(strpos($this->string, $char) > 0, sprintf('A string with the full ASCII table includes %s.', $char));
}
}
public function testEncodingLength() {
$json = Json::encode($this->string);
$this
->assertTrue(strlen($json) > strlen($this->string), 'A JSON encoded string is larger than the source string.');
}
public function testEncodingStartEnd() {
$json = Json::encode($this->string);
$this
->assertTrue($json[0] == '"', 'A JSON encoded string begins with ".');
$this
->assertTrue($json[strlen($json) - 1] == '"', 'A JSON encoded string ends with ".');
$this
->assertTrue(substr_count($json, '"') == 2, 'A JSON encoded string contains exactly two ".');
}
public function testReversibility() {
$json = Json::encode($this->string);
$json_decoded = Json::decode($json);
$this
->assertSame($this->string, $json_decoded, 'Encoding a string to JSON and decoding back results in the original string.');
}
public function testStructuredReversibility() {
$source = array(
TRUE,
FALSE,
0,
1,
'0',
'1',
$this->string,
array(
'key1' => $this->string,
'key2' => array(
'nested' => TRUE,
),
),
);
$json = Json::encode($source);
foreach ($this->htmlUnsafe as $char) {
$this
->assertTrue(strpos($json, $char) === FALSE, sprintf('A JSON encoded string does not contain %s.', $char));
}
foreach ($this->htmlUnsafeEscaped as $char) {
$this
->assertTrue(strpos($json, $char) > 0, sprintf('A JSON encoded string contains %s.', $char));
}
$json_decoded = Json::decode($json);
$this
->assertNotSame($source, $json, 'An array encoded in JSON is identical to the source.');
$this
->assertSame($source, $json_decoded, 'Encoding structured data to JSON and decoding back not results in the original data.');
}
}