mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 22:35:45 +01:00
* `ExceptionInterface`: all Respect\Validation\Exceptions implement through inheritance
* `ValidatorExceptionInterface`: implemented only by AllOfException. This allows the end users to know when there has been a Validator exception rather than just any of our exceptions.
Fixed formatting issues
Created two new exception types
* Created ValidationExceptionInterface
* Created NestedValidationExceptionInterface which extends ValidationExceptionInterface
* Renamed from ValidatorExceptionInterface
* ValidationException implements ValidationExceptionInterface and ValidationExceptionTest checks for the implementation.
* AbstractNestedException implements NestedValidationExceptionInterface and AbstractNestedExceptionTest checks for the implementation.
* CheckExceptionsTest now checks all Rule exceptions to make sure they implement ValidationExceptionInterface
* ValidatorTest now contains test that shows that only ValidationExceptionInterface can be used reliably with `::check()`
* Updated documentation for new exception types
* Reworked examples to show how to catch the exception interfaces
Minor changes in readme.md and ExceptionInterfaces
* Removed `import` statements (hahaha)
* Renamed `$e` to `$exception`
* `ValidationExceptionInterface` now extends `ExceptionInterface`. Changed `ValidationException` to match
113 lines
3.3 KiB
PHP
113 lines
3.3 KiB
PHP
<?php
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class ValidationExceptionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testItImplementsValidationExceptionInterface()
|
|
{
|
|
$validationException = new ValidationException();
|
|
$this->assertInstanceOf('Respect\Validation\Exceptions\ValidationExceptionInterface', $validationException);
|
|
}
|
|
|
|
public function testItDoesNotImplementNestedValidationExceptionInterface()
|
|
{
|
|
$validationException = new ValidationException();
|
|
$this->assertNotInstanceOf('Respect\Validation\Exceptions\NestedValidationExceptionInterface',
|
|
$validationException);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForFormat
|
|
*/
|
|
public function testFormatShouldReplacePlaceholdersProperly($template, $result, $vars)
|
|
{
|
|
$this->assertEquals(
|
|
$result,
|
|
ValidationException::format($template, $vars)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForStringify
|
|
*/
|
|
public function testStringifyShouldConvertStringsProperly($input, $result)
|
|
{
|
|
$this->assertEquals(
|
|
$result,
|
|
ValidationException::stringify($input)
|
|
);
|
|
}
|
|
|
|
public function testGetMainMessageShouldApplyTemplatePlaceholders()
|
|
{
|
|
$sampleValidationException = new ValidationException();
|
|
$sampleValidationException->configure('foo', array('bar' => 1, 'baz' => 2));
|
|
$sampleValidationException->setTemplate('{{name}} {{bar}} {{baz}}');
|
|
$this->assertEquals(
|
|
'foo 1 2',
|
|
$sampleValidationException->getMainMessage()
|
|
);
|
|
}
|
|
|
|
public function testSettingTemplates()
|
|
{
|
|
$x = new ValidationException();
|
|
$x->configure('bar');
|
|
$x->setTemplate('foo');
|
|
$this->assertEquals('foo', $x->getTemplate());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForStringify
|
|
*/
|
|
public function testSettingExceptionParamsMakesThemAvailable($input, $expected)
|
|
{
|
|
$x = new ValidationException;
|
|
$x->setParam('foo', $input);
|
|
$this->assertEquals(
|
|
$expected,
|
|
$x->getParam('foo')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @link https://github.com/Respect/Validation/pull/214
|
|
*/
|
|
public function testFixedConstEqualsException()
|
|
{
|
|
$this->assertTrue(EqualsException::EQUALS === 0);
|
|
$this->assertTrue(EqualsException::IDENTICAL === 1);
|
|
}
|
|
|
|
public function providerForStringify()
|
|
{
|
|
return array(
|
|
array('foo', 'foo'),
|
|
array(123, '123'),
|
|
array(array(), "Array"),
|
|
array(new \stdClass, "Object of class stdClass"),
|
|
array($x = new \DateTime, $x->format('Y-m-d H:i:s')),
|
|
);
|
|
}
|
|
|
|
public function providerForFormat()
|
|
{
|
|
return array(
|
|
array(
|
|
'{{foo}} {{bar}} {{baz}}',
|
|
'hello world respect',
|
|
array('foo' => 'hello', 'bar' => 'world', 'baz' => 'respect')
|
|
),
|
|
array(
|
|
'{{foo}} {{bar}} {{baz}}',
|
|
'hello {{bar}} respect',
|
|
array('foo' => 'hello', 'baz' => 'respect')
|
|
),
|
|
array(
|
|
'{{foo}} {{bar}} {{baz}}',
|
|
'hello {{bar}} respect',
|
|
array('foo' => 'hello', 'bot' => 111, 'baz' => 'respect')
|
|
)
|
|
);
|
|
}
|
|
}
|