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

64 lines
1.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;
/**
* @group rule
* @covers Respect\Validation\Rules\Call
* @covers Respect\Validation\Exceptions\CallException
*/
class CallTest extends TestCase
{
public function thisIsASampleCallbackUsedInsideThisTest()
{
return [];
}
public function testCallbackValidatorShouldAcceptEmptyString()
{
$v = new Call('str_split', new ArrayVal());
$this->assertTrue($v->assert(''));
}
public function testCallbackValidatorShouldAcceptStringWithFunctionName()
{
$v = new Call('str_split', new ArrayVal());
$this->assertTrue($v->assert('test'));
}
public function testCallbackValidatorShouldAcceptArrayCallbackDefinition()
{
$v = new Call([$this, 'thisIsASampleCallbackUsedInsideThisTest'], new ArrayVal());
$this->assertTrue($v->assert('test'));
}
public function testCallbackValidatorShouldAcceptClosures()
{
$v = new Call(function () {
return [];
}, new ArrayVal());
$this->assertTrue($v->assert('test'));
}
/**
* @expectedException Respect\Validation\Exceptions\CallException
*/
public function testCallbackFailedShouldThrowCallException()
{
$v = new Call('strrev', new ArrayVal());
$this->assertFalse($v->validate('test'));
$this->assertFalse($v->assert('test'));
}
}