1
0
Fork 0
composer/tests/Composer/Test/Json/ComposerSchemaTest.php

116 lines
4.3 KiB
PHP
Raw Normal View History

2015-02-10 11:46:11 +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;
use JsonSchema\Validator;
2020-02-07 03:18:45 +00:00
use Composer\Test\TestCase;
2015-02-10 11:46:11 +00:00
/**
* @author Rob Bast <rob.bast@gmail.com>
*/
class ComposerSchemaTest extends TestCase
2015-02-10 11:46:11 +00:00
{
public function testNamePattern()
{
$expectedError = array(
array(
'property' => 'name',
2022-06-01 19:23:07 +00:00
'message' => 'Does not match the regex pattern ^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]|-{1,2})?[a-z0-9]+)*$',
'constraint' => 'pattern',
2022-06-01 19:23:07 +00:00
'pattern' => '^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]|-{1,2})?[a-z0-9]+)*$',
),
);
$json = '{"name": "vendor/-pack__age", "description": "description"}';
$this->assertEquals($expectedError, $this->check($json));
$json = '{"name": "Vendor/Package", "description": "description"}';
$this->assertEquals($expectedError, $this->check($json));
}
2015-11-21 07:58:52 +00:00
public function testOptionalAbandonedProperty()
{
$json = '{"name": "vendor/package", "description": "description", "abandoned": true}';
2015-11-21 07:58:52 +00:00
$this->assertTrue($this->check($json));
}
public function testRequireTypes()
{
$json = '{"name": "vendor/package", "description": "description", "require": {"a": ["b"]} }';
$this->assertEquals(array(
array('property' => 'require.a', 'message' => 'Array value found, but a string is required', 'constraint' => 'type'),
), $this->check($json));
}
2015-02-10 11:46:11 +00:00
public function testMinimumStabilityValues()
{
2021-05-20 09:04:19 +00:00
$expectedError = array(
2015-02-10 11:46:11 +00:00
array(
'property' => 'minimum-stability',
2021-05-20 09:04:19 +00:00
'message' => 'Does not have a value in the enumeration ["dev","alpha","beta","rc","RC","stable"]',
'constraint' => 'enum',
'enum' => array('dev', 'alpha', 'beta', 'rc', 'RC', 'stable'),
2015-02-10 11:46:11 +00:00
),
2021-05-20 09:04:19 +00:00
);
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "" }';
$this->assertEquals($expectedError, $this->check($json), 'empty string');
2015-02-10 11:46:11 +00:00
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "dummy" }';
2021-05-20 09:04:19 +00:00
$this->assertEquals($expectedError, $this->check($json), 'dummy');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "devz" }';
$this->assertEquals($expectedError, $this->check($json), 'devz');
2015-02-10 11:46:11 +00:00
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "dev" }';
$this->assertTrue($this->check($json), 'dev');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "alpha" }';
$this->assertTrue($this->check($json), 'alpha');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "beta" }';
$this->assertTrue($this->check($json), 'beta');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "rc" }';
$this->assertTrue($this->check($json), 'rc lowercase');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "RC" }';
$this->assertTrue($this->check($json), 'rc uppercase');
$json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "stable" }';
$this->assertTrue($this->check($json), 'stable');
}
/**
* @param string $json
* @return mixed
*/
2015-02-10 11:46:11 +00:00
private function check($json)
{
$validator = new Validator();
$validator->check(json_decode($json), (object) array('$ref' => 'file://' . __DIR__ . '/../../../../res/composer-schema.json'));
2015-02-10 11:46:11 +00:00
if (!$validator->isValid()) {
$errors = $validator->getErrors();
2017-05-22 06:01:51 +00:00
// remove justinrainbow/json-schema 3.0/5.2 props so it works with all versions
foreach ($errors as &$err) {
unset($err['pointer'], $err['context']);
}
return $errors;
2015-02-10 11:46:11 +00:00
}
return true;
}
}