2014-01-30 17:39:13 +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 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
|
2021-11-02 13:32:09 +00:00
|
|
|
* @param string|null $message
|
|
|
|
* @param string[]|null $errors
|
2014-01-30 17:39:13 +00:00
|
|
|
*/
|
|
|
|
public function testGetErrors($message, $errors)
|
|
|
|
{
|
|
|
|
$object = new JsonValidationException($message, $errors);
|
|
|
|
$this->assertEquals($message, $object->getMessage());
|
|
|
|
$this->assertEquals($errors, $object->getErrors());
|
|
|
|
}
|
2014-06-10 14:02:44 +00:00
|
|
|
|
2014-01-30 17:39:13 +00:00
|
|
|
public function testGetErrorsWhenNoErrorsProvided()
|
|
|
|
{
|
|
|
|
$object = new JsonValidationException('test message');
|
|
|
|
$this->assertEquals(array(), $object->getErrors());
|
|
|
|
}
|
2014-06-10 14:02:44 +00:00
|
|
|
|
2014-01-30 17:39:13 +00:00
|
|
|
public function errorProvider()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('test message', array()),
|
2015-09-28 09:51:14 +00:00
|
|
|
array(null, null),
|
2014-01-30 17:39:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|