respect-validation/tests/unit/Rules/StartsWithTest.php
2015-08-16 15:00:05 -03:00

68 lines
1.9 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;
/**
* @group rule
* @covers Respect\Validation\Rules\StartsWith
* @covers Respect\Validation\Exceptions\StartsWithException
*/
class StartsWithTest extends \PHPUnit_Framework_TestCase
{
/**
* @dataProvider providerForStartsWith
*/
public function testStartsWith($start, $input)
{
$v = new StartsWith($start);
$this->assertTrue($v->__invoke($input));
$this->assertTrue($v->check($input));
$this->assertTrue($v->assert($input));
}
/**
* @dataProvider providerForNotStartsWith
* @expectedException Respect\Validation\Exceptions\StartsWithException
*/
public function testNotStartsWith($start, $input, $caseSensitive = false)
{
$v = new StartsWith($start, $caseSensitive);
$this->assertFalse($v->__invoke($input));
$this->assertFalse($v->assert($input));
}
public function providerForStartsWith()
{
return array(
array('foo', ''),
array('foo', array('foo', 'bar')),
array('foo', 'FOObarbaz'),
array('foo', 'foobarbaz'),
array('foo', 'foobazfoo'),
array('1', array(1, 2, 3)),
array('1', array('1', 2, 3), true),
);
}
public function providerForNotStartsWith()
{
return array(
array('bat', array('foo', 'bar')),
array('foo', 'barfaabaz'),
array('foo', 'FOObarbaz', true),
array('foo', 'faabarbaz'),
array('foo', 'baabazfaa'),
array('foo', 'baafoofaa'),
array('1', array(1, '1', 3), true),
);
}
}