109 lines
2.7 KiB
PHP
109 lines
2.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\Consonant
|
|
* @covers Respect\Validation\Exceptions\ConsonantException
|
|
*/
|
|
class ConsonantTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerForValidConsonants
|
|
*/
|
|
public function testValidDataWithConsonantsShouldReturnTrue($validConsonants, $additional = '')
|
|
{
|
|
$validator = new Consonant($additional);
|
|
$this->assertTrue($validator->validate($validConsonants));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidConsonants
|
|
* @expectedException Respect\Validation\Exceptions\ConsonantException
|
|
*/
|
|
public function testInvalidConsonantsShouldFailAndThrowConsonantException($invalidConsonants, $additional = '')
|
|
{
|
|
$validator = new Consonant($additional);
|
|
$this->assertFalse($validator->validate($invalidConsonants));
|
|
$this->assertFalse($validator->assert($invalidConsonants));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidParams
|
|
* @expectedException Respect\Validation\Exceptions\ComponentException
|
|
*/
|
|
public function testInvalidConstructorParamsShouldThrowComponentExceptionUponInstantiation($additional)
|
|
{
|
|
$validator = new Consonant($additional);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerAdditionalChars
|
|
*/
|
|
public function testAdditionalCharsShouldBeRespected($additional, $query)
|
|
{
|
|
$validator = new Consonant($additional);
|
|
$this->assertTrue($validator->validate($query));
|
|
}
|
|
|
|
public function providerAdditionalChars()
|
|
{
|
|
return [
|
|
['!@#$%^&*(){}', '!@#$%^&*(){} bc dfg'],
|
|
['[]?+=/\\-_|"\',<>.', "[]?+=/\\-_|\"',<>. \t \n bc dfg"],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidParams()
|
|
{
|
|
return [
|
|
[new \stdClass()],
|
|
[[]],
|
|
[0x2],
|
|
];
|
|
}
|
|
|
|
public function providerForValidConsonants()
|
|
{
|
|
return [
|
|
['b'],
|
|
['c'],
|
|
['d'],
|
|
['w'],
|
|
['y'],
|
|
['y',''],
|
|
['bcdfghklmnp'],
|
|
['bcdfghklm np'],
|
|
['qrst'],
|
|
["\nz\t"],
|
|
['zbcxwyrspq'],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidConsonants()
|
|
{
|
|
return [
|
|
[''],
|
|
[null],
|
|
['16'],
|
|
['aeiou'],
|
|
['a'],
|
|
['Foo'],
|
|
[-50],
|
|
['basic'],
|
|
];
|
|
}
|
|
}
|