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

115 lines
4.3 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2015-02-10 11:46:11 +00:00
/*
* 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(): void
{
2022-08-17 12:20:07 +00:00
$expectedError = [
[
'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]+)*$',
2022-08-17 12:20:07 +00:00
],
];
$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));
}
public function testOptionalAbandonedProperty(): void
2015-11-21 07:58:52 +00:00
{
$json = '{"name": "vendor/package", "description": "description", "abandoned": true}';
2015-11-21 07:58:52 +00:00
$this->assertTrue($this->check($json));
}
public function testRequireTypes(): void
{
$json = '{"name": "vendor/package", "description": "description", "require": {"a": ["b"]} }';
2022-08-17 12:20:07 +00:00
$this->assertEquals([
['property' => 'require.a', 'message' => 'Array value found, but a string is required', 'constraint' => 'type'],
], $this->check($json));
}
public function testMinimumStabilityValues(): void
2015-02-10 11:46:11 +00:00
{
2022-08-17 12:20:07 +00:00
$expectedError = [
[
2015-02-10 11:46:11 +00:00
'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',
2022-08-17 12:20:07 +00:00
'enum' => ['dev', 'alpha', 'beta', 'rc', 'RC', 'stable'],
],
];
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');
}
/**
* @return mixed
*/
2022-02-22 15:47:09 +00:00
private function check(string $json)
2015-02-10 11:46:11 +00:00
{
$validator = new Validator();
2022-08-17 12:20:07 +00:00
$validator->check(json_decode($json), (object) ['$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;
}
}