2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2014-01-30 17:39:13 +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 Composer\Json\JsonValidationException;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2014-01-30 17:39:13 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class JsonValidationExceptionTest extends TestCase
|
2014-01-30 17:39:13 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider errorProvider
|
2022-02-18 13:45:08 +00:00
|
|
|
* @param string[] $errors
|
|
|
|
* @param string[] $expectedErrors
|
2014-01-30 17:39:13 +00:00
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
public function testGetErrors(string $message, array $errors, string $expectedMessage, array $expectedErrors): void
|
2014-01-30 17:39:13 +00:00
|
|
|
{
|
|
|
|
$object = new JsonValidationException($message, $errors);
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertSame($expectedMessage, $object->getMessage());
|
|
|
|
self::assertSame($expectedErrors, $object->getErrors());
|
2014-01-30 17:39:13 +00:00
|
|
|
}
|
2014-06-10 14:02:44 +00:00
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGetErrorsWhenNoErrorsProvided(): void
|
2014-01-30 17:39:13 +00:00
|
|
|
{
|
|
|
|
$object = new JsonValidationException('test message');
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals([], $object->getErrors());
|
2014-01-30 17:39:13 +00:00
|
|
|
}
|
2014-06-10 14:02:44 +00:00
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
public static function errorProvider(): array
|
2014-01-30 17:39:13 +00:00
|
|
|
{
|
2022-08-17 12:20:07 +00:00
|
|
|
return [
|
|
|
|
['test message', [], 'test message', []],
|
|
|
|
['', ['foo'], '', ['foo']],
|
|
|
|
];
|
2014-01-30 17:39:13 +00:00
|
|
|
}
|
|
|
|
}
|