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;
|
|
|
|
|
|
|
|
class JsonFileTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function testParseErrorDetectExtraComma()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2011-11-01 13:13:22 +00:00
|
|
|
public function testParseErrorDetectExtraCommaInArray()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2011-11-01 15:02:56 +00:00
|
|
|
public function testParseErrorDetectUnescapedBackslash()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2011-11-05 22:51:35 +00:00
|
|
|
public function testParseErrorSkipsEscapedBackslash()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2011-10-31 13:43:41 +00:00
|
|
|
public function testParseErrorDetectSingleQuotes()
|
|
|
|
{
|
2015-07-16 07:21:13 +00:00
|
|
|
if (defined('JSON_PARSER_NOTSTRICT')) {
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseErrorDetectMissingQuotes()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseErrorDetectArrayAsHash()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseErrorDetectMissingComma()
|
|
|
|
{
|
|
|
|
$json = '{
|
|
|
|
"foo": "bar"
|
|
|
|
"bar": "foo"
|
|
|
|
}';
|
2011-12-09 11:16:17 +00:00
|
|
|
$this->expectParseException('Parse error on line 2', $json);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSchemaValidation()
|
|
|
|
{
|
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());
|
2011-10-31 13:43:41 +00:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:10:55 +00:00
|
|
|
public function testParseErrorDetectMissingCommaMultiline()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseErrorDetectMissingColon()
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2012-01-16 23:42:30 +00:00
|
|
|
public function testSimpleJsonString()
|
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2012-01-19 00:01:56 +00:00
|
|
|
public function testTrailingBackslash()
|
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2012-04-29 19:04:18 +00:00
|
|
|
public function testFormatEmptyArray()
|
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2012-02-15 10:59:39 +00:00
|
|
|
public function testEscape()
|
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUnicode()
|
|
|
|
{
|
2015-05-05 18:18:24 +00:00
|
|
|
if (!function_exists('mb_convert_encoding') && PHP_VERSION_ID < 50400) {
|
2012-02-18 10:36:11 +00:00
|
|
|
$this->markTestSkipped('Test requires the mbstring extension');
|
|
|
|
}
|
2012-03-09 08:31:51 +00:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-03-09 08:31:51 +00:00
|
|
|
public function testOnlyUnicode()
|
2012-02-17 09:06:59 +00:00
|
|
|
{
|
2015-05-05 18:18:24 +00:00
|
|
|
if (!function_exists('mb_convert_encoding') && PHP_VERSION_ID < 50400) {
|
2012-02-18 10:36:11 +00:00
|
|
|
$this->markTestSkipped('Test requires the mbstring extension');
|
|
|
|
}
|
2012-02-17 09:06:59 +00:00
|
|
|
|
2012-03-09 08:31:51 +00:00
|
|
|
$data = "\\/ƌ";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"\\\\\\/ƌ"', $data, JsonFile::JSON_UNESCAPED_UNICODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEscapedSlashes()
|
|
|
|
{
|
|
|
|
$data = "\\/foo";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"\\\\\\/foo"', $data, 0);
|
2012-02-17 09:06:59 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 16:27:43 +00:00
|
|
|
public function testEscapedBackslashes()
|
|
|
|
{
|
|
|
|
$data = "a\\b";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"a\\\\b"', $data, 0);
|
|
|
|
}
|
|
|
|
|
2012-02-17 09:06:59 +00:00
|
|
|
public function testEscapedUnicode()
|
|
|
|
{
|
|
|
|
$data = "ƌ";
|
|
|
|
|
|
|
|
$this->assertJsonFormat('"\\u018c"', $data, 0);
|
|
|
|
}
|
|
|
|
|
2014-02-19 13:17:23 +00:00
|
|
|
public function testDoubleEscapedUnicode()
|
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2011-10-31 13:43:41 +00:00
|
|
|
private function expectParseException($text, $json)
|
|
|
|
{
|
|
|
|
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) {
|
2011-10-31 13:43:41 +00:00
|
|
|
$this->assertContains($text, $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2012-01-16 23:42:30 +00:00
|
|
|
|
2012-02-17 09:06:59 +00:00
|
|
|
private function assertJsonFormat($json, $data, $options = null)
|
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
|
|
|
}
|