tao-test/app/vendor/respect/validation/tests/unit/Rules/KeyNestedTest.php

186 lines
4.7 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
use Respect\Validation\TestCase;
use ArrayObject;
/**
* @group rule
* @covers Respect\Validation\Rules\KeyNested
* @covers Respect\Validation\Exceptions\KeyNestedException
*/
class KeyNestedTest extends TestCase
{
public function testArrayWithPresentKeysWillReturnTrueForFullPathValidator()
{
$array = [
'bar' => [
'foo' => [
'baz' => 'hello world!',
],
'foooo' => [
'boooo' => 321,
],
],
];
$rule = new KeyNested('bar.foo.baz');
$this->assertTrue($rule->validate($array));
}
public function testArrayWithNumericKeysWillReturnTrueForFullPathValidator()
{
$array = [
0 => 'Zero, the hero!',
];
$rule = new KeyNested(0, new Equals('Zero, the hero!'));
$this->assertTrue($rule->check($array));
}
public function testArrayWithPresentKeysWillReturnTrueForHalfPathValidator()
{
$array = [
'bar' => [
'foo' => [
'baz' => 'hello world!',
],
'foooo' => [
'boooo' => 321,
],
],
];
$rule = new KeyNested('bar.foo');
$this->assertTrue($rule->validate($array));
}
public function testObjectWithPresentPropertiesWillReturnTrueForDirtyPathValidator()
{
$object = (object) [
'bar' => (object) [
'foo' => (object) [
'baz' => 'hello world!',
],
'foooo' => (object) [
'boooo' => 321,
],
],
];
$rule = new KeyNested('bar.foooo.');
$this->assertTrue($rule->validate($object));
}
public function testEmptyInputMustReturnFalse()
{
$rule = new KeyNested('bar.foo.baz');
$this->assertFalse($rule->validate(''));
}
/**
* @expectedException Respect\Validation\Exceptions\KeyNestedException
*/
public function testEmptyInputMustNotAssert()
{
$rule = new KeyNested('bar.foo.baz');
$rule->assert('');
}
/**
* @expectedException Respect\Validation\Exceptions\KeyNestedException
*/
public function testEmptyInputMustNotCheck()
{
$rule = new KeyNested('bar.foo.baz');
$rule->check('');
}
public function testArrayWithEmptyKeyShouldReturnTrue()
{
$rule = new KeyNested('emptyKey');
$input = ['emptyKey' => ''];
$this->assertTrue($rule->validate($input));
}
/**
* @expectedException Respect\Validation\Exceptions\KeyNestedException
*/
public function testArrayWithAbsentKeyShouldThrowNestedKeyException()
{
$validator = new KeyNested('bar.bar');
$object = [
'baraaaaaa' => [
'bar' => 'foo',
],
];
$this->assertTrue($validator->assert($object));
}
/**
* @expectedException Respect\Validation\Exceptions\KeyNestedException
*/
public function testNotArrayShouldThrowKeyException()
{
$validator = new KeyNested('baz.bar');
$object = 123;
$this->assertFalse($validator->assert($object));
}
public function testExtraValidatorShouldValidateKey()
{
$subValidator = new Length(3, 7);
$validator = new KeyNested('bar.foo.baz', $subValidator);
$object = [
'bar' => [
'foo' => [
'baz' => 'example',
],
],
];
$this->assertTrue($validator->assert($object));
}
public function testNotMandatoryExtraValidatorShouldPassWithAbsentKey()
{
$subValidator = new Length(1, 3);
$validator = new KeyNested('bar.rab', $subValidator, false);
$object = new \stdClass();
$this->assertTrue($validator->validate($object));
}
public function testArrayAccessWithPresentKeysWillReturnTrue()
{
$arrayAccess = new ArrayObject([
'bar' => [
'foo' => [
'baz' => 'hello world!',
],
'foooo' => [
'boooo' => 321,
],
],
]);
$rule = new KeyNested('bar.foo.baz');
$this->assertTrue($rule->validate($arrayAccess));
}
}