mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 23:05:45 +01:00
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
class EachTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testValidatorShouldPassIfEveryArrayItemPass()
|
|
{
|
|
$v = new Each(new NotEmpty());
|
|
$result = $v->validate(array(1, 2, 3, 4, 5));
|
|
$this->assertTrue($result);
|
|
$result = $v->check(array(1, 2, 3, 4, 5));
|
|
$this->assertTrue($result);
|
|
$result = $v->assert(array(1, 2, 3, 4, 5));
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testValidatorShouldPassIfEveryArrayItemAndKeyPass()
|
|
{
|
|
$v = new Each(new Alpha(), new Int());
|
|
$result = $v->validate(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
$result = $v->check(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
$result = $v->assert(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testValidatorShouldPassWithOnlyKeyValidation()
|
|
{
|
|
$v = new Each(null, new Int());
|
|
$result = $v->validate(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
$result = $v->check(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
$result = $v->assert(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Respect\Validation\Exceptions\EachException
|
|
*/
|
|
public function testValidatorShouldNotPassWithOnlyKeyValidation()
|
|
{
|
|
$v = new Each(null, new String());
|
|
$result = $v->assert(array('a', 'b', 'c', 'd', 'e'));
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testNotTraversableValidatorShouldFail()
|
|
{
|
|
$v = new Each(new NotEmpty());
|
|
$result = $v->validate(null);
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
public function testValidatorShouldFailOnInvalidItem()
|
|
{
|
|
$v = new Each(new NotEmpty());
|
|
$result = $v->validate(array('', 2, 3, 4, 5));
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Respect\Validation\Exceptions\EachException
|
|
*/
|
|
public function testAssertShouldFailOnInvalidItem()
|
|
{
|
|
$v = new Each(new Int());
|
|
$result = $v->assert(array('a', 2, 3, 4, 5));
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Respect\Validation\Exceptions\EachException
|
|
*/
|
|
public function testAssertShouldFailOnNonTraversable()
|
|
{
|
|
$v = new Each(new NotEmpty());
|
|
$result = $v->assert(123);
|
|
$this->assertFalse($result);
|
|
}
|
|
}
|
|
|