* * 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\Vowel * @covers Respect\Validation\Exceptions\VowelException */ class VowelTest extends TestCase { /** * @dataProvider providerForValidVowels */ public function testValidDataWithVowelsShouldReturnTrue($validVowels, $additional = '') { $validator = new Vowel($additional); $this->assertTrue($validator->validate($validVowels)); } /** * @dataProvider providerForInvalidVowels * @expectedException Respect\Validation\Exceptions\VowelException */ public function testInvalidVowelsShouldFailAndThrowVowelException($invalidVowels, $additional = '') { $validator = new Vowel($additional); $this->assertFalse($validator->validate($invalidVowels)); $this->assertFalse($validator->assert($invalidVowels)); } /** * @dataProvider providerForInvalidParams * @expectedException Respect\Validation\Exceptions\ComponentException */ public function testInvalidConstructorParamsShouldThrowComponentExceptionUponInstantiation($additional) { $validator = new Vowel($additional); } /** * @dataProvider providerAdditionalChars */ public function testAdditionalCharsShouldBeRespected($additional, $query) { $validator = new Vowel($additional); $this->assertTrue($validator->validate($query)); } public function providerAdditionalChars() { return [ ['!@#$%^&*(){}', '!@#$%^&*(){} aeo iu'], ['[]?+=/\\-_|"\',<>.', "[]?+=/\\-_|\"',<>. \t \n aeo iu"], ]; } public function providerForInvalidParams() { return [ [new \stdClass()], [[]], [0x2], ]; } public function providerForValidVowels() { return [ ['a'], ['e'], ['i'], ['o'], ['u'], ['aeiou'], ['aei ou'], ["\na\t"], ['uoiea'], ]; } public function providerForInvalidVowels() { return [ [''], [null], ['16'], ['F'], ['g'], ['Foo'], [-50], ['basic'], ]; } }