| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Validation;
- use Cake\TestSuite\TestCase;
- use Cake\Validation\ValidationSet;
- use Cake\Validation\Validator;
- /**
- * Tests Validator class
- *
- */
- class ValidatorTest extends TestCase
- {
- /**
- * Testing you can dynamically add rules to a field
- *
- * @return void
- */
- public function testAddingRulesToField()
- {
- $validator = new Validator;
- $validator->add('title', 'not-blank', ['rule' => 'notBlank']);
- $set = $validator->field('title');
- $this->assertInstanceOf('Cake\Validation\ValidationSet', $set);
- $this->assertCount(1, $set);
- $validator->add('title', 'another', ['rule' => 'alphanumeric']);
- $this->assertCount(2, $set);
- $validator->add('body', 'another', ['rule' => 'crazy']);
- $this->assertCount(1, $validator->field('body'));
- $this->assertCount(2, $validator);
- }
- /**
- * Testing addNested field rules
- *
- * @return void
- */
- public function testAddNestedSingle()
- {
- $validator = new Validator();
- $inner = new Validator();
- $inner->add('username', 'not-blank', ['rule' => 'notBlank']);
- $this->assertSame($validator, $validator->addNested('user', $inner));
- $this->assertCount(1, $validator->field('user'));
- }
- /**
- * Testing addNested connects providers
- *
- * @return void
- */
- public function testAddNestedSingleProviders()
- {
- $validator = new Validator();
- $validator->provider('test', $this);
- $inner = new Validator();
- $inner->add('username', 'not-blank', ['rule' => function () use ($inner, $validator) {
- $this->assertSame($validator->providers(), $inner->providers(), 'Providers should match');
- return false;
- }]);
- $validator->addNested('user', $inner);
- $result = $validator->errors(['user' => ['username' => 'example']]);
- $this->assertNotEmpty($result, 'Validation should fail');
- }
- /**
- * Testing addNestedMany field rules
- *
- * @return void
- */
- public function testAddNestedMany()
- {
- $validator = new Validator();
- $inner = new Validator();
- $inner->add('comment', 'not-blank', ['rule' => 'notBlank']);
- $this->assertSame($validator, $validator->addNestedMany('comments', $inner));
- $this->assertCount(1, $validator->field('comments'));
- }
- /**
- * Testing addNestedMany connects providers
- *
- * @return void
- */
- public function testAddNestedManyProviders()
- {
- $validator = new Validator();
- $validator->provider('test', $this);
- $inner = new Validator();
- $inner->add('comment', 'not-blank', ['rule' => function () use ($inner, $validator) {
- $this->assertSame($validator->providers(), $inner->providers(), 'Providers should match');
- return false;
- }]);
- $validator->addNestedMany('comments', $inner);
- $result = $validator->errors(['comments' => [['comment' => 'example']]]);
- $this->assertNotEmpty($result, 'Validation should fail');
- }
- /**
- * Tests that calling field will create a default validation set for it
- *
- * @return void
- */
- public function testFieldDefault()
- {
- $validator = new Validator;
- $this->assertFalse($validator->hasField('foo'));
- $field = $validator->field('foo');
- $this->assertInstanceOf('Cake\Validation\ValidationSet', $field);
- $this->assertCount(0, $field);
- $this->assertTrue($validator->hasField('foo'));
- }
- /**
- * Tests that field method can be used as a setter
- *
- * @return void
- */
- public function testFieldSetter()
- {
- $validator = new Validator;
- $validationSet = new ValidationSet;
- $validator->field('thing', $validationSet);
- $this->assertSame($validationSet, $validator->field('thing'));
- }
- /**
- * Tests the remove method
- *
- * @return void
- */
- public function testRemove()
- {
- $validator = new Validator;
- $validator->add('title', 'not-blank', ['rule' => 'notBlank']);
- $validator->add('title', 'foo', ['rule' => 'bar']);
- $this->assertCount(2, $validator->field('title'));
- $validator->remove('title');
- $this->assertCount(0, $validator->field('title'));
- $validator->remove('title');
- $validator->add('title', 'not-blank', ['rule' => 'notBlank']);
- $validator->add('title', 'foo', ['rule' => 'bar']);
- $this->assertCount(2, $validator->field('title'));
- $validator->remove('title', 'foo');
- $this->assertCount(1, $validator->field('title'));
- $this->assertNull($validator->field('title')->rule('foo'));
- }
- /**
- * Tests the requirePresence method
- *
- * @return void
- */
- public function testRequirePresence()
- {
- $validator = new Validator;
- $this->assertSame($validator, $validator->requirePresence('title'));
- $this->assertTrue($validator->field('title')->isPresenceRequired());
- $validator->requirePresence('title', false);
- $this->assertFalse($validator->field('title')->isPresenceRequired());
- $validator->requirePresence('title', 'create');
- $this->assertEquals('create', $validator->field('title')->isPresenceRequired());
- $validator->requirePresence('title', 'update');
- $this->assertEquals('update', $validator->field('title')->isPresenceRequired());
- }
- /**
- * Tests the requirePresence method when passing a callback
- *
- * @return void
- */
- public function testRequirePresenceCallback()
- {
- $validator = new Validator;
- $require = true;
- $validator->requirePresence('title', function ($context) use (&$require) {
- $this->assertEquals([], $context['data']);
- $this->assertEquals([], $context['providers']);
- $this->assertEquals('title', $context['field']);
- $this->assertTrue($context['newRecord']);
- return $require;
- });
- $this->assertTrue($validator->isPresenceRequired('title', true));
- $require = false;
- $this->assertFalse($validator->isPresenceRequired('title', true));
- }
- /**
- * Tests the isPresenceRequired method
- *
- * @return void
- */
- public function testIsPresenceRequired()
- {
- $validator = new Validator;
- $this->assertSame($validator, $validator->requirePresence('title'));
- $this->assertTrue($validator->isPresenceRequired('title', true));
- $this->assertTrue($validator->isPresenceRequired('title', false));
- $validator->requirePresence('title', false);
- $this->assertFalse($validator->isPresenceRequired('title', true));
- $this->assertFalse($validator->isPresenceRequired('title', false));
- $validator->requirePresence('title', 'create');
- $this->assertTrue($validator->isPresenceRequired('title', true));
- $this->assertFalse($validator->isPresenceRequired('title', false));
- $validator->requirePresence('title', 'update');
- $this->assertTrue($validator->isPresenceRequired('title', false));
- $this->assertFalse($validator->isPresenceRequired('title', true));
- }
- /**
- * Tests errors generated when a field presence is required
- *
- * @return void
- */
- public function testErrorsWithPresenceRequired()
- {
- $validator = new Validator;
- $validator->requirePresence('title');
- $errors = $validator->errors(['foo' => 'something']);
- $expected = ['title' => ['_required' => 'This field is required']];
- $this->assertEquals($expected, $errors);
- $this->assertEmpty($validator->errors(['title' => 'bar']));
- $validator->requirePresence('title', false);
- $this->assertEmpty($validator->errors(['foo' => 'bar']));
- }
- /**
- * Test that errors() can work with nested data.
- *
- * @return void
- */
- public function testErrorsWithNestedFields()
- {
- $validator = new Validator();
- $user = new Validator();
- $user->add('username', 'letter', ['rule' => 'alphanumeric']);
- $comments = new Validator();
- $comments->add('comment', 'letter', ['rule' => 'alphanumeric']);
- $validator->addNested('user', $user);
- $validator->addNestedMany('comments', $comments);
- $data = [
- 'user' => [
- 'username' => 'is wrong'
- ],
- 'comments' => [
- ['comment' => 'is wrong']
- ]
- ];
- $errors = $validator->errors($data);
- $expected = [
- 'user' => [
- 'username' => ['letter' => 'The provided value is invalid']
- ],
- 'comments' => [
- 0 => ['comment' => ['letter' => 'The provided value is invalid']]
- ]
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Test nested fields with many, but invalid data.
- *
- * @return void
- */
- public function testErrorsWithNestedSingleInvalidType()
- {
- $validator = new Validator();
- $user = new Validator();
- $user->add('user', 'letter', ['rule' => 'alphanumeric']);
- $validator->addNested('user', $user);
- $data = [
- 'user' => 'a string',
- ];
- $errors = $validator->errors($data);
- $expected = [
- 'user' => ['_nested' => 'The provided value is invalid'],
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Test nested fields with many, but invalid data.
- *
- * @return void
- */
- public function testErrorsWithNestedManyInvalidType()
- {
- $validator = new Validator();
- $comments = new Validator();
- $comments->add('comment', 'letter', ['rule' => 'alphanumeric']);
- $validator->addNestedMany('comments', $comments);
- $data = [
- 'comments' => 'a string',
- ];
- $errors = $validator->errors($data);
- $expected = [
- 'comments' => ['_nested' => 'The provided value is invalid'],
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Test nested fields with many, but invalid data.
- *
- * @return void
- */
- public function testErrorsWithNestedManySomeInvalid()
- {
- $validator = new Validator();
- $comments = new Validator();
- $comments->add('comment', 'letter', ['rule' => 'alphanumeric']);
- $validator->addNestedMany('comments', $comments);
- $data = [
- 'comments' => [
- 'a string',
- ['comment' => 'letters'],
- ['comment' => 'more invalid']
- ]
- ];
- $errors = $validator->errors($data);
- $expected = [
- 'comments' => [
- '_nested' => 'The provided value is invalid',
- ],
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests custom error messages generated when a field presence is required
- *
- * @return void
- */
- public function testCustomErrorsWithPresenceRequired()
- {
- $validator = new Validator;
- $validator->requirePresence('title', true, 'Custom message');
- $errors = $validator->errors(['foo' => 'something']);
- $expected = ['title' => ['_required' => 'Custom message']];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests the allowEmpty method
- *
- * @return void
- */
- public function testAllowEmpty()
- {
- $validator = new Validator;
- $this->assertSame($validator, $validator->allowEmpty('title'));
- $this->assertTrue($validator->field('title')->isEmptyAllowed());
- $validator->allowEmpty('title', 'create');
- $this->assertEquals('create', $validator->field('title')->isEmptyAllowed());
- $validator->allowEmpty('title', 'update');
- $this->assertEquals('update', $validator->field('title')->isEmptyAllowed());
- }
- /**
- * Tests the allowEmpty method with date/time fields.
- *
- * @return void
- */
- public function testAllowEmptyDateTime()
- {
- $validator = new Validator;
- $validator->allowEmpty('created')
- ->add('created', 'date', ['rule' => 'date']);
- $data = [
- 'created' => [
- 'year' => '',
- 'month' => '',
- 'day' => ''
- ]
- ];
- $result = $validator->errors($data);
- $this->assertEmpty($result, 'No errors on empty date');
- $data = [
- 'created' => [
- 'year' => '',
- 'month' => '',
- 'day' => '',
- 'hour' => '',
- 'minute' => '',
- 'second' => '',
- 'meridian' => '',
- ]
- ];
- $result = $validator->errors($data);
- $this->assertEmpty($result, 'No errors on empty datetime');
- $data = [
- 'created' => [
- 'hour' => '',
- 'minute' => '',
- 'meridian' => '',
- ]
- ];
- $result = $validator->errors($data);
- $this->assertEmpty($result, 'No errors on empty time');
- }
- /**
- * Tests the allowEmpty method with file fields.
- *
- * @return void
- */
- public function testAllowEmptyFileFields()
- {
- $validator = new Validator;
- $validator->allowEmpty('picture')
- ->add('picture', 'file', ['rule' => 'uploadedFile']);
- $data = [
- 'picture' => [
- 'name' => '',
- 'type' => '',
- 'tmp_name' => '',
- 'error' => UPLOAD_ERR_NO_FILE,
- ]
- ];
- $result = $validator->errors($data);
- $this->assertEmpty($result, 'No errors on empty date');
- $data = [
- 'picture' => [
- 'name' => 'fake.png',
- 'type' => '',
- 'tmp_name' => '',
- 'error' => UPLOAD_ERR_OK,
- ]
- ];
- $result = $validator->errors($data);
- $this->assertNotEmpty($result, 'Invalid file should be caught still.');
- }
- /**
- * Test the notEmpty() method.
- *
- * @return void
- */
- public function testNotEmpty()
- {
- $validator = new Validator;
- $validator->notEmpty('title');
- $this->assertFalse($validator->field('title')->isEmptyAllowed());
- $validator->allowEmpty('title');
- $this->assertTrue($validator->field('title')->isEmptyAllowed());
- }
- /**
- * Test the notEmpty() method.
- *
- * @return void
- */
- public function testNotEmptyModes()
- {
- $validator = new Validator;
- $validator->notEmpty('title', 'Need a title', 'create');
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- $this->assertTrue($validator->isEmptyAllowed('title', false));
- $validator->notEmpty('title', 'Need a title', 'update');
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->notEmpty('title', 'Need a title');
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->notEmpty('title');
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- }
- /**
- * Test interactions between notEmpty() and isAllowed().
- *
- * @return void
- */
- public function testNotEmptyAndIsAllowed()
- {
- $validator = new Validator;
- $validator->allowEmpty('title')
- ->notEmpty('title', 'Need it', 'update');
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->allowEmpty('title')
- ->notEmpty('title');
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->notEmpty('title')
- ->allowEmpty('title', 'create');
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- }
- /**
- * Tests the allowEmpty method when passing a callback
- *
- * @return void
- */
- public function testAllowEmptyCallback()
- {
- $validator = new Validator;
- $allow = true;
- $validator->allowEmpty('title', function ($context) use (&$allow) {
- $this->assertEquals([], $context['data']);
- $this->assertEquals([], $context['providers']);
- $this->assertTrue($context['newRecord']);
- return $allow;
- });
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $allow = false;
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- }
- /**
- * Tests the notEmpty method when passing a callback
- *
- * @return void
- */
- public function testNotEmptyCallback()
- {
- $validator = new Validator;
- $prevent = true;
- $validator->notEmpty('title', 'error message', function ($context) use (&$prevent) {
- $this->assertEquals([], $context['data']);
- $this->assertEquals([], $context['providers']);
- $this->assertFalse($context['newRecord']);
- return $prevent;
- });
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $prevent = false;
- $this->assertTrue($validator->isEmptyAllowed('title', false));
- }
- /**
- * Tests the isEmptyAllowed method
- *
- * @return void
- */
- public function testIsEmptyAllowed()
- {
- $validator = new Validator;
- $this->assertSame($validator, $validator->allowEmpty('title'));
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $this->assertTrue($validator->isEmptyAllowed('title', false));
- $validator->notEmpty('title');
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->allowEmpty('title', 'create');
- $this->assertTrue($validator->isEmptyAllowed('title', true));
- $this->assertFalse($validator->isEmptyAllowed('title', false));
- $validator->allowEmpty('title', 'update');
- $this->assertTrue($validator->isEmptyAllowed('title', false));
- $this->assertFalse($validator->isEmptyAllowed('title', true));
- }
- /**
- * Tests errors generated when a field is not allowed to be empty
- *
- * @return void
- */
- public function testErrorsWithEmptyNotAllowed()
- {
- $validator = new Validator;
- $validator->notEmpty('title');
- $errors = $validator->errors(['title' => '']);
- $expected = ['title' => ['_empty' => 'This field cannot be left empty']];
- $this->assertEquals($expected, $errors);
- $errors = $validator->errors(['title' => []]);
- $expected = ['title' => ['_empty' => 'This field cannot be left empty']];
- $this->assertEquals($expected, $errors);
- $errors = $validator->errors(['title' => null]);
- $expected = ['title' => ['_empty' => 'This field cannot be left empty']];
- $this->assertEquals($expected, $errors);
- $errors = $validator->errors(['title' => 0]);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => '0']);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => false]);
- $this->assertEmpty($errors);
- }
- /**
- * Tests custom error mesages generated when a field is not allowed to be empty
- *
- * @return void
- */
- public function testCustomErrorsWithEmptyNotAllowed()
- {
- $validator = new Validator;
- $validator->notEmpty('title', 'Custom message');
- $errors = $validator->errors(['title' => '']);
- $expected = ['title' => ['_empty' => 'Custom message']];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests errors generated when a field is allowed to be empty
- *
- * @return void
- */
- public function testErrorsWithEmptyAllowed()
- {
- $validator = new Validator;
- $validator->allowEmpty('title');
- $errors = $validator->errors(['title' => '']);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => []]);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => null]);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => 0]);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => 0.0]);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => '0']);
- $this->assertEmpty($errors);
- $errors = $validator->errors(['title' => false]);
- $this->assertEmpty($errors);
- }
- /**
- * Test the provider() method
- *
- * @return void
- */
- public function testProvider()
- {
- $validator = new Validator;
- $object = new \stdClass;
- $this->assertSame($validator, $validator->provider('foo', $object));
- $this->assertSame($object, $validator->provider('foo'));
- $this->assertNull($validator->provider('bar'));
- $another = new \stdClass;
- $this->assertSame($validator, $validator->provider('bar', $another));
- $this->assertSame($another, $validator->provider('bar'));
- $this->assertEquals(new \Cake\Validation\RulesProvider, $validator->provider('default'));
- }
- /**
- * Tests errors() method when using validators from the default provider, this proves
- * that it returns a default validation message and the custom one set in the rule
- *
- * @return void
- */
- public function testErrorsFromDefaultProvider()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('email', 'notBlank', ['rule' => 'notBlank'])
- ->add('email', 'email', ['rule' => 'email', 'message' => 'Y u no write email?']);
- $errors = $validator->errors(['email' => 'not an email!']);
- $expected = [
- 'email' => [
- 'alpha' => 'The provided value is invalid',
- 'email' => 'Y u no write email?'
- ]
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests using validation methods from different providers and returning the error
- * as a string
- *
- * @return void
- */
- public function testErrorsFromCustomProvider()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $thing = $this->getMock('\stdClass', ['isCool']);
- $thing->expects($this->once())->method('isCool')
- ->will($this->returnCallback(function ($data, $context) use ($thing) {
- $this->assertEquals('bar', $data);
- $expected = [
- 'default' => new \Cake\Validation\RulesProvider,
- 'thing' => $thing
- ];
- $expected = [
- 'newRecord' => true,
- 'providers' => $expected,
- 'data' => [
- 'email' => '!',
- 'title' => 'bar'
- ],
- 'field' => 'title'
- ];
- $this->assertEquals($expected, $context);
- return "That ain't cool, yo";
- }));
- $validator->provider('thing', $thing);
- $errors = $validator->errors(['email' => '!', 'title' => 'bar']);
- $expected = [
- 'email' => ['alpha' => 'The provided value is invalid'],
- 'title' => ['cool' => "That ain't cool, yo"]
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests that it is possible to pass extra arguments to the validation function
- * and it still gets the providers as last argument
- *
- * @return void
- */
- public function testMethodsWithExtraArguments()
- {
- $validator = new Validator;
- $validator->add('title', 'cool', [
- 'rule' => ['isCool', 'and', 'awesome'],
- 'provider' => 'thing'
- ]);
- $thing = $this->getMock('\stdClass', ['isCool']);
- $thing->expects($this->once())->method('isCool')
- ->will($this->returnCallback(function ($data, $a, $b, $context) use ($thing) {
- $this->assertEquals('bar', $data);
- $this->assertEquals('and', $a);
- $this->assertEquals('awesome', $b);
- $expected = [
- 'default' => new \Cake\Validation\RulesProvider,
- 'thing' => $thing
- ];
- $expected = [
- 'newRecord' => true,
- 'providers' => $expected,
- 'data' => [
- 'email' => '!',
- 'title' => 'bar'
- ],
- 'field' => 'title'
- ];
- $this->assertEquals($expected, $context);
- return "That ain't cool, yo";
- }));
- $validator->provider('thing', $thing);
- $errors = $validator->errors(['email' => '!', 'title' => 'bar']);
- $expected = [
- 'title' => ['cool' => "That ain't cool, yo"]
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests that it is possible to use a closure as a rule
- *
- * @return void
- */
- public function testUsingClosureAsRule()
- {
- $validator = new Validator;
- $validator->add('name', 'myRule', [
- 'rule' => function ($data, $provider) {
- $this->assertEquals('foo', $data);
- return 'You fail';
- }
- ]);
- $expected = ['name' => ['myRule' => 'You fail']];
- $this->assertEquals($expected, $validator->errors(['name' => 'foo']));
- }
- /**
- * Tests that setting last to a rule will stop validating the rest of the rules
- *
- * @return void
- */
- public function testErrorsWithLastRule()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric', 'last' => true])
- ->add('email', 'email', ['rule' => 'email', 'message' => 'Y u no write email?']);
- $errors = $validator->errors(['email' => 'not an email!']);
- $expected = [
- 'email' => [
- 'alpha' => 'The provided value is invalid'
- ]
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests it is possible to get validation sets for a field using an array interface
- *
- * @return void
- */
- public function testArrayAccessGet()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $this->assertSame($validator['email'], $validator->field('email'));
- $this->assertSame($validator['title'], $validator->field('title'));
- }
- /**
- * Tests it is possible to check for validation sets for a field using an array inteface
- *
- * @return void
- */
- public function testArrayAccessExists()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $this->assertTrue(isset($validator['email']));
- $this->assertTrue(isset($validator['title']));
- $this->assertFalse(isset($validator['foo']));
- }
- /**
- * Tests it is possible to set validation rules for a field using an array inteface
- *
- * @return void
- */
- public function testArrayAccessSet()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $validator['name'] = $validator->field('title');
- $this->assertSame($validator->field('title'), $validator->field('name'));
- $validator['name'] = ['alpha' => ['rule' => 'alphanumeric']];
- $this->assertEquals($validator->field('email'), $validator->field('email'));
- }
- /**
- * Tests it is possible to unset validation rules
- *
- * @return void
- */
- public function testArrayAccessUset()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $this->assertTrue(isset($validator['title']));
- unset($validator['title']);
- $this->assertFalse(isset($validator['title']));
- }
- /**
- * Tests the countable interface
- *
- * @return void
- */
- public function testCount()
- {
- $validator = new Validator;
- $validator
- ->add('email', 'alpha', ['rule' => 'alphanumeric'])
- ->add('title', 'cool', ['rule' => 'isCool', 'provider' => 'thing']);
- $this->assertCount(2, $validator);
- }
- /**
- * Tests adding rules via alternative syntax
- *
- * @return void
- */
- public function testAddMulitple()
- {
- $validator = new Validator;
- $validator->add('title', [
- 'notBlank' => [
- 'rule' => 'notBlank'
- ],
- 'length' => [
- 'rule' => ['minLength', 10],
- 'message' => 'Titles need to be at least 10 characters long'
- ]
- ]);
- $set = $validator->field('title');
- $this->assertInstanceOf('Cake\Validation\ValidationSet', $set);
- $this->assertCount(2, $set);
- }
- /**
- * Integration test for compareWith validator.
- *
- * @return void
- */
- public function testCompareWithIntegration()
- {
- $validator = new Validator;
- $validator->add('password', [
- 'compare' => [
- 'rule' => ['compareWith', 'password_compare']
- ],
- ]);
- $data = [
- 'password' => 'test',
- 'password_compare' => 'not the same'
- ];
- $this->assertNotEmpty($validator->errors($data), 'Validation should fail.');
- }
- /**
- * Test debugInfo helper method.
- *
- * @return void
- */
- public function testDebugInfo()
- {
- $validator = new Validator();
- $validator->provider('test', $this);
- $validator->add('title', 'not-empty', ['rule' => 'notEmpty']);
- $validator->requirePresence('body');
- $validator->allowEmpty('published');
- $result = $validator->__debugInfo();
- $expected = [
- '_providers' => ['test'],
- '_fields' => [
- 'title' => [
- 'isPresenceRequired' => false,
- 'isEmptyAllowed' => false,
- 'rules' => ['not-empty'],
- ],
- 'body' => [
- 'isPresenceRequired' => true,
- 'isEmptyAllowed' => false,
- 'rules' => [],
- ],
- 'published' => [
- 'isPresenceRequired' => false,
- 'isEmptyAllowed' => true,
- 'rules' => [],
- ],
- ],
- '_presenceMessages' => [],
- '_allowEmptyMessages' => [],
- '_useI18n' => true,
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests that the 'create' and 'update' modes are preserved when using
- * nested validators
- *
- * @return void
- */
- public function testNestedValidatorCreate()
- {
- $validator = new Validator();
- $inner = new Validator();
- $inner->add('username', 'email', ['rule' => 'email', 'on' => 'create']);
- $validator->addNested('user', $inner);
- $this->assertNotEmpty($validator->errors(['user' => ['username' => 'example']], true));
- $this->assertEmpty($validator->errors(['user' => ['username' => 'a']], false));
- }
- /**
- * Tests that the 'create' and 'update' modes are preserved when using
- * nested validators
- *
- * @return void
- */
- public function testNestedManyValidatorCreate()
- {
- $validator = new Validator();
- $inner = new Validator();
- $inner->add('username', 'email', ['rule' => 'email', 'on' => 'create']);
- $validator->addNestedMany('user', $inner);
- $this->assertNotEmpty($validator->errors(['user' => [['username' => 'example']]], true));
- $this->assertEmpty($validator->errors(['user' => [['username' => 'a']]], false));
- }
- /**
- * Tests the notBlank proxy method
- *
- * @return void
- */
- public function testNotBlank()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'notBlank');
- $this->assertNotEmpty($validator->errors(['username' => ' ']));
- }
- /**
- * Tests the alphanumeric proxy method
- *
- * @return void
- */
- public function testAlphanumeric()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'alphaNumeric');
- $this->assertNotEmpty($validator->errors(['username' => '$']));
- }
- /**
- * Tests the lengthBetween proxy method
- *
- * @return void
- */
- public function testLengthBetween()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'lengthBetween', [5, 7], [5, 7]);
- $this->assertNotEmpty($validator->errors(['username' => 'foo']));
- }
- /**
- * Tests the creditCard proxy method
- *
- * @return void
- */
- public function testCreditCard()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'creditCard', 'all', ['all', true], 'cc');
- $this->assertNotEmpty($validator->errors(['username' => 'foo']));
- }
- /**
- * Tests the greaterThan proxy method
- *
- * @return void
- */
- public function testGreaterThan()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'greaterThan', 5, ['>', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 2]));
- }
- /**
- * Tests the greaterThanOrEqual proxy method
- *
- * @return void
- */
- public function testGreaterThanOrEqual()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'greaterThanOrEqual', 5, ['>=', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 2]));
- }
- /**
- * Tests the lessThan proxy method
- *
- * @return void
- */
- public function testLessThan()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'lessThan', 5, ['<', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 5]));
- }
- /**
- * Tests the lessThanOrEqual proxy method
- *
- * @return void
- */
- public function testLessThanOrEqual()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'lessThanOrEqual', 5, ['<=', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 6]));
- }
- /**
- * Tests the equals proxy method
- *
- * @return void
- */
- public function testEquals()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'equals', 5, ['=', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 6]));
- }
- /**
- * Tests the notEquals proxy method
- *
- * @return void
- */
- public function testNotEquals()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'notEquals', 5, ['!=', 5], 'comparison');
- $this->assertNotEmpty($validator->errors(['username' => 5]));
- }
- /**
- * Tests the sameAs proxy method
- *
- * @return void
- */
- public function testSameAs()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'sameAs', 'other', ['other'], 'compareWith');
- $this->assertNotEmpty($validator->errors(['username' => 'foo']));
- }
- /**
- * Tests the containsNonAlphaNumeric proxy method
- *
- * @return void
- */
- public function testContainsNonAlphaNumeric()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'containsNonAlphaNumeric', 2, [2]);
- $this->assertNotEmpty($validator->errors(['username' => '$']));
- }
- /**
- * Tests the date proxy method
- *
- * @return void
- */
- public function testDate()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'date', ['ymd'], [['ymd']]);
- $this->assertNotEmpty($validator->errors(['username' => 'not a date']));
- }
- /**
- * Tests the dateTime proxy method
- *
- * @return void
- */
- public function testDateTime()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'dateTime', ['ymd'], [['ymd']], 'datetime');
- $this->assertNotEmpty($validator->errors(['username' => 'not a date']));
- }
- /**
- * Tests the time proxy method
- *
- * @return void
- */
- public function testTime()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'time');
- $this->assertNotEmpty($validator->errors(['username' => 'not a time']));
- }
- /**
- * Tests the boolean proxy method
- *
- * @return void
- */
- public function testBoolean()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'boolean');
- $this->assertNotEmpty($validator->errors(['username' => 'not a boolean']));
- }
- /**
- * Tests the decimal proxy method
- *
- * @return void
- */
- public function testDecimal()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'decimal', 2, [2]);
- $this->assertNotEmpty($validator->errors(['username' => 10.1]));
- }
- /**
- * Tests the ip proxy methods
- *
- * @return void
- */
- public function testIps()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'ip');
- $this->assertNotEmpty($validator->errors(['username' => 'not ip']));
- $this->assertProxyMethod($validator, 'ipv4', null, ['ipv4'], 'ip');
- $this->assertNotEmpty($validator->errors(['username' => 'not ip']));
- $this->assertProxyMethod($validator, 'ipv6', null, ['ipv6'], 'ip');
- $this->assertNotEmpty($validator->errors(['username' => 'not ip']));
- }
- /**
- * Tests the maxLength proxy method
- *
- * @return void
- */
- public function testMaxLength()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'maxLength', 2, [2]);
- $this->assertNotEmpty($validator->errors(['username' => 'aaa']));
- }
- /**
- * Tests the naturalNumber proxy method
- *
- * @return void
- */
- public function testNaturalNumber()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'naturalNumber', null, [false]);
- $this->assertNotEmpty($validator->errors(['username' => 0]));
- }
- /**
- * Tests the nonNegativeInteger proxy method
- *
- * @return void
- */
- public function testNonNegativeInteger()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'nonNegativeInteger', null, [true], 'naturalNumber');
- $this->assertNotEmpty($validator->errors(['username' => -1]));
- }
- /**
- * Tests the range proxy method
- *
- * @return void
- */
- public function testRange()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'range', [1, 4], [1, 4]);
- $this->assertNotEmpty($validator->errors(['username' => 5]));
- }
- /**
- * Tests the url proxy method
- *
- * @return void
- */
- public function testUrl()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'url', null, [false]);
- $this->assertNotEmpty($validator->errors(['username' => 'not url']));
- }
- /**
- * Tests the urlWithProtocol proxy method
- *
- * @return void
- */
- public function testUrlWithProtocol()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'urlWithProtocol', null, [true], 'url');
- $this->assertNotEmpty($validator->errors(['username' => 'google.com']));
- }
- /**
- * Tests the inList proxy method
- *
- * @return void
- */
- public function testInList()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'inList', ['a', 'b'], [['a', 'b']]);
- $this->assertNotEmpty($validator->errors(['username' => 'c']));
- }
- /**
- * Tests the uuid proxy method
- *
- * @return void
- */
- public function testUuid()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'uuid');
- $this->assertNotEmpty($validator->errors(['username' => 'not uuid']));
- }
- /**
- * Tests the uploadedFile proxy method
- *
- * @return void
- */
- public function testUploadedFile()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'uploadedFile', ['foo' => 'bar'], [['foo' => 'bar']]);
- $this->assertNotEmpty($validator->errors(['username' => []]));
- }
- /**
- * Tests the latlog proxy methods
- *
- * @return void
- */
- public function testLatLong()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'latLong', null, [], 'geoCoordinate');
- $this->assertNotEmpty($validator->errors(['username' => 2000]));
- $this->assertProxyMethod($validator, 'latitude');
- $this->assertNotEmpty($validator->errors(['username' => 2000]));
- $this->assertProxyMethod($validator, 'longitude');
- $this->assertNotEmpty($validator->errors(['username' => 2000]));
- }
- /**
- * Tests the ascii proxy method
- *
- * @return void
- */
- public function testAscii()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'ascii');
- $this->assertNotEmpty($validator->errors(['username' => 'ü']));
- }
- /**
- * Tests the utf8 proxy methods
- *
- * @return void
- */
- public function testUtf8()
- {
- // Grinning face
- $extended = 'some' . "\xf0\x9f\x98\x80" . 'value';
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'utf8', null, [['extended' => false]]);
- $this->assertEmpty($validator->errors(['username' => 'ü']));
- $this->assertNotEmpty($validator->errors(['username' => $extended]));
- }
- /**
- * Test utf8extended proxy method.
- *
- * @return void
- */
- public function testUtf8Extended()
- {
- // Grinning face
- $extended = 'some' . "\xf0\x9f\x98\x80" . 'value';
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'utf8Extended', null, [['extended' => true]], 'utf8');
- $this->assertEmpty($validator->errors(['username' => 'ü']));
- $this->assertEmpty($validator->errors(['username' => $extended]));
- }
- /**
- * Tests the integer proxy method
- *
- * @return void
- */
- public function testInteger()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'integer', null, [], 'isInteger');
- $this->assertNotEmpty($validator->errors(['username' => 'not integer']));
- }
- protected function assertProxyMethod($validator, $method, $extra = null, $pass = [], $name = null)
- {
- $name = $name ?: $method;
- if ($extra !== null) {
- $this->assertSame($validator, $validator->{$method}('username', $extra));
- } else {
- $this->assertSame($validator, $validator->{$method}('username'));
- }
- $rule = $validator->field('username')->rule($method);
- $this->assertNull($rule->get('message'));
- $this->assertNull($rule->get('on'));
- $this->assertEquals($name, $rule->get('rule'));
- $this->assertEquals($pass, $rule->get('pass'));
- $this->assertEquals('default', $rule->get('provider'));
- if ($extra !== null) {
- $validator->{$method}('username', $extra, 'the message', 'create');
- } else {
- $validator->{$method}('username', 'the message', 'create');
- }
- $rule = $validator->field('username')->rule($method);
- $this->assertEquals('the message', $rule->get('message'));
- $this->assertEquals('create', $rule->get('on'));
- }
- }
|