| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168 |
- <?php
- /**
- * ModelValidationTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @package Cake.Test.Case.Model
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- require_once dirname(__FILE__) . DS . 'ModelTestBase.php';
- /**
- * ModelValidationTest
- *
- * @package Cake.Test.Case.Model
- */
- class ModelValidationTest extends BaseModelTest {
- /**
- * Tests validation parameter order in custom validation methods
- *
- * @return void
- */
- public function testValidationParams() {
- $TestModel = new ValidationTest1();
- $TestModel->validate['title'] = array(
- 'rule' => 'customValidatorWithParams',
- 'required' => true
- );
- $TestModel->create(array('title' => 'foo'));
- $TestModel->invalidFields();
- $expected = array(
- 'data' => array(
- 'title' => 'foo'
- ),
- 'validator' => array(
- 'rule' => 'customValidatorWithParams',
- 'on' => null,
- 'last' => true,
- 'allowEmpty' => false,
- 'required' => true
- ),
- 'or' => true,
- 'ignoreOnSame' => 'id'
- );
- $this->assertEquals($expected, $TestModel->validatorParams);
- $TestModel->validate['title'] = array(
- 'rule' => 'customValidatorWithMessage',
- 'required' => true
- );
- $expected = array(
- 'title' => array('This field will *never* validate! Muhahaha!')
- );
- $this->assertEquals($expected, $TestModel->invalidFields());
- $TestModel->validate['title'] = array(
- 'rule' => array('customValidatorWithSixParams', 'one', 'two', null, 'four'),
- 'required' => true
- );
- $TestModel->create(array('title' => 'foo'));
- $TestModel->invalidFields();
- $expected = array(
- 'data' => array(
- 'title' => 'foo'
- ),
- 'one' => 'one',
- 'two' => 'two',
- 'three' => null,
- 'four' => 'four',
- 'five' => array(
- 'rule' => array(1 => 'one', 2 => 'two', 3 => null, 4 => 'four'),
- 'on' => null,
- 'last' => true,
- 'allowEmpty' => false,
- 'required' => true
- ),
- 'six' => 6
- );
- $this->assertEquals($expected, $TestModel->validatorParams);
- $TestModel->validate['title'] = array(
- 'rule' => array('customValidatorWithSixParams', 'one', array('two'), null, 'four', array('five' => 5)),
- 'required' => true
- );
- $TestModel->create(array('title' => 'foo'));
- $TestModel->invalidFields();
- $expected = array(
- 'data' => array(
- 'title' => 'foo'
- ),
- 'one' => 'one',
- 'two' => array('two'),
- 'three' => null,
- 'four' => 'four',
- 'five' => array('five' => 5),
- 'six' => array(
- 'rule' => array(1 => 'one', 2 => array('two'), 3 => null, 4 => 'four', 5 => array('five' => 5)),
- 'on' => null,
- 'last' => true,
- 'allowEmpty' => false,
- 'required' => true
- )
- );
- $this->assertEquals($expected, $TestModel->validatorParams);
- }
- /**
- * Tests validation parameter fieldList in invalidFields
- *
- * @return void
- */
- public function testInvalidFieldsWithFieldListParams() {
- $TestModel = new ValidationTest1();
- $TestModel->validate = $validate = array(
- 'title' => array(
- 'rule' => 'alphaNumeric',
- 'required' => true
- ),
- 'name' => array(
- 'rule' => 'alphaNumeric',
- 'required' => true
- ));
- $TestModel->set(array('title' => '$$', 'name' => '##'));
- $TestModel->invalidFields(array('fieldList' => array('title')));
- $expected = array(
- 'title' => array('This field cannot be left blank')
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- $TestModel->validationErrors = array();
- $TestModel->invalidFields(array('fieldList' => array('name')));
- $expected = array(
- 'name' => array('This field cannot be left blank')
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- $TestModel->validationErrors = array();
- $TestModel->invalidFields(array('fieldList' => array('name', 'title')));
- $expected = array(
- 'name' => array('This field cannot be left blank'),
- 'title' => array('This field cannot be left blank')
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- $TestModel->validationErrors = array();
- $TestModel->whitelist = array('name');
- $TestModel->invalidFields();
- $expected = array('name' => array('This field cannot be left blank'));
- $this->assertEquals($expected, $TestModel->validationErrors);
- $this->assertEquals($TestModel->validate, $validate);
- }
- /**
- * Test that invalidFields() integrates well with save(). And that fieldList can be an empty type.
- *
- * @return void
- */
- public function testInvalidFieldsWhitelist() {
- $TestModel = new ValidationTest1();
- $TestModel->validate = array(
- 'title' => array(
- 'rule' => 'alphaNumeric',
- 'required' => true
- ),
- 'name' => array(
- 'rule' => 'alphaNumeric',
- 'required' => true
- ));
- $TestModel->whitelist = array('name');
- $TestModel->save(array('name' => '#$$#', 'title' => '$$$$'));
- $expected = array('name' => array('This field cannot be left blank'));
- $this->assertEquals($expected, $TestModel->validationErrors);
- }
- /**
- * testValidates method
- *
- * @return void
- */
- public function testValidates() {
- $TestModel = new TestValidate();
- $TestModel->validate = array(
- 'user_id' => 'numeric',
- 'title' => array('allowEmpty' => false, 'rule' => 'notEmpty'),
- 'body' => 'notEmpty'
- );
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => '',
- 'body' => 'body'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 'title',
- 'body' => 'body'
- ));
- $result = $TestModel->create($data) && $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => '0',
- 'body' => 'body'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate['modified'] = array('allowEmpty' => true, 'rule' => 'date');
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'modified' => ''
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'modified' => '2007-05-01'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'modified' => 'invalid-date-here'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'modified' => 0
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'modified' => '0'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $TestModel->validate['modified'] = array('allowEmpty' => false, 'rule' => 'date');
- $data = array('TestValidate' => array('modified' => null));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array('modified' => false));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array('modified' => ''));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'modified' => '2007-05-01'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate['slug'] = array('allowEmpty' => false, 'rule' => array('maxLength', 45));
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'slug' => ''
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'slug' => 'slug-right-here'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'user_id' => '1',
- 'title' => 0,
- 'body' => 'body',
- 'slug' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $TestModel->validate = array(
- 'number' => array(
- 'rule' => 'validateNumber',
- 'min' => 3,
- 'max' => 5
- ),
- 'title' => array(
- 'allowEmpty' => false,
- 'rule' => 'notEmpty'
- ));
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => '0'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => 0
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => '3'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => 3
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate = array(
- 'number' => array(
- 'rule' => 'validateNumber',
- 'min' => 5,
- 'max' => 10
- ),
- 'title' => array(
- 'allowEmpty' => false,
- 'rule' => 'notEmpty'
- ));
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => '3'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'title' => 'title',
- 'number' => 3
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $TestModel->validate = array(
- 'title' => array(
- 'allowEmpty' => false,
- 'rule' => 'validateTitle'
- ));
- $data = array('TestValidate' => array('title' => ''));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array('title' => 'new title'));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array('title' => 'title-new'));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate = array('title' => array(
- 'allowEmpty' => true,
- 'rule' => 'validateTitle'
- ));
- $data = array('TestValidate' => array('title' => ''));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate = array(
- 'title' => array(
- 'length' => array(
- 'allowEmpty' => true,
- 'rule' => array('maxLength', 10)
- )));
- $data = array('TestValidate' => array('title' => ''));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate = array(
- 'title' => array(
- 'rule' => array('userDefined', 'Article', 'titleDuplicate')
- ));
- $data = array('TestValidate' => array('title' => 'My Article Title'));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $data = array('TestValidate' => array(
- 'title' => 'My Article With a Different Title'
- ));
- $result = $TestModel->create($data);
- $this->assertEquals($data, $result);
- $result = $TestModel->validates();
- $this->assertTrue($result);
- $TestModel->validate = array(
- 'title' => array(
- 'tooShort' => array('rule' => array('minLength', 50)),
- 'onlyLetters' => array('rule' => '/^[a-z]+$/i')
- ),
- );
- $data = array('TestValidate' => array(
- 'title' => 'I am a short string'
- ));
- $TestModel->create($data);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $result = $TestModel->validationErrors;
- $expected = array(
- 'title' => array('tooShort')
- );
- $this->assertEquals($expected, $result);
- $TestModel->validate = array(
- 'title' => array(
- 'tooShort' => array(
- 'rule' => array('minLength', 50),
- 'last' => false
- ),
- 'onlyLetters' => array('rule' => '/^[a-z]+$/i')
- ),
- );
- $data = array('TestValidate' => array(
- 'title' => 'I am a short string'
- ));
- $TestModel->create($data);
- $result = $TestModel->validates();
- $this->assertFalse($result);
- $result = $TestModel->validationErrors;
- $expected = array(
- 'title' => array('tooShort', 'onlyLetters')
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test that validates() checks all the 'with' associations as well for validation
- * as this can cause partial/wrong data insertion.
- *
- * @return void
- */
- public function testValidatesWithAssociations() {
- $this->loadFixtures('Something', 'SomethingElse', 'JoinThing');
- $data = array(
- 'Something' => array(
- 'id' => 5,
- 'title' => 'Extra Fields',
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- ),
- 'SomethingElse' => array(
- array('something_else_id' => 1, 'doomed' => '')
- )
- );
- $Something = new Something();
- $JoinThing = $Something->JoinThing;
- $JoinThing->validate = array('doomed' => array('rule' => 'notEmpty'));
- $expectedError = array('doomed' => array('This field cannot be left blank'));
- $Something->create();
- $result = $Something->save($data);
- $this->assertFalse($result, 'Save occurred even when with models failed. %s');
- $this->assertEquals($expectedError, $JoinThing->validationErrors);
- $count = $Something->find('count', array('conditions' => array('Something.id' => $data['Something']['id'])));
- $this->assertSame($count, 0);
- $data = array(
- 'Something' => array(
- 'id' => 5,
- 'title' => 'Extra Fields',
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- ),
- 'SomethingElse' => array(
- array('something_else_id' => 1, 'doomed' => 1),
- array('something_else_id' => 1, 'doomed' => '')
- )
- );
- $Something->create();
- $result = $Something->save($data);
- $this->assertFalse($result, 'Save occurred even when with models failed. %s');
- $joinRecords = $JoinThing->find('count', array(
- 'conditions' => array('JoinThing.something_id' => $data['Something']['id'])
- ));
- $this->assertEquals(0, $joinRecords, 'Records were saved on the join table. %s');
- }
- /**
- * test that saveAll and with models with validation interact well
- *
- * @return void
- */
- public function testValidatesWithModelsAndSaveAll() {
- $data = array(
- 'Something' => array(
- 'id' => 5,
- 'title' => 'Extra Fields',
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- ),
- 'SomethingElse' => array(
- array('something_else_id' => 1, 'doomed' => '')
- )
- );
- $Something = new Something();
- $JoinThing = $Something->JoinThing;
- $JoinThing->validate = array('doomed' => array('rule' => 'notEmpty'));
- $expectedError = array('doomed' => array('This field cannot be left blank'));
- $Something->create();
- $result = $Something->saveAll($data, array('validate' => 'only'));
- $this->assertFalse($result);
- $this->assertEquals($expectedError, $JoinThing->validationErrors);
- $Something->create();
- $result = $Something->saveAll($data, array('validate' => 'first'));
- $this->assertFalse($result);
- $this->assertEquals($expectedError, $JoinThing->validationErrors);
- $count = $Something->find('count', array('conditions' => array('Something.id' => $data['Something']['id'])));
- $this->assertSame($count, 0);
- $joinRecords = $JoinThing->find('count', array(
- 'conditions' => array('JoinThing.something_id' => $data['Something']['id'])
- ));
- $this->assertEquals(0, $joinRecords, 'Records were saved on the join table. %s');
- }
- /**
- * test that saveAll and with models at initial insert (no id has set yet)
- * with validation interact well
- *
- * @return void
- */
- public function testValidatesWithModelsAndSaveAllWithoutId() {
- $this->loadFixtures('Post', 'Author');
- $data = array(
- 'Author' => array(
- 'name' => 'Foo Bar',
- ),
- 'Post' => array(
- array('title' => 'Hello'),
- array('title' => 'World'),
- )
- );
- $Author = new Author();
- $Post = $Author->Post;
- $Post->validate = array('author_id' => array('rule' => 'numeric'));
- $Author->create();
- $result = $Author->saveAll($data, array('validate' => 'only'));
- $this->assertTrue($result);
- $Author->create();
- $result = $Author->saveAll($data, array('validate' => 'first'));
- $this->assertTrue($result);
- $this->assertFalse(is_null($Author->id));
- $id = $Author->id;
- $count = $Author->find('count', array('conditions' => array('Author.id' => $id)));
- $this->assertSame($count, 1);
- $count = $Post->find('count', array(
- 'conditions' => array('Post.author_id' => $id)
- ));
- $this->assertEquals($count, count($data['Post']));
- }
- /**
- * Test that missing validation methods trigger errors in development mode.
- * Helps to make development easier.
- *
- * @expectedException PHPUnit_Framework_Error
- * @return void
- */
- public function testMissingValidationErrorTriggering() {
- Configure::write('debug', 2);
- $TestModel = new ValidationTest1();
- $TestModel->create(array('title' => 'foo'));
- $TestModel->validate = array(
- 'title' => array(
- 'rule' => array('thisOneBringsThePain'),
- 'required' => true
- )
- );
- $TestModel->invalidFields(array('fieldList' => array('title')));
- }
- /**
- * Test that missing validation methods does not trigger errors in production mode.
- *
- * @return void
- */
- public function testMissingValidationErrorNoTriggering() {
- Configure::write('debug', 0);
- $TestModel = new ValidationTest1();
- $TestModel->create(array('title' => 'foo'));
- $TestModel->validate = array(
- 'title' => array(
- 'rule' => array('thisOneBringsThePain'),
- 'required' => true
- )
- );
- $TestModel->invalidFields(array('fieldList' => array('title')));
- $this->assertEquals(array(), $TestModel->validationErrors);
- }
- /**
- * Test placeholder replacement when validation message is an array
- *
- * @return void
- */
- public function testValidationMessageAsArray() {
- $TestModel = new ValidationTest1();
- $TestModel->validate = array(
- 'title' => array(
- 'minLength' => array(
- 'rule' => array('minLength', 6),
- 'required' => true,
- 'message' => 'Minimum length allowed is %d chars',
- 'last' => false
- ),
- 'between' => array(
- 'rule' => array('between', 5, 15),
- 'message' => array('You may enter up to %s chars (minimum is %s chars)', 14, 6)
- )
- )
- );
- $TestModel->create();
- $TestModel->invalidFields();
- $expected = array(
- 'title' => array(
- 'Minimum length allowed is 6 chars',
- )
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- $TestModel->create(array('title' => 'foo'));
- $TestModel->invalidFields();
- $expected = array(
- 'title' => array(
- 'Minimum length allowed is 6 chars',
- 'You may enter up to 14 chars (minimum is 6 chars)'
- )
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- }
- /**
- * Test validation message translation
- *
- * @return void
- */
- public function testValidationMessageTranslation() {
- $lang = Configure::read('Config.language');
- Configure::write('Config.language', 'en');
- App::build(array(
- 'Locale' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Locale' . DS),
- ), App::RESET);
- $TestModel = new ValidationTest1();
- $TestModel->validationDomain = 'validation_messages';
- $TestModel->validate = array(
- 'title' => array(
- array(
- 'rule' => array('customValidationMethod', 'arg1'),
- 'required' => true,
- 'message' => 'Validation failed: %s'
- )
- )
- );
- $TestModel->create();
- $TestModel->invalidFields();
- $expected = array(
- 'title' => array(
- 'Translated validation failed: Translated arg1',
- )
- );
- $this->assertEquals($expected, $TestModel->validationErrors);
- $TestModel->validationDomain = 'default';
- Configure::write('Config.language', $lang);
- App::build();
- }
- /**
- * Test for 'on' => [create|update] in validation rules.
- *
- * @return void
- */
- public function testStateValidation() {
- $this->loadFixtures('Article');
- $Article = new Article();
- $data = array(
- 'Article' => array(
- 'title' => '',
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- )
- );
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'on' => 'create'
- )
- )
- );
- $Article->create($data);
- $this->assertFalse($Article->validates());
- $Article->save(null, array('validate' => false));
- $data['Article']['id'] = $Article->id;
- $Article->set($data);
- $this->assertTrue($Article->validates());
- unset($data['Article']['id']);
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'on' => 'update'
- )
- )
- );
- $Article->create($data);
- $this->assertTrue($Article->validates());
- $Article->save(null, array('validate' => false));
- $data['Article']['id'] = $Article->id;
- $Article->set($data);
- $this->assertFalse($Article->validates());
- }
- /**
- * Test for 'required' => [create|update] in validation rules.
- *
- * @return void
- */
- public function testStateRequiredValidation() {
- $this->loadFixtures('Article');
- $Article = new Article();
- // no title field present
- $data = array(
- 'Article' => array(
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- )
- );
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'create'
- )
- )
- );
- $Article->create($data);
- $this->assertFalse($Article->validates());
- $Article->save(null, array('validate' => false));
- $data['Article']['id'] = $Article->id;
- $Article->set($data);
- $this->assertTrue($Article->validates());
- unset($data['Article']['id']);
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'update'
- )
- )
- );
- $Article->create($data);
- $this->assertTrue($Article->validates());
- $Article->save(null, array('validate' => false));
- $data['Article']['id'] = $Article->id;
- $Article->set($data);
- $this->assertFalse($Article->validates());
- }
- /**
- * Test that 'required' and 'on' are not conflicting
- *
- * @return void
- */
- public function testOnRequiredConflictValidation() {
- $this->loadFixtures('Article');
- $Article = new Article();
- // no title field present
- $data = array(
- 'Article' => array(
- 'body' => 'Extra Fields Body',
- 'published' => '1'
- )
- );
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'create',
- 'on' => 'create'
- )
- )
- );
- $Article->create($data);
- $this->assertFalse($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'update',
- 'on' => 'create'
- )
- )
- );
- $Article->create($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'create',
- 'on' => 'update'
- )
- )
- );
- $Article->create($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'update',
- 'on' => 'update'
- )
- )
- );
- $Article->create($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'create',
- 'on' => 'create'
- )
- )
- );
- $Article->save(null, array('validate' => false));
- $data['Article']['id'] = $Article->id;
- $Article->set($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'update',
- 'on' => 'create'
- )
- )
- );
- $Article->set($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'create',
- 'on' => 'update'
- )
- )
- );
- $Article->set($data);
- $this->assertTrue($Article->validates());
- $Article->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => 'update',
- 'on' => 'update'
- )
- )
- );
- $Article->set($data);
- $this->assertFalse($Article->validates());
- }
- /**
- * Tests that altering data in a beforeValidate callback will lead to saving those
- * values in database
- *
- * @return void
- */
- public function testValidateFirstWithBeforeValidate() {
- $this->loadFixtures('Article', 'User');
- $model = new CustomArticle();
- $model->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => true,
- 'allowEmpty' => false
- )
- )
- );
- $data = array(
- 'CustomArticle' => array(
- 'body' => 'foo0'
- )
- );
- $result = $model->saveAll($data, array('validate' => 'first'));
- $this->assertTrue($result);
- $this->assertFalse($model->findMethods['unPublished'], 'beforeValidate was run twice');
- $model->findMethods['unPublished'] = true;
- $data = array(
- 'CustomArticle' => array(
- 'body' => 'foo1'
- )
- );
- $result = $model->saveAll($data, array('validate' => 'first', 'deep' => true));
- $this->assertTrue($result);
- $title = $model->field('title', array('body' => 'foo1'));
- $this->assertEquals('foo', $title);
- $this->assertFalse($model->findMethods['unPublished'], 'beforeValidate was run twice');
- $data = array(
- array('body' => 'foo2'),
- array('body' => 'foo3'),
- array('body' => 'foo4')
- );
- $result = $model->saveAll($data, array('validate' => 'first'));
- $this->assertTrue($result);
- $result = $model->saveAll($data, array('validate' => 'first', 'deep' => true));
- $this->assertTrue($result);
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo2')));
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo3')));
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo4')));
- }
- /**
- * Tests that altering data in a beforeValidate callback will lead to saving those
- * values in database
- *
- * @return void
- */
- public function testValidateFirstAssociatedWithBeforeValidate() {
- $this->loadFixtures('Article', 'User');
- $model = new CustomArticle();
- $model->validate = array(
- 'title' => array(
- 'notempty' => array(
- 'rule' => 'notEmpty',
- 'required' => true
- )
- )
- );
- $articles = array(
- array('body' => 'foo1'),
- array('body' => 'foo2'),
- array('body' => 'foo3')
- );
- $user = new User();
- $user->hasMany['CustomArticle'] = array('foreignKey' => 'user_id');
- $data = array(
- 'User' => array('user' => 'foo', 'password' => 'bar'),
- 'CustomArticle' => $articles
- );
- $result = $user->saveAll($data, array('validate' => 'first'));
- $this->assertTrue($result);
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo1')));
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo2')));
- $this->assertEquals('foo', $model->field('title', array('body' => 'foo3')));
- }
- /**
- * testValidateFirstWithDefaults method
- *
- * return @void
- */
- public function testFirstWithDefaults() {
- $this->loadFixtures('Article', 'Tag', 'Comment', 'User', 'ArticlesTag');
- $TestModel = new Article();
- $result = $TestModel->find('first', array(
- 'conditions' => array('Article.id' => 1)
- ));
- $expected = array(
- 'Article' => array(
- 'id' => 1,
- 'user_id' => 1,
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23'
- ),
- );
- unset($result['Article']['updated']);
- $this->assertEquals($expected['Article'], $result['Article']);
- $data = array(
- 'Article' => array(
- 'id' => 1,
- 'title' => 'First Article (modified)'
- ),
- 'Comment' => array(
- array('comment' => 'Article comment', 'user_id' => 1)
- )
- );
- $result = $TestModel->saveAll($data, array('validate' => 'first'));
- $this->assertTrue($result);
- $result = $TestModel->find('first', array(
- 'conditions' => array('Article.id' => 1)
- ));
- $expected['Article']['title'] = 'First Article (modified)';
- unset($result['Article']['updated']);
- $this->assertEquals($expected['Article'], $result['Article']);
- }
- }
|