mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 07:45:45 +01:00
64 lines
2.4 KiB
PHP
64 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Respect\Validation;
|
|
|
|
class ValidatorTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
function test_static_create_should_return_new_validator()
|
|
{
|
|
$this->assertInstanceOf('Respect\Validation\Validator', Validator::create());
|
|
}
|
|
|
|
function test_invalid_rule_class_should_throw_component_exception()
|
|
{
|
|
$this->setExpectedException('Respect\Validation\Exceptions\ComponentException');
|
|
Validator::iDoNotExistSoIShouldThrowException();
|
|
}
|
|
function test_set_template_with_single_validator_should_use_template_as_main_message() {
|
|
try {
|
|
Validator::callback('is_int')->setTemplate('{{name}} is not tasty')->assert('something');
|
|
} catch (\Exception $e) {
|
|
$this->assertEquals('"something" is not tasty', $e->getMainMessage());
|
|
}
|
|
}
|
|
function test_set_template_with_multiple_validators_should_use_template_as_main_message() {
|
|
try {
|
|
Validator::callback('is_int')->between(1,2)->setTemplate('{{name}} is not tasty')->assert('something');
|
|
} catch (\Exception $e) {
|
|
$this->assertEquals('"something" is not tasty', $e->getMainMessage());
|
|
}
|
|
}
|
|
function test_set_template_with_multiple_validators_should_use_template_as_full_message() {
|
|
try {
|
|
Validator::callback('is_string')->between(1,2)->setTemplate('{{name}} is not tasty')->assert('something');
|
|
} catch (\Exception $e) {
|
|
$this->assertEquals('\-"something" is not tasty
|
|
\-"something" must be greater than 1', $e->getFullMessage());
|
|
}
|
|
}
|
|
function test_getFullMessage_should_include_all_validation_messages_in_a_chain() {
|
|
try {
|
|
Validator::string()->length(1,15)->assert('');
|
|
} catch (\Exception $e) {
|
|
$this->assertEquals('\-These rules must pass for ""
|
|
\-"" must have a length between 1 and 15', $e->getFullMessage());
|
|
}
|
|
}
|
|
|
|
function test_not_should_work_by_builder()
|
|
{
|
|
$this->assertFalse(Validator::not(Validator::int())->validate(10));
|
|
}
|
|
function test_country_code()
|
|
{
|
|
$this->assertTrue(Validator::countryCode()->validate('BR'));
|
|
}
|
|
function test_alwaysValid()
|
|
{
|
|
$this->assertTrue(Validator::alwaysValid()->validate('sojdnfjsdnfojsdnfos dfsdofj sodjf '));
|
|
}
|
|
function test_alwaysInvalid()
|
|
{
|
|
$this->assertFalse(Validator::alwaysInvalid()->validate('sojdnfjsdnfojsdnfos dfsdofj sodjf '));
|
|
}
|
|
}
|