| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://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
- *
- * @return void
- */
- public function testRequirePresenceAsArray()
- {
- $validator = new Validator();
- $validator->requirePresence(['title', 'created']);
- $this->assertTrue($validator->field('title')->isPresenceRequired());
- $this->assertTrue($validator->field('created')->isPresenceRequired());
- $validator->requirePresence([
- 'title' => [
- 'mode' => false
- ],
- 'content' => [
- 'mode' => 'update'
- ],
- 'subject'
- ], true);
- $this->assertFalse($validator->field('title')->isPresenceRequired());
- $this->assertEquals('update', $validator->field('content')->isPresenceRequired());
- $this->assertTrue($validator->field('subject')->isPresenceRequired());
- }
- /**
- * Tests the requirePresence failure case
- *
- * @return void
- */
- public function testRequirePresenceAsArrayFailure()
- {
- $this->expectException(\InvalidArgumentException::class);
- $validator = new Validator();
- $validator->requirePresence(['title' => 'derp', 'created' => false]);
- }
- /**
- * 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 validation on a certain condition generate errors
- *
- * @return void
- */
- public function testErrorsWithPresenceRequiredOnCreate()
- {
- $validator = new Validator();
- $validator->requirePresence('id', 'update');
- $validator->allowEmpty('id', 'create');
- $validator->requirePresence('title');
- $data = [
- 'title' => 'Example title'
- ];
- $expected = [];
- $result = $validator->errors($data);
- $this->assertEquals($expected, $result);
- }
- /**
- * 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 custom error messages generated when a field presence is required
- *
- * @return void
- */
- public function testCustomErrorsWithPresenceRequiredAsArray()
- {
- $validator = new Validator();
- $validator->requirePresence(['title', 'content'], true, 'Custom message');
- $errors = $validator->errors(['foo' => 'something']);
- $expected = [
- 'title' => ['_required' => 'Custom message'],
- 'content' => ['_required' => 'Custom message']
- ];
- $this->assertEquals($expected, $errors);
- $validator->requirePresence([
- 'title' => [
- 'message' => 'Test message'
- ],
- 'content'
- ], true, 'Custom message');
- $errors = $validator->errors(['foo' => 'something']);
- $expected = [
- 'title' => ['_required' => 'Test message'],
- 'content' => ['_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.');
- }
- /**
- * Tests the allowEmpty as array method
- *
- * @return void
- */
- public function testAllowEmptyAsArray()
- {
- $validator = new Validator();
- $validator->allowEmpty([
- 'title',
- 'subject',
- 'posted_at' => [
- 'when' => false,
- 'message' => 'Post time cannot be empty'
- ],
- 'updated_at' => [
- 'when' => true
- ],
- 'show_at' => [
- 'when' => 'update'
- ]
- ], 'create', 'Cannot be empty');
- $this->assertEquals('create', $validator->field('title')->isEmptyAllowed());
- $this->assertEquals('create', $validator->field('subject')->isEmptyAllowed());
- $this->assertFalse($validator->field('posted_at')->isEmptyAllowed());
- $this->assertTrue($validator->field('updated_at')->isEmptyAllowed());
- $this->assertEquals('update', $validator->field('show_at')->isEmptyAllowed());
- $errors = $validator->errors([
- 'title' => '',
- 'subject' => null,
- 'posted_at' => null,
- 'updated_at' => null,
- 'show_at' => ''
- ], false);
- $expected = [
- 'title' => ['_empty' => 'Cannot be empty'],
- 'subject' => ['_empty' => 'Cannot be empty'],
- 'posted_at' => ['_empty' => 'Post time cannot be empty']
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests the allowEmpty failure case
- *
- * @return void
- */
- public function testAllowEmptyAsArrayFailure()
- {
- $this->expectException(\InvalidArgumentException::class);
- $validator = new Validator();
- $validator->allowEmpty(['title' => 'derp', 'created' => false]);
- }
- /**
- * 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());
- }
- /**
- * Tests the notEmpty as array method
- *
- * @return void
- */
- public function testNotEmptyAsArray()
- {
- $validator = new Validator();
- $validator->notEmpty(['title', 'created']);
- $this->assertFalse($validator->field('title')->isEmptyAllowed());
- $this->assertFalse($validator->field('created')->isEmptyAllowed());
- $validator->notEmpty([
- 'title' => [
- 'when' => false
- ],
- 'content' => [
- 'when' => 'update'
- ],
- 'posted_at' => [
- 'when' => 'create'
- ],
- 'show_at' => [
- 'message' => 'Show date cannot be empty',
- 'when' => false
- ],
- 'subject'
- ], 'Not empty', true);
- $this->assertFalse($validator->field('title')->isEmptyAllowed());
- $this->assertTrue($validator->isEmptyAllowed('content', true));
- $this->assertFalse($validator->isEmptyAllowed('content', false));
- $this->assertFalse($validator->isEmptyAllowed('posted_at', true));
- $this->assertTrue($validator->isEmptyAllowed('posted_at', false));
- $this->assertTrue($validator->field('subject')->isEmptyAllowed());
- $errors = $validator->errors([
- 'title' => '',
- 'content' => '',
- 'posted_at' => null,
- 'show_at' => null,
- 'subject' => ''
- ], false);
- $expected = [
- 'title' => ['_empty' => 'Not empty'],
- 'content' => ['_empty' => 'Not empty'],
- 'show_at' => ['_empty' => 'Show date cannot be empty']
- ];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests the notEmpty failure case
- *
- * @return void
- */
- public function testNotEmptyAsArrayFailure()
- {
- $this->expectException(\InvalidArgumentException::class);
- $validator = new Validator();
- $validator->notEmpty(['title' => 'derp', 'created' => false]);
- }
- /**
- * 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 messages generated when a field is allowed to be empty
- *
- * @return void
- */
- public function testCustomErrorsWithAllowedEmpty()
- {
- $validator = new Validator();
- $validator->allowEmpty('title', false, 'Custom message');
- $errors = $validator->errors(['title' => null]);
- $expected = ['title' => ['_empty' => 'Custom message']];
- $this->assertEquals($expected, $errors);
- }
- /**
- * Tests custom error messages 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->getMockBuilder('\stdClass')
- ->setMethods(['isCool'])
- ->getMock();
- $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->getMockBuilder('\stdClass')
- ->setMethods(['isCool'])
- ->getMock();
- $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 interface
- *
- * @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 interface
- *
- * @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 testArrayAccessUnset()
- {
- $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 testAddMultiple()
- {
- $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 lengthBetween proxy method
- *
- * @return void
- */
- public function testLengthBetweenFailure()
- {
- $this->expectException(\InvalidArgumentException::class);
- $validator = new Validator();
- $validator->lengthBetween('username', [7]);
- }
- /**
- * 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->assertEmpty($validator->errors(['username' => 5]));
- $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 localizedTime proxy method
- *
- * @return void
- */
- public function testLocalizedTime()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'localizedTime', 'date', ['date']);
- $this->assertNotEmpty($validator->errors(['username' => 'not a date']));
- }
- /**
- * 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 minLength proxy method
- *
- * @return void
- */
- public function testMinLength()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'minLength', 2, [2]);
- $this->assertNotEmpty($validator->errors(['username' => 'a']));
- }
- /**
- * Tests the minLengthBytes proxy method
- *
- * @return void
- */
- public function testMinLengthBytes()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'minLengthBytes', 11, [11]);
- $this->assertNotEmpty($validator->errors(['username' => 'ÆΔΩЖÇ']));
- }
- /**
- * 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 maxLengthBytes proxy method
- *
- * @return void
- */
- public function testMaxLengthBytes()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'maxLengthBytes', 9, [9]);
- $this->assertNotEmpty($validator->errors(['username' => 'ÆΔΩЖÇ']));
- }
- /**
- * Tests the numeric proxy method
- *
- * @return void
- */
- public function testNumeric()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'numeric');
- $this->assertEmpty($validator->errors(['username' => '22']));
- $this->assertNotEmpty($validator->errors(['username' => 'a']));
- }
- /**
- * 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 range failure case
- *
- * @return void
- */
- public function testRangeFailure()
- {
- $this->expectException(\InvalidArgumentException::class);
- $validator = new Validator();
- $validator->range('username', [1]);
- }
- /**
- * 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 email proxy method
- *
- * @return void
- */
- public function testEmail()
- {
- $validator = new Validator();
- $validator->email('username');
- $this->assertEmpty($validator->errors(['username' => 'test@example.com']));
- $this->assertNotEmpty($validator->errors(['username' => 'not an email']));
- }
- /**
- * 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']));
- }
- /**
- * Tests the isArray proxy method
- *
- * @return void
- */
- public function testIsArray()
- {
- $validator = new Validator();
- $validator->isArray('username');
- $this->assertEmpty($validator->errors(['username' => [1, 2, 3]]));
- $this->assertNotEmpty($validator->errors(['username' => 'is not an array']));
- }
- /**
- * Tests the scalar proxy method
- *
- * @return void
- */
- public function testScalar()
- {
- $validator = new Validator();
- $validator->scalar('username');
- $this->assertEmpty($validator->errors(['username' => 'scalar']));
- $this->assertNotEmpty($validator->errors(['username' => ['array']]));
- }
- /**
- * Tests the hexColor proxy method
- *
- * @return void
- */
- public function testHexColor()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'hexColor');
- $this->assertEmpty($validator->errors(['username' => '#FFFFFF']));
- $this->assertNotEmpty($validator->errors(['username' => 'FFFFFF']));
- }
- /**
- * Tests the multiple proxy method
- *
- * @return void
- */
- public function testMultiple()
- {
- $validator = new Validator();
- $this->assertProxyMethod(
- $validator,
- 'multipleOptions',
- ['min' => 1, 'caseInsensitive' => true],
- [['min' => 1], true],
- 'multiple'
- );
- $this->assertProxyMethod(
- $validator,
- 'multipleOptions',
- ['min' => 1, 'caseInsensitive' => false],
- [['min' => 1], false],
- 'multiple'
- );
- $this->assertNotEmpty($validator->errors(['username' => '']));
- }
- /**
- * Tests the hasAtLeast method
- *
- * @return void
- */
- public function testHasAtLeast()
- {
- $validator = new Validator();
- $validator->hasAtLeast('things', 3);
- $this->assertEmpty($validator->errors(['things' => [1, 2, 3]]));
- $this->assertEmpty($validator->errors(['things' => [1, 2, 3, 4]]));
- $this->assertNotEmpty($validator->errors(['things' => [1, 2]]));
- $this->assertNotEmpty($validator->errors(['things' => []]));
- $this->assertNotEmpty($validator->errors(['things' => 'string']));
- $this->assertEmpty($validator->errors(['things' => ['_ids' => [1, 2, 3]]]));
- $this->assertEmpty($validator->errors(['things' => ['_ids' => [1, 2, 3, 4]]]));
- $this->assertNotEmpty($validator->errors(['things' => ['_ids' => [1, 2]]]));
- $this->assertNotEmpty($validator->errors(['things' => ['_ids' => []]]));
- $this->assertNotEmpty($validator->errors(['things' => ['_ids' => 'string']]));
- }
- /**
- * Tests the hasAtMost method
- *
- * @return void
- */
- public function testHasAtMost()
- {
- $validator = new Validator();
- $validator->hasAtMost('things', 3);
- $this->assertEmpty($validator->errors(['things' => [1, 2, 3]]));
- $this->assertEmpty($validator->errors(['things' => [1]]));
- $this->assertNotEmpty($validator->errors(['things' => [1, 2, 3, 4]]));
- $this->assertEmpty($validator->errors(['things' => ['_ids' => [1, 2, 3]]]));
- $this->assertEmpty($validator->errors(['things' => ['_ids' => [1, 2]]]));
- $this->assertNotEmpty($validator->errors(['things' => ['_ids' => [1, 2, 3, 4]]]));
- }
- /**
- * Tests the regex proxy method
- *
- * @return void
- */
- public function testRegex()
- {
- $validator = new Validator();
- $this->assertProxyMethod($validator, 'regex', '/(?<!\\S)\\d++(?!\\S)/', ['/(?<!\\S)\\d++(?!\\S)/'], 'custom');
- $this->assertEmpty($validator->errors(['username' => '123']));
- $this->assertNotEmpty($validator->errors(['username' => 'Foo']));
- }
- /**
- * Tests that a rule in the Validator class exists and was configured as expected.
- *
- * @param Validator $validator
- * @param string $method
- * @param mixed $extra
- * @param array $pass
- * @param string|null $name
- */
- 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->assertNotEmpty($rule, "Rule was not found for $method");
- $this->assertNull($rule->get('message'), 'Message is present when it should not be');
- $this->assertNull($rule->get('on'), 'On clause is present when it should not be');
- $this->assertEquals($name, $rule->get('rule'), 'Rule name does not match');
- $this->assertEquals($pass, $rule->get('pass'), 'Passed options are different');
- $this->assertEquals('default', $rule->get('provider'), 'Provider does not match');
- 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'), 'Error messages are not the same');
- $this->assertEquals('create', $rule->get('on'), 'On clause is wrong');
- }
- /**
- * Testing adding DefaultProvider
- *
- * @return void
- */
- public function testAddingDefaultProvider()
- {
- $validator = new Validator();
- $this->assertEmpty($validator->providers(), 'Providers should be empty');
- Validator::addDefaultProvider('test-provider', 'MyNameSpace\Validation\MyProvider');
- $validator = new Validator();
- $this->assertEquals($validator->providers(), ['test-provider'], 'Default provider `test-provider` is missing');
- }
- /**
- * Testing getting DefaultProvider(s)
- *
- * @return void
- */
- public function testGetDefaultProvider()
- {
- Validator::addDefaultProvider('test-provider', 'MyNameSpace\Validation\MyProvider');
- $this->assertEquals(Validator::getDefaultProvider('test-provider'), 'MyNameSpace\Validation\MyProvider', 'Default provider `test-provider` is missing');
- $this->assertNull(Validator::getDefaultProvider('invalid-provider'), 'Default provider (`invalid-provider`) should be missing');
- $this->assertNull(Validator::getDefaultProvider(null), 'Default provider (null) should be missing');
- Validator::addDefaultProvider('test-provider2', 'MyNameSpace\Validation\MySecondProvider');
- $this->assertEquals(Validator::getDefaultProviders(), ['test-provider', 'test-provider2'], 'Default providers incorrect');
- }
- }
|