117 lines
3.0 KiB
PHP
117 lines
3.0 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\Alpha
|
|
* @covers Respect\Validation\Exceptions\AlphaException
|
|
*/
|
|
class AlphaTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerForValidAlpha
|
|
*/
|
|
public function testValidAlphanumericCharsShouldReturnTrue($validAlpha, $additional)
|
|
{
|
|
$validator = new Alpha($additional);
|
|
$this->assertTrue($validator->validate($validAlpha));
|
|
$this->assertTrue($validator->check($validAlpha));
|
|
$this->assertTrue($validator->assert($validAlpha));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidAlpha
|
|
* @expectedException Respect\Validation\Exceptions\AlphaException
|
|
*/
|
|
public function testInvalidAlphanumericCharsShouldThrowAlphaException($invalidAlpha, $additional)
|
|
{
|
|
$validator = new Alpha($additional);
|
|
$this->assertFalse($validator->validate($invalidAlpha));
|
|
$this->assertFalse($validator->assert($invalidAlpha));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidParams
|
|
* @expectedException Respect\Validation\Exceptions\ComponentException
|
|
*/
|
|
public function testInvalidConstructorParamsShouldThrowComponentException($additional)
|
|
{
|
|
$validator = new Alpha($additional);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerAdditionalChars
|
|
*/
|
|
public function testAdditionalCharsShouldBeRespected($additional, $query)
|
|
{
|
|
$validator = new Alpha($additional);
|
|
$this->assertTrue($validator->validate($query));
|
|
}
|
|
|
|
public function providerAdditionalChars()
|
|
{
|
|
return [
|
|
['!@#$%^&*(){}', '!@#$%^&*(){} abc'],
|
|
['[]?+=/\\-_|"\',<>.', "[]?+=/\\-_|\"',<>. \t \n abc"],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidParams()
|
|
{
|
|
return [
|
|
[new \stdClass()],
|
|
[[]],
|
|
[0x2],
|
|
];
|
|
}
|
|
|
|
public function providerForValidAlpha()
|
|
{
|
|
return [
|
|
['alganet', ''],
|
|
['alganet', 'alganet'],
|
|
['0alg-anet0', '0-9'],
|
|
['a', ''],
|
|
["\t", ''],
|
|
["\n", ''],
|
|
['foobar', ''],
|
|
['rubinho_', '_'],
|
|
['google.com', '.'],
|
|
['alganet alganet', ''],
|
|
["\nabc", ''],
|
|
["\tdef", ''],
|
|
["\nabc \t", ''],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidAlpha()
|
|
{
|
|
return [
|
|
['', ''],
|
|
['@#$', ''],
|
|
['_', ''],
|
|
['dgç', ''],
|
|
['122al', ''],
|
|
['122', ''],
|
|
[11123, ''],
|
|
[1e21, ''],
|
|
[0, ''],
|
|
[null, ''],
|
|
[new \stdClass(), ''],
|
|
[[], ''],
|
|
];
|
|
}
|
|
}
|