101 lines
2.4 KiB
PHP
101 lines
2.4 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\Prnt
|
|
* @covers Respect\Validation\Exceptions\PrntException
|
|
*/
|
|
class PrntTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerForValidPrint
|
|
*/
|
|
public function testValidDataWithPrintCharsShouldReturnTrue($validPrint, $additional = '')
|
|
{
|
|
$validator = new Prnt($additional);
|
|
$this->assertTrue($validator->validate($validPrint));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidPrint
|
|
* @expectedException Respect\Validation\Exceptions\PrntException
|
|
*/
|
|
public function testInvalidPrintShouldFailAndThrowPrntException($invalidPrint, $additional = '')
|
|
{
|
|
$validator = new Prnt($additional);
|
|
$this->assertFalse($validator->validate($invalidPrint));
|
|
$this->assertFalse($validator->assert($invalidPrint));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerForInvalidParams
|
|
* @expectedException Respect\Validation\Exceptions\ComponentException
|
|
*/
|
|
public function testInvalidConstructorParamsShouldThrowComponentExceptionUponInstantiation($additional)
|
|
{
|
|
$validator = new Prnt($additional);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerAdditionalChars
|
|
*/
|
|
public function testAdditionalCharsShouldBeRespected($additional, $query)
|
|
{
|
|
$validator = new Prnt($additional);
|
|
$this->assertTrue($validator->validate($query));
|
|
}
|
|
|
|
public function providerAdditionalChars()
|
|
{
|
|
return [
|
|
["\t\n", "\t\n "],
|
|
["\v\r", "\v\r "],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidParams()
|
|
{
|
|
return [
|
|
[new \stdClass()],
|
|
[[]],
|
|
[0x2],
|
|
];
|
|
}
|
|
|
|
public function providerForValidPrint()
|
|
{
|
|
return [
|
|
[' '],
|
|
['LKA#@%.54'],
|
|
['foobar'],
|
|
['16-50'],
|
|
['123'],
|
|
['foo bar'],
|
|
['#$%&*_'],
|
|
];
|
|
}
|
|
|
|
public function providerForInvalidPrint()
|
|
{
|
|
return [
|
|
[''],
|
|
[null],
|
|
['foo'.chr(7).'bar'],
|
|
['foo'.chr(10).'bar'],
|
|
];
|
|
}
|
|
}
|