| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040 |
- <?php
- /* SVN FILE: $Id: model.test.php 8225 2009-07-08 03:25:30Z mark_story $ */
- /**
- * ModelIntegrationTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
- * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
- * @package cake.tests.cases.libs.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';
- App::uses('DboSource', 'Model/Datasource');
- /**
- * DboMock class
- * A Dbo Source driver to mock a connection and a identity name() method
- */
- class DboMock extends DboSource {
- /**
- * Returns the $field without modifications
- */
- public function name($field) {
- return $field;
- }
- /**
- * Returns true to fake a database connection
- */
- public function connect() {
- return true;
- }
- }
- /**
- * ModelIntegrationTest
- *
- * @package cake.tests.cases.libs.model.operations
- */
- class ModelIntegrationTest extends BaseModelTest {
- /**
- * testAssociationLazyLoading
- *
- * @group lazyloading
- * @return void
- */
- public function testAssociationLazyLoading() {
- $this->loadFixtures('ArticleFeaturedsTags');
- $Article = new ArticleFeatured();
- $this->assertTrue(isset($Article->belongsTo['User']));
- $this->assertFalse(property_exists($Article, 'User'));
- $this->assertInstanceOf('User', $Article->User);
- $this->assertTrue(isset($Article->belongsTo['Category']));
- $this->assertFalse(property_exists($Article, 'Category'));
- $this->assertTrue(isset($Article->Category));
- $this->assertInstanceOf('Category', $Article->Category);
- $this->assertTrue(isset($Article->hasMany['Comment']));
- $this->assertFalse(property_exists($Article, 'Comment'));
- $this->assertTrue(isset($Article->Comment));
- $this->assertInstanceOf('Comment', $Article->Comment);
- $this->assertTrue(isset($Article->hasAndBelongsToMany['Tag']));
- //There was not enough information to setup the association (joinTable and associationForeignKey)
- //so the model was not lazy loaded
- $this->assertTrue(property_exists($Article, 'Tag'));
- $this->assertTrue(isset($Article->Tag));
- $this->assertInstanceOf('Tag', $Article->Tag);
- $this->assertFalse(property_exists($Article, 'ArticleFeaturedsTag'));
- $this->assertInstanceOf('AppModel', $Article->ArticleFeaturedsTag);
- $this->assertEquals($Article->hasAndBelongsToMany['Tag']['joinTable'], 'article_featureds_tags');
- $this->assertEquals($Article->hasAndBelongsToMany['Tag']['associationForeignKey'], 'tag_id');
- }
- /**
- * testAssociationLazyLoadWithHABTM
- *
- * @group lazyloading
- * @return void
- */
- public function testAssociationLazyLoadWithHABTM() {
- $this->loadFixtures('FruitsUuidTag', 'ArticlesTag');
- $this->db->cacheSources = false;
- $Article = new ArticleB();
- $this->assertTrue(isset($Article->hasAndBelongsToMany['TagB']));
- $this->assertFalse(property_exists($Article, 'TagB'));
- $this->assertInstanceOf('TagB', $Article->TagB);
- $this->assertFalse(property_exists($Article, 'ArticlesTag'));
- $this->assertInstanceOf('AppModel', $Article->ArticlesTag);
- $UuidTag = new UuidTag();
- $this->assertTrue(isset($UuidTag->hasAndBelongsToMany['Fruit']));
- $this->assertFalse(property_exists($UuidTag, 'Fruit'));
- $this->assertFalse(property_exists($UuidTag, 'FruitsUuidTag'));
- $this->assertTrue(isset($UuidTag->Fruit));
- $this->assertFalse(property_exists($UuidTag, 'FruitsUuidTag'));
- $this->assertTrue(isset($UuidTag->FruitsUuidTag));
- $this->assertInstanceOf('FruitsUuidTag', $UuidTag->FruitsUuidTag);
- }
- /**
- * testAssociationLazyLoadWithBindModel
- *
- * @group lazyloading
- * @return void
- */
- public function testAssociationLazyLoadWithBindModel() {
- $this->loadFixtures('Article', 'User');
- $Article = new ArticleB();
- $this->assertFalse(isset($Article->belongsTo['User']));
- $this->assertFalse(property_exists($Article, 'User'));
- $Article->bindModel(array('belongsTo' => array('User')));
- $this->assertTrue(isset($Article->belongsTo['User']));
- $this->assertFalse(property_exists($Article, 'User'));
- $this->assertInstanceOf('User', $Article->User);
- }
- /**
- * Tests that creating a model with no existent database table associated will throw an exception
- *
- * @expectedException MissingTableException
- * @return void
- */
- public function testMissingTable() {
- $Article = new ArticleB(false, uniqid());
- $Article->schema();
- }
- /**
- * testPkInHAbtmLinkModelArticleB
- *
- * @access public
- * @return void
- */
- public function testPkInHabtmLinkModelArticleB() {
- $this->loadFixtures('Article', 'Tag', 'ArticlesTag');
- $TestModel2 = new ArticleB();
- $this->assertEqual($TestModel2->ArticlesTag->primaryKey, 'article_id');
- }
- /**
- * Tests that $cacheSources can only be disabled in the db using model settings, not enabled
- *
- * @access public
- * @return void
- */
- public function testCacheSourcesDisabling() {
- $this->loadFixtures('JoinA', 'JoinB', 'JoinAB', 'JoinC', 'JoinAC');
- $this->db->cacheSources = true;
- $TestModel = new JoinA();
- $TestModel->cacheSources = false;
- $TestModel->setSource('join_as');
- $this->assertFalse($this->db->cacheSources);
- $this->db->cacheSources = false;
- $TestModel = new JoinA();
- $TestModel->cacheSources = true;
- $TestModel->setSource('join_as');
- $this->assertFalse($this->db->cacheSources);
- }
- /**
- * testPkInHabtmLinkModel method
- *
- * @access public
- * @return void
- */
- public function testPkInHabtmLinkModel() {
- //Test Nonconformant Models
- $this->loadFixtures('Content', 'ContentAccount', 'Account', 'JoinC', 'JoinAC', 'ItemsPortfolio');
- $TestModel = new Content();
- $this->assertEqual($TestModel->ContentAccount->primaryKey, 'iContentAccountsId');
- //test conformant models with no PK in the join table
- $this->loadFixtures('Article', 'Tag');
- $TestModel2 = new Article();
- $this->assertEqual($TestModel2->ArticlesTag->primaryKey, 'article_id');
- //test conformant models with PK in join table
- $TestModel3 = new Portfolio();
- $this->assertEqual($TestModel3->ItemsPortfolio->primaryKey, 'id');
- //test conformant models with PK in join table - join table contains extra field
- $this->loadFixtures('JoinA', 'JoinB', 'JoinAB');
- $TestModel4 = new JoinA();
- $this->assertEqual($TestModel4->JoinAsJoinB->primaryKey, 'id');
- }
- /**
- * testDynamicBehaviorAttachment method
- *
- * @access public
- * @return void
- */
- public function testDynamicBehaviorAttachment() {
- $this->loadFixtures('Apple', 'Sample', 'Author');
- $TestModel = new Apple();
- $this->assertEqual($TestModel->Behaviors->attached(), array());
- $TestModel->Behaviors->attach('Tree', array('left' => 'left_field', 'right' => 'right_field'));
- $this->assertTrue(is_object($TestModel->Behaviors->Tree));
- $this->assertEqual($TestModel->Behaviors->attached(), array('Tree'));
- $expected = array(
- 'parent' => 'parent_id',
- 'left' => 'left_field',
- 'right' => 'right_field',
- 'scope' => '1 = 1',
- 'type' => 'nested',
- '__parentChange' => false,
- 'recursive' => -1
- );
- $this->assertEqual($TestModel->Behaviors->Tree->settings['Apple'], $expected);
- $expected['enabled'] = false;
- $TestModel->Behaviors->attach('Tree', array('enabled' => false));
- $this->assertEqual($TestModel->Behaviors->Tree->settings['Apple'], $expected);
- $this->assertEqual($TestModel->Behaviors->attached(), array('Tree'));
- $TestModel->Behaviors->detach('Tree');
- $this->assertEqual($TestModel->Behaviors->attached(), array());
- $this->assertFalse(isset($TestModel->Behaviors->Tree));
- }
- /**
- * Tests cross database joins. Requires $test and $test2 to both be set in DATABASE_CONFIG
- * NOTE: When testing on MySQL, you must set 'persistent' => false on *both* database connections,
- * or one connection will step on the other.
- */
- public function testCrossDatabaseJoins() {
- $config = new DATABASE_CONFIG();
- $skip = (!isset($config->test) || !isset($config->test2));
- if ($skip) {
- $this->markTestSkipped('Primary and secondary test databases not configured, skipping cross-database
- join tests. To run theses tests defined $test and $test2 in your database configuration.'
- );
- }
- $this->loadFixtures('Article', 'Tag', 'ArticlesTag', 'User', 'Comment');
- $TestModel = new Article();
- $expected = array(
- array(
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:45:23',
- 'updated' => '2007-03-18 10:47:31'
- ),
- array(
- 'id' => '2',
- 'article_id' => '1',
- 'user_id' => '4',
- 'comment' => 'Second Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:47:23',
- 'updated' => '2007-03-18 10:49:31'
- ),
- array(
- 'id' => '3',
- 'article_id' => '1',
- 'user_id' => '1',
- 'comment' => 'Third Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:49:23',
- 'updated' => '2007-03-18 10:51:31'
- ),
- array(
- 'id' => '4',
- 'article_id' => '1',
- 'user_id' => '1',
- 'comment' => 'Fourth Comment for First Article',
- 'published' => 'N',
- 'created' => '2007-03-18 10:51:23',
- 'updated' => '2007-03-18 10:53:31'
- )),
- 'Tag' => array(
- array(
- 'id' => '1',
- 'tag' => 'tag1',
- 'created' => '2007-03-18 12:22:23',
- 'updated' => '2007-03-18 12:24:31'
- ),
- array(
- 'id' => '2',
- 'tag' => 'tag2',
- 'created' => '2007-03-18 12:24:23',
- 'updated' => '2007-03-18 12:26:31'
- ))),
- array(
- 'Article' => array(
- 'id' => '2',
- 'user_id' => '3',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- ),
- 'User' => array(
- 'id' => '3',
- 'user' => 'larry',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:20:23',
- 'updated' => '2007-03-17 01:22:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '5',
- 'article_id' => '2',
- 'user_id' => '1',
- 'comment' => 'First Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:53:23',
- 'updated' => '2007-03-18 10:55:31'
- ),
- array(
- 'id' => '6',
- 'article_id' => '2',
- 'user_id' => '2',
- 'comment' => 'Second Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:55:23',
- 'updated' => '2007-03-18 10:57:31'
- )),
- 'Tag' => array(
- array(
- 'id' => '1',
- 'tag' => 'tag1',
- 'created' => '2007-03-18 12:22:23',
- 'updated' => '2007-03-18 12:24:31'
- ),
- array(
- 'id' => '3',
- 'tag' => 'tag3',
- 'created' => '2007-03-18 12:26:23',
- 'updated' => '2007-03-18 12:28:31'
- ))),
- array(
- 'Article' => array(
- 'id' => '3',
- 'user_id' => '1',
- 'title' => 'Third Article',
- 'body' => 'Third Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'Comment' => array(),
- 'Tag' => array()
- ));
- $this->assertEqual($TestModel->find('all'), $expected);
- $db2 = ConnectionManager::getDataSource('test2');
- $this->fixtureManager->loadSingle('User', $db2);
- $this->fixtureManager->loadSingle('Comment', $db2);
- $this->assertEqual($TestModel->find('count'), 3);
- $TestModel->User->setDataSource('test2');
- $TestModel->Comment->setDataSource('test2');
- foreach ($expected as $key => $value) {
- unset($value['Comment'], $value['Tag']);
- $expected[$key] = $value;
- }
- $TestModel->recursive = 0;
- $result = $TestModel->find('all');
- $this->assertEqual($expected, $result);
- foreach ($expected as $key => $value) {
- unset($value['Comment'], $value['Tag']);
- $expected[$key] = $value;
- }
- $TestModel->recursive = 0;
- $result = $TestModel->find('all');
- $this->assertEqual($expected, $result);
- $result = Set::extract($TestModel->User->find('all'), '{n}.User.id');
- $this->assertEqual($result, array('1', '2', '3', '4'));
- $this->assertEqual($TestModel->find('all'), $expected);
- $TestModel->Comment->unbindModel(array('hasOne' => array('Attachment')));
- $expected = array(
- array(
- 'Comment' => array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:45:23',
- 'updated' => '2007-03-18 10:47:31'
- ),
- 'User' => array(
- 'id' => '2',
- 'user' => 'nate',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:18:23',
- 'updated' => '2007-03-17 01:20:31'
- ),
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- )),
- array(
- 'Comment' => array(
- 'id' => '2',
- 'article_id' => '1',
- 'user_id' => '4',
- 'comment' => 'Second Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:47:23',
- 'updated' => '2007-03-18 10:49:31'
- ),
- 'User' => array(
- 'id' => '4',
- 'user' => 'garrett',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:22:23',
- 'updated' => '2007-03-17 01:24:31'
- ),
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- )),
- array(
- 'Comment' => array(
- 'id' => '3',
- 'article_id' => '1',
- 'user_id' => '1',
- 'comment' => 'Third Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:49:23',
- 'updated' => '2007-03-18 10:51:31'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- )),
- array(
- 'Comment' => array(
- 'id' => '4',
- 'article_id' => '1',
- 'user_id' => '1',
- 'comment' => 'Fourth Comment for First Article',
- 'published' => 'N',
- 'created' => '2007-03-18 10:51:23',
- 'updated' => '2007-03-18 10:53:31'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- )),
- array(
- 'Comment' => array(
- 'id' => '5',
- 'article_id' => '2',
- 'user_id' => '1',
- 'comment' => 'First Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:53:23',
- 'updated' => '2007-03-18 10:55:31'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'Article' => array(
- 'id' => '2',
- 'user_id' => '3',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- )),
- array(
- 'Comment' => array(
- 'id' => '6',
- 'article_id' => '2',
- 'user_id' => '2',
- 'comment' => 'Second Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:55:23',
- 'updated' => '2007-03-18 10:57:31'
- ),
- 'User' => array(
- 'id' => '2',
- 'user' => 'nate',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:18:23',
- 'updated' => '2007-03-17 01:20:31'
- ),
- 'Article' => array(
- 'id' => '2',
- 'user_id' => '3',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- )));
- $this->assertEqual($TestModel->Comment->find('all'), $expected);
- }
- /**
- * testDisplayField method
- *
- * @access public
- * @return void
- */
- public function testDisplayField() {
- $this->loadFixtures('Post', 'Comment', 'Person', 'User');
- $Post = new Post();
- $Comment = new Comment();
- $Person = new Person();
- $this->assertEqual($Post->displayField, 'title');
- $this->assertEqual($Person->displayField, 'name');
- $this->assertEqual($Comment->displayField, 'id');
- }
- /**
- * testSchema method
- *
- * @access public
- * @return void
- */
- public function testSchema() {
- $Post = new Post();
- $result = $Post->schema();
- $columns = array('id', 'author_id', 'title', 'body', 'published', 'created', 'updated');
- $this->assertEqual(array_keys($result), $columns);
- $types = array('integer', 'integer', 'string', 'text', 'string', 'datetime', 'datetime');
- $this->assertEqual(Set::extract(array_values($result), '{n}.type'), $types);
- $result = $Post->schema('body');
- $this->assertEqual($result['type'], 'text');
- $this->assertNull($Post->schema('foo'));
- $this->assertEqual($Post->getColumnTypes(), array_combine($columns, $types));
- }
- /**
- * test deconstruct() with time fields.
- *
- * @return void
- */
- public function testDeconstructFieldsTime() {
- $this->skipIf($this->db instanceof Sqlserver, 'This test is not compatible with SQL Server.');
- $this->loadFixtures('Apple');
- $TestModel = new Apple();
- $data = array();
- $data['Apple']['mytime']['hour'] = '';
- $data['Apple']['mytime']['min'] = '';
- $data['Apple']['mytime']['sec'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['mytime']['hour'] = '';
- $data['Apple']['mytime']['min'] = '';
- $data['Apple']['mytime']['meridan'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> ''));
- $this->assertEqual($TestModel->data, $expected, 'Empty values are not returning properly. %s');
- $data = array();
- $data['Apple']['mytime']['hour'] = '12';
- $data['Apple']['mytime']['min'] = '0';
- $data['Apple']['mytime']['meridian'] = 'am';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> '00:00:00'));
- $this->assertEqual($TestModel->data, $expected, 'Midnight is not returning proper values. %s');
- $data = array();
- $data['Apple']['mytime']['hour'] = '00';
- $data['Apple']['mytime']['min'] = '00';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> '00:00:00'));
- $this->assertEqual($TestModel->data, $expected, 'Midnight is not returning proper values. %s');
- $data = array();
- $data['Apple']['mytime']['hour'] = '03';
- $data['Apple']['mytime']['min'] = '04';
- $data['Apple']['mytime']['sec'] = '04';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> '03:04:04'));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['mytime']['hour'] = '3';
- $data['Apple']['mytime']['min'] = '4';
- $data['Apple']['mytime']['sec'] = '4';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple' => array('mytime'=> '03:04:04'));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['mytime']['hour'] = '03';
- $data['Apple']['mytime']['min'] = '4';
- $data['Apple']['mytime']['sec'] = '4';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('mytime'=> '03:04:04'));
- $this->assertEqual($TestModel->data, $expected);
- $db = ConnectionManager::getDataSource('test');
- $data = array();
- $data['Apple']['mytime'] = $db->expression('NOW()');
- $TestModel->data = null;
- $TestModel->set($data);
- $this->assertEqual($TestModel->data, $data);
- }
- /**
- * testDeconstructFields with datetime, timestamp, and date fields
- *
- * @access public
- * @return void
- */
- public function testDeconstructFieldsDateTime() {
- $this->skipIf($this->db instanceof Sqlserver, 'This test is not compatible with SQL Server.');
- $this->loadFixtures('Apple');
- $TestModel = new Apple();
- //test null/empty values first
- $data['Apple']['created']['year'] = '';
- $data['Apple']['created']['month'] = '';
- $data['Apple']['created']['day'] = '';
- $data['Apple']['created']['hour'] = '';
- $data['Apple']['created']['min'] = '';
- $data['Apple']['created']['sec'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['date']['year'] = '';
- $data['Apple']['date']['month'] = '';
- $data['Apple']['date']['day'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('date'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '2007';
- $data['Apple']['created']['month'] = '08';
- $data['Apple']['created']['day'] = '20';
- $data['Apple']['created']['hour'] = '';
- $data['Apple']['created']['min'] = '';
- $data['Apple']['created']['sec'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> '2007-08-20 00:00:00'));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '2007';
- $data['Apple']['created']['month'] = '08';
- $data['Apple']['created']['day'] = '20';
- $data['Apple']['created']['hour'] = '10';
- $data['Apple']['created']['min'] = '12';
- $data['Apple']['created']['sec'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> '2007-08-20 10:12:00'));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '2007';
- $data['Apple']['created']['month'] = '';
- $data['Apple']['created']['day'] = '12';
- $data['Apple']['created']['hour'] = '20';
- $data['Apple']['created']['min'] = '';
- $data['Apple']['created']['sec'] = '';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['hour'] = '20';
- $data['Apple']['created']['min'] = '33';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['hour'] = '20';
- $data['Apple']['created']['min'] = '33';
- $data['Apple']['created']['sec'] = '33';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['hour'] = '13';
- $data['Apple']['created']['min'] = '00';
- $data['Apple']['date']['year'] = '2006';
- $data['Apple']['date']['month'] = '12';
- $data['Apple']['date']['day'] = '25';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array(
- 'Apple'=> array(
- 'created'=> '',
- 'date'=> '2006-12-25'
- ));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '2007';
- $data['Apple']['created']['month'] = '08';
- $data['Apple']['created']['day'] = '20';
- $data['Apple']['created']['hour'] = '10';
- $data['Apple']['created']['min'] = '12';
- $data['Apple']['created']['sec'] = '09';
- $data['Apple']['date']['year'] = '2006';
- $data['Apple']['date']['month'] = '12';
- $data['Apple']['date']['day'] = '25';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array(
- 'Apple'=> array(
- 'created'=> '2007-08-20 10:12:09',
- 'date'=> '2006-12-25'
- ));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '--';
- $data['Apple']['created']['month'] = '--';
- $data['Apple']['created']['day'] = '--';
- $data['Apple']['created']['hour'] = '--';
- $data['Apple']['created']['min'] = '--';
- $data['Apple']['created']['sec'] = '--';
- $data['Apple']['date']['year'] = '--';
- $data['Apple']['date']['month'] = '--';
- $data['Apple']['date']['day'] = '--';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> '', 'date'=> ''));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['created']['year'] = '2007';
- $data['Apple']['created']['month'] = '--';
- $data['Apple']['created']['day'] = '20';
- $data['Apple']['created']['hour'] = '10';
- $data['Apple']['created']['min'] = '12';
- $data['Apple']['created']['sec'] = '09';
- $data['Apple']['date']['year'] = '2006';
- $data['Apple']['date']['month'] = '12';
- $data['Apple']['date']['day'] = '25';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('created'=> '', 'date'=> '2006-12-25'));
- $this->assertEqual($TestModel->data, $expected);
- $data = array();
- $data['Apple']['date']['year'] = '2006';
- $data['Apple']['date']['month'] = '12';
- $data['Apple']['date']['day'] = '25';
- $TestModel->data = null;
- $TestModel->set($data);
- $expected = array('Apple'=> array('date'=> '2006-12-25'));
- $this->assertEqual($TestModel->data, $expected);
- $db = ConnectionManager::getDataSource('test');
- $data = array();
- $data['Apple']['modified'] = $db->expression('NOW()');
- $TestModel->data = null;
- $TestModel->set($data);
- $this->assertEqual($TestModel->data, $data);
- }
- /**
- * testTablePrefixSwitching method
- *
- * @access public
- * @return void
- */
- public function testTablePrefixSwitching() {
- ConnectionManager::create('database1',
- array_merge($this->db->config, array('prefix' => 'aaa_')
- ));
- ConnectionManager::create('database2',
- array_merge($this->db->config, array('prefix' => 'bbb_')
- ));
- $db1 = ConnectionManager::getDataSource('database1');
- $db2 = ConnectionManager::getDataSource('database2');
- $TestModel = new Apple();
- $TestModel->setDataSource('database1');
- $this->assertEqual($this->db->fullTableName($TestModel, false), 'aaa_apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'aaa_apples');
- $this->assertEqual($db2->fullTableName($TestModel, false), 'aaa_apples');
- $TestModel->setDataSource('database2');
- $this->assertEqual($this->db->fullTableName($TestModel, false), 'bbb_apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'bbb_apples');
- $this->assertEqual($db2->fullTableName($TestModel, false), 'bbb_apples');
- $TestModel = new Apple();
- $TestModel->tablePrefix = 'custom_';
- $this->assertEqual($this->db->fullTableName($TestModel, false), 'custom_apples');
- $TestModel->setDataSource('database1');
- $this->assertEqual($this->db->fullTableName($TestModel, false), 'custom_apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'custom_apples');
- $TestModel = new Apple();
- $TestModel->setDataSource('database1');
- $this->assertEqual($this->db->fullTableName($TestModel, false), 'aaa_apples');
- $TestModel->tablePrefix = '';
- $TestModel->setDataSource('database2');
- $this->assertEqual($db2->fullTableName($TestModel, false), 'apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'apples');
- $TestModel->tablePrefix = null;
- $TestModel->setDataSource('database1');
- $this->assertEqual($db2->fullTableName($TestModel, false), 'aaa_apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'aaa_apples');
- $TestModel->tablePrefix = false;
- $TestModel->setDataSource('database2');
- $this->assertEqual($db2->fullTableName($TestModel, false), 'apples');
- $this->assertEqual($db1->fullTableName($TestModel, false), 'apples');
- }
- /**
- * Tests validation parameter order in custom validation methods
- *
- * @access public
- * @return void
- */
- public function testInvalidAssociation() {
- $TestModel = new ValidationTest1();
- $this->assertNull($TestModel->getAssociated('Foo'));
- }
- /**
- * testLoadModelSecondIteration method
- *
- * @access public
- * @return void
- */
- public function testLoadModelSecondIteration() {
- $this->loadFixtures('Apple', 'Message', 'Thread', 'Bid');
- $model = new ModelA();
- $this->assertIsA($model,'ModelA');
- $this->assertIsA($model->ModelB, 'ModelB');
- $this->assertIsA($model->ModelB->ModelD, 'ModelD');
- $this->assertIsA($model->ModelC, 'ModelC');
- $this->assertIsA($model->ModelC->ModelD, 'ModelD');
- }
- /**
- * ensure that exists() does not persist between method calls reset on create
- *
- * @return void
- */
- public function testResetOfExistsOnCreate() {
- $this->loadFixtures('Article');
- $Article = new Article();
- $Article->id = 1;
- $Article->saveField('title', 'Reset me');
- $Article->delete();
- $Article->id = 1;
- $this->assertFalse($Article->exists());
- $Article->create();
- $this->assertFalse($Article->exists());
- $Article->id = 2;
- $Article->saveField('title', 'Staying alive');
- $result = $Article->read(null, 2);
- $this->assertEqual($result['Article']['title'], 'Staying alive');
- }
- /**
- * testUseTableFalseExistsCheck method
- *
- * @return void
- */
- public function testUseTableFalseExistsCheck() {
- $this->loadFixtures('Article');
- $Article = new Article();
- $Article->id = 1337;
- $result = $Article->exists();
- $this->assertFalse($result);
- $Article->useTable = false;
- $Article->id = null;
- $result = $Article->exists();
- $this->assertFalse($result);
- // An article with primary key of '1' has been loaded by the fixtures.
- $Article->useTable = false;
- $Article->id = 1;
- $result = $Article->exists();
- $this->assertTrue($result);
- }
- /**
- * testPluginAssociations method
- *
- * @access public
- * @return void
- */
- public function testPluginAssociations() {
- $this->loadFixtures('TestPluginArticle', 'User', 'TestPluginComment');
- $TestModel = new TestPluginArticle();
- $result = $TestModel->find('all');
- $expected = array(
- array(
- 'TestPluginArticle' => array(
- 'id' => 1,
- 'user_id' => 1,
- 'title' => 'First Plugin Article',
- 'body' => 'First Plugin Article Body',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:39:23',
- 'updated' => '2008-09-24 10:41:31'
- ),
- 'User' => array(
- 'id' => 1,
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'TestPluginComment' => array(
- array(
- 'id' => 1,
- 'article_id' => 1,
- 'user_id' => 2,
- 'comment' => 'First Comment for First Plugin Article',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:45:23',
- 'updated' => '2008-09-24 10:47:31'
- ),
- array(
- 'id' => 2,
- 'article_id' => 1,
- 'user_id' => 4,
- 'comment' => 'Second Comment for First Plugin Article',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:47:23',
- 'updated' => '2008-09-24 10:49:31'
- ),
- array(
- 'id' => 3,
- 'article_id' => 1,
- 'user_id' => 1,
- 'comment' => 'Third Comment for First Plugin Article',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:49:23',
- 'updated' => '2008-09-24 10:51:31'
- ),
- array(
- 'id' => 4,
- 'article_id' => 1,
- 'user_id' => 1,
- 'comment' => 'Fourth Comment for First Plugin Article',
- 'published' => 'N',
- 'created' => '2008-09-24 10:51:23',
- 'updated' => '2008-09-24 10:53:31'
- ))),
- array(
- 'TestPluginArticle' => array(
- 'id' => 2,
- 'user_id' => 3,
- 'title' => 'Second Plugin Article',
- 'body' => 'Second Plugin Article Body',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:41:23',
- 'updated' => '2008-09-24 10:43:31'
- ),
- 'User' => array(
- 'id' => 3,
- 'user' => 'larry',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:20:23',
- 'updated' => '2007-03-17 01:22:31'
- ),
- 'TestPluginComment' => array(
- array(
- 'id' => 5,
- 'article_id' => 2,
- 'user_id' => 1,
- 'comment' => 'First Comment for Second Plugin Article',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:53:23',
- 'updated' => '2008-09-24 10:55:31'
- ),
- array(
- 'id' => 6,
- 'article_id' => 2,
- 'user_id' => 2,
- 'comment' => 'Second Comment for Second Plugin Article',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:55:23',
- 'updated' => '2008-09-24 10:57:31'
- ))),
- array(
- 'TestPluginArticle' => array(
- 'id' => 3,
- 'user_id' => 1,
- 'title' => 'Third Plugin Article',
- 'body' => 'Third Plugin Article Body',
- 'published' => 'Y',
- 'created' => '2008-09-24 10:43:23',
- 'updated' => '2008-09-24 10:45:31'
- ),
- 'User' => array(
- 'id' => 1,
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- ),
- 'TestPluginComment' => array()
- ));
- $this->assertEqual($expected, $result);
- }
- /**
- * Tests getAssociated method
- *
- * @access public
- * @return void
- */
- public function testGetAssociated() {
- $this->loadFixtures('Article', 'Tag');
- $Article = ClassRegistry::init('Article');
- $assocTypes = array('hasMany', 'hasOne', 'belongsTo', 'hasAndBelongsToMany');
- foreach ($assocTypes as $type) {
- $this->assertEqual($Article->getAssociated($type), array_keys($Article->{$type}));
- }
- $Article->bindModel(array('hasMany' => array('Category')));
- $this->assertEqual($Article->getAssociated('hasMany'), array('Comment', 'Category'));
- $results = $Article->getAssociated();
- $results = array_keys($results);
- sort($results);
- $this->assertEqual($results, array('Category', 'Comment', 'Tag', 'User'));
- $Article->unbindModel(array('hasAndBelongsToMany' => array('Tag')));
- $this->assertEqual($Article->getAssociated('hasAndBelongsToMany'), array());
- $result = $Article->getAssociated('Category');
- $expected = array(
- 'className' => 'Category',
- 'foreignKey' => 'article_id',
- 'conditions' => '',
- 'fields' => '',
- 'order' => '',
- 'limit' => '',
- 'offset' => '',
- 'dependent' => '',
- 'exclusive' => '',
- 'finderQuery' => '',
- 'counterQuery' => '',
- 'association' => 'hasMany',
- );
- $this->assertEqual($expected, $result);
- }
- /**
- * testAutoConstructAssociations method
- *
- * @access public
- * @return void
- */
- public function testAutoConstructAssociations() {
- $this->loadFixtures('User', 'ArticleFeatured', 'Featured', 'ArticleFeaturedsTags');
- $TestModel = new AssociationTest1();
- $result = $TestModel->hasAndBelongsToMany;
- $expected = array('AssociationTest2' => array(
- 'unique' => false,
- 'joinTable' => 'join_as_join_bs',
- 'foreignKey' => false,
- 'className' => 'AssociationTest2',
- 'with' => 'JoinAsJoinB',
- 'dynamicWith' => true,
- 'associationForeignKey' => 'join_b_id',
- 'conditions' => '', 'fields' => '', 'order' => '', 'limit' => '', 'offset' => '',
- 'finderQuery' => '', 'deleteQuery' => '', 'insertQuery' => ''
- ));
- $this->assertEqual($expected, $result);
- $TestModel = new ArticleFeatured();
- $TestFakeModel = new ArticleFeatured(array('table' => false));
- $expected = array(
- 'User' => array(
- 'className' => 'User', 'foreignKey' => 'user_id',
- 'conditions' => '', 'fields' => '', 'order' => '', 'counterCache' => ''
- ),
- 'Category' => array(
- 'className' => 'Category', 'foreignKey' => 'category_id',
- 'conditions' => '', 'fields' => '', 'order' => '', 'counterCache' => ''
- )
- );
- $this->assertIdentical($TestModel->belongsTo, $expected);
- $this->assertIdentical($TestFakeModel->belongsTo, $expected);
- $this->assertEqual($TestModel->User->name, 'User');
- $this->assertEqual($TestFakeModel->User->name, 'User');
- $this->assertEqual($TestModel->Category->name, 'Category');
- $this->assertEqual($TestFakeModel->Category->name, 'Category');
- $expected = array(
- 'Featured' => array(
- 'className' => 'Featured',
- 'foreignKey' => 'article_featured_id',
- 'conditions' => '',
- 'fields' => '',
- 'order' => '',
- 'dependent' => ''
- ));
- $this->assertIdentical($TestModel->hasOne, $expected);
- $this->assertIdentical($TestFakeModel->hasOne, $expected);
- $this->assertEqual($TestModel->Featured->name, 'Featured');
- $this->assertEqual($TestFakeModel->Featured->name, 'Featured');
- $expected = array(
- 'Comment' => array(
- 'className' => 'Comment',
- 'dependent' => true,
- 'foreignKey' => 'article_featured_id',
- 'conditions' => '',
- 'fields' => '',
- 'order' => '',
- 'limit' => '',
- 'offset' => '',
- 'exclusive' => '',
- 'finderQuery' => '',
- 'counterQuery' => ''
- ));
- $this->assertIdentical($TestModel->hasMany, $expected);
- $this->assertIdentical($TestFakeModel->hasMany, $expected);
- $this->assertEqual($TestModel->Comment->name, 'Comment');
- $this->assertEqual($TestFakeModel->Comment->name, 'Comment');
- $expected = array(
- 'Tag' => array(
- 'className' => 'Tag',
- 'joinTable' => 'article_featureds_tags',
- 'with' => 'ArticleFeaturedsTag',
- 'dynamicWith' => true,
- 'foreignKey' => 'article_featured_id',
- 'associationForeignKey' => 'tag_id',
- 'conditions' => '',
- 'fields' => '',
- 'order' => '',
- 'limit' => '',
- 'offset' => '',
- 'unique' => true,
- 'finderQuery' => '',
- 'deleteQuery' => '',
- 'insertQuery' => ''
- ));
- $this->assertIdentical($TestModel->hasAndBelongsToMany, $expected);
- $this->assertIdentical($TestFakeModel->hasAndBelongsToMany, $expected);
- $this->assertEqual($TestModel->Tag->name, 'Tag');
- $this->assertEqual($TestFakeModel->Tag->name, 'Tag');
- }
- /**
- * test Model::__construct
- *
- * ensure that $actsAS and $findMethods are merged.
- *
- * @return void
- */
- public function testConstruct() {
- $this->loadFixtures('Post');
- $TestModel = ClassRegistry::init('MergeVarPluginPost');
- $this->assertEqual($TestModel->actsAs, array('Containable' => null, 'Tree' => null));
- $this->assertTrue(isset($TestModel->Behaviors->Containable));
- $this->assertTrue(isset($TestModel->Behaviors->Tree));
- $TestModel = ClassRegistry::init('MergeVarPluginComment');
- $expected = array('Containable' => array('some_settings'));
- $this->assertEqual($TestModel->actsAs, $expected);
- $this->assertTrue(isset($TestModel->Behaviors->Containable));
- }
- /**
- * test Model::__construct
- *
- * ensure that $actsAS and $findMethods are merged.
- *
- * @return void
- */
- public function testConstructWithAlternateDataSource() {
- $TestModel = ClassRegistry::init(array(
- 'class' => 'DoesntMatter', 'ds' => 'test', 'table' => false
- ));
- $this->assertEqual('test', $TestModel->useDbConfig);
- //deprecated but test it anyway
- $NewVoid = new TheVoid(null, false, 'other');
- $this->assertEqual('other', $NewVoid->useDbConfig);
- }
- /**
- * testColumnTypeFetching method
- *
- * @access public
- * @return void
- */
- public function testColumnTypeFetching() {
- $model = new Test();
- $this->assertEqual($model->getColumnType('id'), 'integer');
- $this->assertEqual($model->getColumnType('notes'), 'text');
- $this->assertEqual($model->getColumnType('updated'), 'datetime');
- $this->assertEqual($model->getColumnType('unknown'), null);
- $model = new Article();
- $this->assertEqual($model->getColumnType('User.created'), 'datetime');
- $this->assertEqual($model->getColumnType('Tag.id'), 'integer');
- $this->assertEqual($model->getColumnType('Article.id'), 'integer');
- }
- /**
- * testHabtmUniqueKey method
- *
- * @access public
- * @return void
- */
- public function testHabtmUniqueKey() {
- $model = new Item();
- $this->assertFalse($model->hasAndBelongsToMany['Portfolio']['unique']);
- }
- /**
- * testIdentity method
- *
- * @access public
- * @return void
- */
- public function testIdentity() {
- $TestModel = new Test();
- $result = $TestModel->alias;
- $expected = 'Test';
- $this->assertEqual($expected, $result);
- $TestModel = new TestAlias();
- $result = $TestModel->alias;
- $expected = 'TestAlias';
- $this->assertEqual($expected, $result);
- $TestModel = new Test(array('alias' => 'AnotherTest'));
- $result = $TestModel->alias;
- $expected = 'AnotherTest';
- $this->assertEqual($expected, $result);
- }
- /**
- * testWithAssociation method
- *
- * @access public
- * @return void
- */
- public function testWithAssociation() {
- $this->loadFixtures('Something', 'SomethingElse', 'JoinThing');
- $TestModel = new Something();
- $result = $TestModel->SomethingElse->find('all');
- $expected = array(
- array(
- 'SomethingElse' => array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- ),
- 'Something' => array(
- array(
- 'id' => '3',
- 'title' => 'Third Post',
- 'body' => 'Third Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31',
- 'JoinThing' => array(
- 'id' => '3',
- 'something_id' => '3',
- 'something_else_id' => '1',
- 'doomed' => true,
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31'
- )))),
- array(
- 'SomethingElse' => array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- ),
- 'Something' => array(
- array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31',
- 'JoinThing' => array(
- 'id' => '1',
- 'something_id' => '1',
- 'something_else_id' => '2',
- 'doomed' => true,
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- )))),
- array(
- 'SomethingElse' => array(
- 'id' => '3',
- 'title' => 'Third Post',
- 'body' => 'Third Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31'
- ),
- 'Something' => array(
- array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31',
- 'JoinThing' => array(
- 'id' => '2',
- 'something_id' => '2',
- 'something_else_id' => '3',
- 'doomed' => false,
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- )))));
- $this->assertEqual($expected, $result);
- $result = $TestModel->find('all');
- $expected = array(
- array(
- 'Something' => array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- ),
- 'SomethingElse' => array(
- array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31',
- 'JoinThing' => array(
- 'doomed' => true,
- 'something_id' => '1',
- 'something_else_id' => '2'
- )))),
- array(
- 'Something' => array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- ),
- 'SomethingElse' => array(
- array(
- 'id' => '3',
- 'title' => 'Third Post',
- 'body' => 'Third Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31',
- 'JoinThing' => array(
- 'doomed' => false,
- 'something_id' => '2',
- 'something_else_id' => '3'
- )))),
- array(
- 'Something' => array(
- 'id' => '3',
- 'title' => 'Third Post',
- 'body' => 'Third Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31'
- ),
- 'SomethingElse' => array(
- array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31',
- 'JoinThing' => array(
- 'doomed' => true,
- 'something_id' => '3',
- 'something_else_id' => '1'
- )))));
- $this->assertEqual($expected, $result);
- $result = $TestModel->findById(1);
- $expected = array(
- 'Something' => array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- ),
- 'SomethingElse' => array(
- array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31',
- 'JoinThing' => array(
- 'doomed' => true,
- 'something_id' => '1',
- 'something_else_id' => '2'
- ))));
- $this->assertEqual($expected, $result);
- $expected = $TestModel->findById(1);
- $TestModel->set($expected);
- $TestModel->save();
- $result = $TestModel->findById(1);
- $this->assertEqual($expected, $result);
- $TestModel->hasAndBelongsToMany['SomethingElse']['unique'] = false;
- $TestModel->create(array(
- 'Something' => array('id' => 1),
- 'SomethingElse' => array(3, array(
- 'something_else_id' => 1,
- 'doomed' => true
- ))));
- $ts = date('Y-m-d H:i:s');
- $TestModel->save();
- $TestModel->hasAndBelongsToMany['SomethingElse']['order'] = 'SomethingElse.id ASC';
- $result = $TestModel->findById(1);
- $expected = array(
- 'Something' => array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => $ts),
- 'SomethingElse' => array(
- array(
- 'id' => '1',
- 'title' => 'First Post',
- 'body' => 'First Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31',
- 'JoinThing' => array(
- 'doomed' => true,
- 'something_id' => '1',
- 'something_else_id' => '1'
- )),
- array(
- 'id' => '2',
- 'title' => 'Second Post',
- 'body' => 'Second Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31',
- 'JoinThing' => array(
- 'doomed' => true,
- 'something_id' => '1',
- 'something_else_id' => '2'
- )),
- array(
- 'id' => '3',
- 'title' => 'Third Post',
- 'body' => 'Third Post Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31',
- 'JoinThing' => array(
- 'doomed' => false,
- 'something_id' => '1',
- 'something_else_id' => '3'
- ))));
- $this->assertEqual($expected, $result);
- }
- /**
- * testFindSelfAssociations method
- *
- * @access public
- * @return void
- */
- public function testFindSelfAssociations() {
- $this->loadFixtures('Person');
- $TestModel = new Person();
- $TestModel->recursive = 2;
- $result = $TestModel->read(null, 1);
- $expected = array(
- 'Person' => array(
- 'id' => 1,
- 'name' => 'person',
- 'mother_id' => 2,
- 'father_id' => 3
- ),
- 'Mother' => array(
- 'id' => 2,
- 'name' => 'mother',
- 'mother_id' => 4,
- 'father_id' => 5,
- 'Mother' => array(
- 'id' => 4,
- 'name' => 'mother - grand mother',
- 'mother_id' => 0,
- 'father_id' => 0
- ),
- 'Father' => array(
- 'id' => 5,
- 'name' => 'mother - grand father',
- 'mother_id' => 0,
- 'father_id' => 0
- )),
- 'Father' => array(
- 'id' => 3,
- 'name' => 'father',
- 'mother_id' => 6,
- 'father_id' => 7,
- 'Father' => array(
- 'id' => 7,
- 'name' => 'father - grand father',
- 'mother_id' => 0,
- 'father_id' => 0
- ),
- 'Mother' => array(
- 'id' => 6,
- 'name' => 'father - grand mother',
- 'mother_id' => 0,
- 'father_id' => 0
- )));
- $this->assertEqual($expected, $result);
- $TestModel->recursive = 3;
- $result = $TestModel->read(null, 1);
- $expected = array(
- 'Person' => array(
- 'id' => 1,
- 'name' => 'person',
- 'mother_id' => 2,
- 'father_id' => 3
- ),
- 'Mother' => array(
- 'id' => 2,
- 'name' => 'mother',
- 'mother_id' => 4,
- 'father_id' => 5,
- 'Mother' => array(
- 'id' => 4,
- 'name' => 'mother - grand mother',
- 'mother_id' => 0,
- 'father_id' => 0,
- 'Mother' => array(),
- 'Father' => array()),
- 'Father' => array(
- 'id' => 5,
- 'name' => 'mother - grand father',
- 'mother_id' => 0,
- 'father_id' => 0,
- 'Father' => array(),
- 'Mother' => array()
- )),
- 'Father' => array(
- 'id' => 3,
- 'name' => 'father',
- 'mother_id' => 6,
- 'father_id' => 7,
- 'Father' => array(
- 'id' => 7,
- 'name' => 'father - grand father',
- 'mother_id' => 0,
- 'father_id' => 0,
- 'Father' => array(),
- 'Mother' => array()
- ),
- 'Mother' => array(
- 'id' => 6,
- 'name' => 'father - grand mother',
- 'mother_id' => 0,
- 'father_id' => 0,
- 'Mother' => array(),
- 'Father' => array()
- )));
- $this->assertEqual($expected, $result);
- }
- /**
- * testDynamicAssociations method
- *
- * @access public
- * @return void
- */
- public function testDynamicAssociations() {
- $this->loadFixtures('Article', 'Comment');
- $TestModel = new Article();
- $TestModel->belongsTo = $TestModel->hasAndBelongsToMany = $TestModel->hasOne = array();
- $TestModel->hasMany['Comment'] = array_merge($TestModel->hasMany['Comment'], array(
- 'foreignKey' => false,
- 'conditions' => array('Comment.user_id =' => '2')
- ));
- $result = $TestModel->find('all');
- $expected = array(
- array(
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23',
- 'updated' => '2007-03-18 10:41:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:45:23',
- 'updated' => '2007-03-18 10:47:31'
- ),
- array(
- 'id' => '6',
- 'article_id' => '2',
- 'user_id' => '2',
- 'comment' => 'Second Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:55:23',
- 'updated' => '2007-03-18 10:57:31'
- ))),
- array(
- 'Article' => array(
- 'id' => '2',
- 'user_id' => '3',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:41:23',
- 'updated' => '2007-03-18 10:43:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:45:23',
- 'updated' => '2007-03-18 10:47:31'
- ),
- array(
- 'id' => '6',
- 'article_id' => '2',
- 'user_id' => '2',
- 'comment' => 'Second Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:55:23',
- 'updated' => '2007-03-18 10:57:31'
- ))),
- array(
- 'Article' => array(
- 'id' => '3',
- 'user_id' => '1',
- 'title' => 'Third Article',
- 'body' => 'Third Article Body',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:43:23',
- 'updated' => '2007-03-18 10:45:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:45:23',
- 'updated' => '2007-03-18 10:47:31'
- ),
- array(
- 'id' => '6',
- 'article_id' => '2',
- 'user_id' => '2',
- 'comment' => 'Second Comment for Second Article',
- 'published' => 'Y',
- 'created' => '2007-03-18 10:55:23',
- 'updated' => '2007-03-18 10:57:31'
- ))));
- $this->assertEqual($expected, $result);
- }
- /**
- * testCreation method
- *
- * @access public
- * @return void
- */
- public function testCreation() {
- $this->loadFixtures('Article', 'ArticleFeaturedsTags', 'User', 'Featured');
- $TestModel = new Test();
- $result = $TestModel->create();
- $expected = array('Test' => array('notes' => 'write some notes here'));
- $this->assertEqual($expected, $result);
- $TestModel = new User();
- $result = $TestModel->schema();
- if (isset($this->db->columns['primary_key']['length'])) {
- $intLength = $this->db->columns['primary_key']['length'];
- } elseif (isset($this->db->columns['integer']['length'])) {
- $intLength = $this->db->columns['integer']['length'];
- } else {
- $intLength = 11;
- }
- foreach (array('collate', 'charset', 'comment') as $type) {
- foreach ($result as $i => $r) {
- unset($result[$i][$type]);
- }
- }
- $expected = array(
- 'id' => array(
- 'type' => 'integer',
- 'null' => false,
- 'default' => null,
- 'length' => $intLength,
- 'key' => 'primary'
- ),
- 'user' => array(
- 'type' => 'string',
- 'null' => false,
- 'default' => '',
- 'length' => 255
- ),
- 'password' => array(
- 'type' => 'string',
- 'null' => false,
- 'default' => '',
- 'length' => 255
- ),
- 'created' => array(
- 'type' => 'datetime',
- 'null' => true,
- 'default' => null,
- 'length' => null
- ),
- 'updated'=> array(
- 'type' => 'datetime',
- 'null' => true,
- 'default' => null,
- 'length' => null
- ));
- $this->assertEqual($expected, $result);
- $TestModel = new Article();
- $result = $TestModel->create();
- $expected = array('Article' => array('published' => 'N'));
- $this->assertEqual($expected, $result);
- $FeaturedModel = new Featured();
- $data = array(
- 'article_featured_id' => 1,
- 'category_id' => 1,
- 'published_date' => array(
- 'year' => 2008,
- 'month' => 06,
- 'day' => 11
- ),
- 'end_date' => array(
- 'year' => 2008,
- 'month' => 06,
- 'day' => 20
- ));
- $expected = array(
- 'Featured' => array(
- 'article_featured_id' => 1,
- 'category_id' => 1,
- 'published_date' => '2008-06-11 00:00:00',
- 'end_date' => '2008-06-20 00:00:00'
- ));
- $this->assertEqual($FeaturedModel->create($data), $expected);
- $data = array(
- 'published_date' => array(
- 'year' => 2008,
- 'month' => 06,
- 'day' => 11
- ),
- 'end_date' => array(
- 'year' => 2008,
- 'month' => 06,
- 'day' => 20
- ),
- 'article_featured_id' => 1,
- 'category_id' => 1
- );
- $expected = array(
- 'Featured' => array(
- 'published_date' => '2008-06-11 00:00:00',
- 'end_date' => '2008-06-20 00:00:00',
- 'article_featured_id' => 1,
- 'category_id' => 1
- ));
- $this->assertEqual($FeaturedModel->create($data), $expected);
- }
- /**
- * testEscapeField to prove it escapes the field well even when it has part of the alias on it
- * @see ttp://cakephp.lighthouseapp.com/projects/42648-cakephp-1x/tickets/473-escapefield-doesnt-consistently-prepend-modelname
- *
- * @access public
- * @return void
- */
- public function testEscapeField() {
- $TestModel = new Test();
- $db = $TestModel->getDataSource();
- $result = $TestModel->escapeField('test_field');
- $expected = $db->name('Test.test_field');
- $this->assertEqual($expected, $result);
- $result = $TestModel->escapeField('TestField');
- $expected = $db->name('Test.TestField');
- $this->assertEqual($expected, $result);
- $result = $TestModel->escapeField('DomainHandle', 'Domain');
- $expected = $db->name('Domain.DomainHandle');
- $this->assertEqual($expected, $result);
- ConnectionManager::create('mock', array('datasource' => 'DboMock'));
- $TestModel->setDataSource('mock');
- $db = $TestModel->getDataSource();
- $result = $TestModel->escapeField('DomainHandle', 'Domain');
- $expected = $db->name('Domain.DomainHandle');
- $this->assertEqual($expected, $result);
- }
- /**
- * test that model->hasMethod checks self and behaviors.
- *
- * @return void
- */
- public function testHasMethod() {
- $Article = new Article();
- $Article->Behaviors = $this->getMock('BehaviorCollection');
- $Article->Behaviors->expects($this->at(0))
- ->method('hasMethod')
- ->will($this->returnValue(true));
- $Article->Behaviors->expects($this->at(1))
- ->method('hasMethod')
- ->will($this->returnValue(false));
- $this->assertTrue($Article->hasMethod('find'));
- $this->assertTrue($Article->hasMethod('pass'));
- $this->assertFalse($Article->hasMethod('fail'));
- }
- }
|