tao-test/app/vendor/respect/validation/tests/unit/Rules/UppercaseTest.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\Uppercase
* @covers Respect\Validation\Exceptions\UppercaseException
*/
class UppercaseTest extends TestCase
{
/**
* @dataProvider providerForValidUppercase
*/
public function testValidUppercaseShouldReturnTrue($input)
{
$uppercase = new Uppercase();
$this->assertTrue($uppercase->validate($input));
$this->assertTrue($uppercase->assert($input));
$this->assertTrue($uppercase->check($input));
}
/**
* @dataProvider providerForInvalidUppercase
* @expectedException Respect\Validation\Exceptions\UppercaseException
*/
public function testInvalidUppercaseShouldThrowException($input)
{
$lowercase = new Uppercase();
$this->assertFalse($lowercase->validate($input));
$this->assertFalse($lowercase->assert($input));
}
public function providerForValidUppercase()
{
return [
[''],
['UPPERCASE'],
['UPPERCASE-WITH-DASHES'],
['UPPERCASE WITH SPACES'],
['UPPERCASE WITH NUMBERS 123'],
['UPPERCASE WITH SPECIALS CHARACTERS LIKE Ã Ç Ê'],
['WITH SPECIALS CHARACTERS LIKE # $ % & * +'],
['ΤΆΧΙΣΤΗ ΑΛΏΠΗΞ ΒΑΦΉΣ ΨΗΜΈΝΗ ΓΗ, ΔΡΑΣΚΕΛΊΖΕΙ ΥΠΈΡ ΝΩΘΡΟΎ ΚΥΝΌΣ'],
];
}
public function providerForInvalidUppercase()
{
return [
['lowercase'],
['CamelCase'],
['First Character Uppercase'],
['With Numbers 1 2 3'],
];
}
}