mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
68 lines
1.9 KiB
PHP
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),
|
|
);
|
|
}
|
|
}
|