2011-10-31 13:43:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Json;
|
|
|
|
|
2011-12-09 11:16:17 +00:00
|
|
|
use Seld\JsonLint\ParsingException;
|
2011-10-31 13:43:41 +00:00
|
|
|
use Composer\Json\JsonFile;
|
2021-05-24 09:51:04 +00:00
|
|
|
use Composer\Json\JsonValidationException;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2011-10-31 13:43:41 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class JsonFileTest extends TestCase
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectExtraComma(): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": "bar",
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectExtraCommaInArray(): void
|
2011-11-01 13:13:22 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": [
|
|
|
|
"bar",
|
|
|
|
]
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 3', $json);
|
2011-11-01 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectUnescapedBackslash(): void
|
2011-11-01 15:02:56 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"fo\o": "bar"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 1', $json);
|
2011-11-01 15:02:56 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorSkipsEscapedBackslash(): void
|
2011-11-05 22:51:35 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"fo\\\\o": "bar"
|
|
|
|
"a": "b"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
2011-11-05 22:51:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectSingleQuotes(): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
2015-11-04 06:17:49 +00:00
|
|
|
if (defined('JSON_PARSER_NOTSTRICT') && version_compare(phpversion('json'), '1.3.9', '<')) {
|
2015-07-16 07:21:13 +00:00
|
|
|
$this->markTestSkipped('jsonc issue, see https://github.com/remicollet/pecl-json-c/issues/23');
|
|
|
|
}
|
2011-10-31 13:43:41 +00:00
|
|
|
$json = '{
|
|
|
|
\'foo\': "bar"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 1', $json);
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectMissingQuotes(): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
foo: "bar"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 1', $json);
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectArrayAsHash(): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": ["bar": "baz"]
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectMissingComma(): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": "bar"
|
|
|
|
"bar": "foo"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testSchemaValidation(): void
|
2011-12-09 11:16:17 +00:00
|
|
|
{
|
2015-04-29 23:08:45 +00:00
|
|
|
$json = new JsonFile(__DIR__.'/Fixtures/composer.json');
|
2012-03-05 21:01:47 +00:00
|
|
|
$this->assertTrue($json->validateSchema());
|
2021-05-24 09:51:04 +00:00
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testSchemaValidationError(): void
|
2021-05-24 09:51:04 +00:00
|
|
|
{
|
2021-12-10 12:14:04 +00:00
|
|
|
$file = $this->createTempFile();
|
2021-05-24 09:51:04 +00:00
|
|
|
file_put_contents($file, '{ "name": null }');
|
|
|
|
$json = new JsonFile($file);
|
|
|
|
$expectedMessage = sprintf('"%s" does not match the expected JSON schema', $file);
|
|
|
|
$expectedError = 'name : NULL value found, but a string is required';
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$this->assertContains($expectedError, $e->getErrors());
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$json->validateSchema(JsonFile::LAX_SCHEMA);
|
|
|
|
$this->fail('Expected exception to be thrown (lax)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$this->assertContains($expectedError, $e->getErrors());
|
|
|
|
}
|
|
|
|
unlink($file);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testSchemaValidationLaxAdditionalProperties(): void
|
2021-05-24 09:51:04 +00:00
|
|
|
{
|
2021-12-10 12:14:04 +00:00
|
|
|
$file = $this->createTempFile();
|
2021-05-24 09:51:04 +00:00
|
|
|
file_put_contents($file, '{ "name": "vendor/package", "description": "generic description", "foo": "bar" }');
|
|
|
|
$json = new JsonFile($file);
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals(sprintf('"%s" does not match the expected JSON schema', $file), $e->getMessage());
|
|
|
|
$this->assertEquals(array('The property foo is not defined and the definition does not allow additional properties'), $e->getErrors());
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
unlink($file);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testSchemaValidationLaxRequired(): void
|
2021-05-24 09:51:04 +00:00
|
|
|
{
|
2021-12-10 12:14:04 +00:00
|
|
|
$file = $this->createTempFile();
|
2021-05-24 09:51:04 +00:00
|
|
|
$json = new JsonFile($file);
|
|
|
|
|
|
|
|
$expectedMessage = sprintf('"%s" does not match the expected JSON schema', $file);
|
|
|
|
|
|
|
|
file_put_contents($file, '{ }');
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$errors = $e->getErrors();
|
|
|
|
$this->assertContains('name : The property name is required', $errors);
|
|
|
|
$this->assertContains('description : The property description is required', $errors);
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
|
|
|
file_put_contents($file, '{ "name": "vendor/package" }');
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$this->assertEquals(array('description : The property description is required'), $e->getErrors());
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
|
|
|
file_put_contents($file, '{ "description": "generic description" }');
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$this->assertEquals(array('name : The property name is required'), $e->getErrors());
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
2021-05-24 12:42:23 +00:00
|
|
|
file_put_contents($file, '{ "type": "library" }');
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$errors = $e->getErrors();
|
|
|
|
$this->assertContains('name : The property name is required', $errors);
|
|
|
|
$this->assertContains('description : The property description is required', $errors);
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
|
|
|
file_put_contents($file, '{ "type": "project" }');
|
|
|
|
try {
|
|
|
|
$json->validateSchema();
|
|
|
|
$this->fail('Expected exception to be thrown (strict)');
|
|
|
|
} catch (JsonValidationException $e) {
|
|
|
|
$this->assertEquals($expectedMessage, $e->getMessage());
|
|
|
|
$errors = $e->getErrors();
|
|
|
|
$this->assertContains('name : The property name is required', $errors);
|
|
|
|
$this->assertContains('description : The property description is required', $errors);
|
|
|
|
}
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
|
|
|
file_put_contents($file, '{ "name": "vendor/package", "description": "generic description" }');
|
|
|
|
$this->assertTrue($json->validateSchema());
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA));
|
|
|
|
|
2021-05-24 09:51:04 +00:00
|
|
|
unlink($file);
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testCustomSchemaValidationLax(): void
|
2021-06-03 18:15:35 +00:00
|
|
|
{
|
2021-12-10 12:14:04 +00:00
|
|
|
$file = $this->createTempFile();
|
2021-06-03 18:15:35 +00:00
|
|
|
file_put_contents($file, '{ "custom": "property", "another custom": "property" }');
|
|
|
|
|
2021-12-10 12:14:04 +00:00
|
|
|
$schema = $this->createTempFile();
|
2021-06-03 18:15:35 +00:00
|
|
|
file_put_contents($schema, '{ "properties": { "custom": { "type": "string" }}}');
|
|
|
|
|
|
|
|
$json = new JsonFile($file);
|
|
|
|
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::LAX_SCHEMA, $schema));
|
|
|
|
|
|
|
|
unlink($file);
|
|
|
|
unlink($schema);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testCustomSchemaValidationStrict(): void
|
2021-06-03 18:15:35 +00:00
|
|
|
{
|
2021-12-10 12:14:04 +00:00
|
|
|
$file = $this->createTempFile();
|
2021-06-03 18:15:35 +00:00
|
|
|
file_put_contents($file, '{ "custom": "property" }');
|
|
|
|
|
2021-12-10 12:14:04 +00:00
|
|
|
$schema = $this->createTempFile();
|
2021-06-03 18:15:35 +00:00
|
|
|
file_put_contents($schema, '{ "properties": { "custom": { "type": "string" }}}');
|
|
|
|
|
|
|
|
$json = new JsonFile($file);
|
|
|
|
|
|
|
|
$this->assertTrue($json->validateSchema(JsonFile::STRICT_SCHEMA, $schema));
|
|
|
|
|
|
|
|
unlink($file);
|
|
|
|
unlink($schema);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectMissingCommaMultiline(): void
|
2012-01-24 14:10:55 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": "barbar"
|
|
|
|
|
|
|
|
"bar": "foo"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
2012-01-24 14:10:55 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testParseErrorDetectMissingColon(): void
|
2012-01-24 14:10:55 +00:00
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": "bar",
|
|
|
|
"bar" "foo"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 3', $json);
|
2012-01-24 14:10:55 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testSimpleJsonString(): void
|
2012-01-16 23:42:30 +00:00
|
|
|
{
|
|
|
|
$data = array('name' => 'composer/composer');
|
|
|
|
$json = '{
|
2012-02-17 09:06:59 +00:00
|
|
|
"name": "composer/composer"
|
2012-01-16 23:42:30 +00:00
|
|
|
}';
|
|
|
|
$this->assertJsonFormat($json, $data);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testTrailingBackslash(): void
|
2012-01-19 00:01:56 +00:00
|
|
|
{
|
|
|
|
$data = array('Metadata\\' => 'src/');
|
|
|
|
$json = '{
|
2012-02-17 09:06:59 +00:00
|
|
|
"Metadata\\\\": "src/"
|
2012-01-19 00:01:56 +00:00
|
|
|
}';
|
|
|
|
$this->assertJsonFormat($json, $data);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testFormatEmptyArray(): void
|
2012-04-29 19:04:18 +00:00
|
|
|
{
|
|
|
|
$data = array('test' => array(), 'test2' => new \stdClass);
|
2014-10-04 16:00:12 +00:00
|
|
|
$json = '{
|
2014-06-29 10:26:48 +00:00
|
|
|
"test": [],
|
|
|
|
"test2": {}
|
|
|
|
}';
|
2012-04-29 19:04:18 +00:00
|
|
|
$this->assertJsonFormat($json, $data);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testEscape(): void
|
2012-02-15 10:59:39 +00:00
|
|
|
{
|
|
|
|
$data = array("Metadata\\\"" => 'src/');
|
|
|
|
$json = '{
|
2012-02-17 09:06:59 +00:00
|
|
|
"Metadata\\\\\\"": "src/"
|
2012-02-15 10:59:39 +00:00
|
|
|
}';
|
|
|
|
|
|
|
|
$this->assertJsonFormat($json, $data);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUnicode(): void
|
2012-02-15 10:59:39 +00:00
|
|
|
{
|
|
|
|
$data = array("Žluťoučký \" kůň" => "úpěl ďábelské ódy za €");
|
|
|
|
$json = '{
|
|
|
|
"Žluťoučký \" kůň": "úpěl ďábelské ódy za €"
|
|
|
|
}';
|
|
|
|
|
|
|
|
$this->assertJsonFormat($json, $data);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testOnlyUnicode(): void
|
2012-02-17 09:06:59 +00:00
|
|
|
{
|
2012-03-09 08:31:51 +00:00
|
|
|
$data = "\\/ƌ";
|
|
|
|
|
2022-01-04 10:15:06 +00:00
|
|
|
$this->assertJsonFormat('"\\\\\\/ƌ"', $data, JSON_UNESCAPED_UNICODE);
|
2012-03-09 08:31:51 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testEscapedSlashes(): void
|
2012-03-09 08:31:51 +00:00
|
|
|
{
|
|
|
|
$data = "\\/foo";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"\\\\\\/foo"', $data, 0);
|
2012-02-17 09:06:59 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testEscapedBackslashes(): void
|
2013-02-18 16:27:43 +00:00
|
|
|
{
|
|
|
|
$data = "a\\b";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"a\\\\b"', $data, 0);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testEscapedUnicode(): void
|
2012-02-17 09:06:59 +00:00
|
|
|
{
|
|
|
|
$data = "ƌ";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"\\u018c"', $data, 0);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDoubleEscapedUnicode(): void
|
2014-02-19 13:17:23 +00:00
|
|
|
{
|
|
|
|
$jsonFile = new JsonFile('composer.json');
|
|
|
|
$data = array("Zdjęcia","hjkjhl\\u0119kkjk");
|
|
|
|
$encodedData = $jsonFile->encode($data);
|
|
|
|
$doubleEncodedData = $jsonFile->encode(array('t' => $encodedData));
|
|
|
|
|
|
|
|
$decodedData = json_decode($doubleEncodedData, true);
|
|
|
|
$doubleData = json_decode($decodedData['t'], true);
|
|
|
|
$this->assertEquals($data, $doubleData);
|
|
|
|
}
|
|
|
|
|
2021-10-27 09:37:51 +00:00
|
|
|
/**
|
|
|
|
* @param string $text
|
|
|
|
* @param string $json
|
|
|
|
* @return void
|
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
private function expectParseException(string $text, string $json): void
|
2011-10-31 13:43:41 +00:00
|
|
|
{
|
|
|
|
try {
|
2015-05-05 16:13:16 +00:00
|
|
|
$result = JsonFile::parseJson($json);
|
|
|
|
$this->fail(sprintf("Parsing should have failed but didn't.\nExpected:\n\"%s\"\nFor:\n\"%s\"\nGot:\n\"%s\"", $text, $json, var_export($result, true)));
|
2012-07-03 12:19:19 +00:00
|
|
|
} catch (ParsingException $e) {
|
2020-09-10 15:21:11 +00:00
|
|
|
$this->assertStringContainsString($text, $e->getMessage());
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-16 23:42:30 +00:00
|
|
|
|
2021-10-27 09:37:51 +00:00
|
|
|
/**
|
|
|
|
* @param string $json
|
|
|
|
* @param mixed $data
|
2021-10-27 14:18:24 +00:00
|
|
|
* @param int|null $options
|
2021-10-27 09:37:51 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
private function assertJsonFormat(string $json, $data, ?int $options = null): void
|
2012-01-16 23:42:30 +00:00
|
|
|
{
|
|
|
|
$file = new JsonFile('composer.json');
|
|
|
|
|
2015-05-28 13:42:19 +00:00
|
|
|
$json = str_replace("\r", '', $json);
|
2012-02-17 09:06:59 +00:00
|
|
|
if (null === $options) {
|
|
|
|
$this->assertEquals($json, $file->encode($data));
|
|
|
|
} else {
|
|
|
|
$this->assertEquals($json, $file->encode($data, $options));
|
|
|
|
}
|
2012-01-16 23:42:30 +00:00
|
|
|
}
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|