tao-test/app/vendor/respect/validation/tests/unit/Rules/LowercaseTest.php

69 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;
use Respect\Validation\TestCase;
/**
* @group rule
* @covers Respect\Validation\Rules\Lowercase
* @covers Respect\Validation\Exceptions\LowercaseException
*/
class LowercaseTest extends TestCase
{
/**
* @dataProvider providerForValidLowercase
*/
public function testValidLowercaseShouldReturnTrue($input)
{
$lowercase = new Lowercase();
$this->assertTrue($lowercase->__invoke($input));
$this->assertTrue($lowercase->assert($input));
$this->assertTrue($lowercase->check($input));
}
/**
* @dataProvider providerForInvalidLowercase
* @expectedException Respect\Validation\Exceptions\LowercaseException
*/
public function testInvalidLowercaseShouldThrowException($input)
{
$lowercase = new Lowercase();
$this->assertFalse($lowercase->__invoke($input));
$this->assertFalse($lowercase->assert($input));
}
public function providerForValidLowercase()
{
return [
[''],
['lowercase'],
['lowercase-with-dashes'],
['lowercase with spaces'],
['lowercase with numbers 123'],
['lowercase with specials characters like ã ç ê'],
['with specials characters like # $ % & * +'],
['τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός'],
];
}
public function providerForInvalidLowercase()
{
return [
['UPPERCASE'],
['CamelCase'],
['First Character Uppercase'],
['With Numbers 1 2 3'],
];
}
}