| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307 |
- <?php
- /**
- * 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.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';
- 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.Test.Case.Model
- */
- 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
- *
- * @return void
- */
- public function testPkInHabtmLinkModelArticleB() {
- $this->loadFixtures('Article', 'Tag', 'ArticlesTag');
- $TestModel2 = new ArticleB();
- $this->assertEquals($TestModel2->ArticlesTag->primaryKey, 'article_id');
- }
- /**
- * Tests that $cacheSources can only be disabled in the db using model settings, not enabled
- *
- * @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
- *
- * @return void
- */
- public function testPkInHabtmLinkModel() {
- //Test Nonconformant Models
- $this->loadFixtures('Content', 'ContentAccount', 'Account', 'JoinC', 'JoinAC', 'ItemsPortfolio');
- $TestModel = new Content();
- $this->assertEquals($TestModel->ContentAccount->primaryKey, 'iContentAccountsId');
- //test conformant models with no PK in the join table
- $this->loadFixtures('Article', 'Tag');
- $TestModel2 = new Article();
- $this->assertEquals($TestModel2->ArticlesTag->primaryKey, 'article_id');
- //test conformant models with PK in join table
- $TestModel3 = new Portfolio();
- $this->assertEquals($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->assertEquals($TestModel4->JoinAsJoinB->primaryKey, 'id');
- }
- /**
- * testDynamicBehaviorAttachment method
- *
- * @return void
- */
- public function testDynamicBehaviorAttachment() {
- $this->loadFixtures('Apple', 'Sample', 'Author');
- $TestModel = new Apple();
- $this->assertEquals($TestModel->Behaviors->attached(), array());
- $TestModel->Behaviors->attach('Tree', array('left' => 'left_field', 'right' => 'right_field'));
- $this->assertTrue(is_object($TestModel->Behaviors->Tree));
- $this->assertEquals($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->assertEquals($TestModel->Behaviors->Tree->settings['Apple'], $expected);
- $expected['enabled'] = false;
- $TestModel->Behaviors->attach('Tree', array('enabled' => false));
- $this->assertEquals($TestModel->Behaviors->Tree->settings['Apple'], $expected);
- $this->assertEquals($TestModel->Behaviors->attached(), array('Tree'));
- $TestModel->Behaviors->detach('Tree');
- $this->assertEquals($TestModel->Behaviors->attached(), array());
- $this->assertFalse(isset($TestModel->Behaviors->Tree));
- }
- /**
- * testFindWithJoinsOption method
- *
- * @access public
- * @return void
- */
- function testFindWithJoinsOption() {
- $this->loadFixtures('Article', 'User');
- $TestUser =& new User();
- $options = array(
- 'fields' => array(
- 'user',
- 'Article.published',
- ),
- 'joins' => array(
- array(
- 'table' => 'articles',
- 'alias' => 'Article',
- 'type' => 'LEFT',
- 'conditions' => array(
- 'User.id = Article.user_id',
- ),
- ),
- ),
- 'group' => array('User.user', 'Article.published'),
- 'recursive' => -1,
- 'order' => array('User.user')
- );
- $result = $TestUser->find('all', $options);
- $expected = array(
- array('User' => array('user' => 'garrett'), 'Article' => array('published' => '')),
- array('User' => array('user' => 'larry'), 'Article' => array('published' => 'Y')),
- array('User' => array('user' => 'mariano'), 'Article' => array('published' => 'Y')),
- array('User' => array('user' => 'nate'), 'Article' => array('published' => ''))
- );
- $this->assertEquals($result, $expected);
- }
- /**
- * 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->assertEquals($TestModel->find('all'), $expected);
- $db2 = ConnectionManager::getDataSource('test2');
- $this->fixtureManager->loadSingle('User', $db2);
- $this->fixtureManager->loadSingle('Comment', $db2);
- $this->assertEquals($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->assertEquals($expected, $result);
- foreach ($expected as $key => $value) {
- unset($value['Comment'], $value['Tag']);
- $expected[$key] = $value;
- }
- $TestModel->recursive = 0;
- $result = $TestModel->find('all');
- $this->assertEquals($expected, $result);
- $result = Set::extract($TestModel->User->find('all'), '{n}.User.id');
- $this->assertEquals($result, array('1', '2', '3', '4'));
- $this->assertEquals($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->assertEquals($TestModel->Comment->find('all'), $expected);
- }
- /**
- * test HABM operations without clobbering existing records #275
- *
- * @return void
- */
- function testHABTMKeepExisting() {
- $this->loadFixtures('Site', 'Domain', 'DomainsSite');
- $Site = new Site();
- $results = $Site->find('count');
- $expected = 3;
- $this->assertEquals($results, $expected);
- $data = $Site->findById(1);
- // include api.cakephp.org
- $data['Domain'] = array('Domain' => array(1, 2, 3));
- $Site->save($data);
- $Site->id = 1;
- $results = $Site->read();
- $expected = 3; // 3 domains belonging to cakephp
- $this->assertEquals($expected, count($results['Domain']));
- $Site->id = 2;
- $results = $Site->read();
- $expected = 2; // 2 domains belonging to markstory
- $this->assertEquals($expected, count($results['Domain']));
- $Site->id = 3;
- $results = $Site->read();
- $expected = 2;
- $this->assertEquals($expected, count($results['Domain']));
- $results['Domain'] = array('Domain' => array(7));
- $Site->save($results); // remove association from domain 6
- $results = $Site->read();
- $expected = 1; // only 1 domain left belonging to rchavik
- $this->assertEquals($expected, count($results['Domain']));
- // add deleted domain back
- $results['Domain'] = array('Domain' => array(6, 7));
- $Site->save($results);
- $results = $Site->read();
- $expected = 2; // 2 domains belonging to rchavik
- $this->assertEquals($expected, count($results['Domain']));
- $Site->DomainsSite->id = $results['Domain'][0]['DomainsSite']['id'];
- $Site->DomainsSite->saveField('active', true);
- $results = $Site->Domain->DomainsSite->find('count', array(
- 'conditions' => array(
- 'DomainsSite.active' => true,
- ),
- ));
- $expected = 5;
- $this->assertEquals($expected, $results);
- // activate api.cakephp.org
- $activated = $Site->DomainsSite->findByDomainId(3);
- $activated['DomainsSite']['active'] = true;
- $Site->DomainsSite->save($activated);
- $results = $Site->DomainsSite->find('count', array(
- 'conditions' => array(
- 'DomainsSite.active' => true,
- ),
- ));
- $expected = 6;
- $this->assertEquals($expected, $results);
- // remove 2 previously active domains, and leave $activated alone
- $data = array(
- 'Site' => array('id' => 1, 'name' => 'cakephp (modified)'),
- 'Domain' => array(
- 'Domain' => array(3),
- )
- );
- $Site->create($data);
- $Site->save($data);
- // tests that record is still identical prior to removal
- $Site->id = 1;
- $results = $Site->read();
- unset($results['Domain'][0]['DomainsSite']['updated']);
- unset($activated['DomainsSite']['updated']);
- $this->assertEquals($activated['DomainsSite'], $results['Domain'][0]['DomainsSite']);
- }
- /**
- * test HABM operations without clobbering existing records #275
- *
- * @return void
- */
- function testHABTMKeepExistingWithThreeDbs() {
- $config = ConnectionManager::enumConnectionObjects();
- $this->skipIf(
- !isset($config['test']) || !isset($config['test2']) || !isset($config['test_database_three']),
- 'Primary, secondary, and tertiary test databases not configured, skipping test. To run this test define $test, $test2, and $test_database_three in your database configuration.'
- );
- $this->loadFixtures('Player', 'Guild', 'GuildsPlayer', 'Armor', 'ArmorsPlayer');
- $Player = ClassRegistry::init('Player');
- $Player->bindModel(array(
- 'hasAndBelongsToMany' => array(
- 'Armor' => array(
- 'with' => 'ArmorsPlayer',
- 'unique' => 'keepExisting',
- ),
- ),
- ), false);
- $this->assertEquals('test', $Player->useDbConfig);
- $this->assertEquals('test', $Player->Guild->useDbConfig);
- $this->assertEquals('test2', $Player->Guild->GuildsPlayer->useDbConfig);
- $this->assertEquals('test2', $Player->Armor->useDbConfig);
- $this->assertEquals('test_database_three', $Player->ArmorsPlayer->useDbConfig);
- $players = $Player->find('all');
- $this->assertEquals(4 , count($players));
- $playersGuilds = Set::extract('/Guild/GuildsPlayer', $players);
- $this->assertEquals(3 , count($playersGuilds));
- $playersArmors = Set::extract('/Armor/ArmorsPlayer', $players);
- $this->assertEquals(3 , count($playersArmors));
- unset($players);
- $larry = $Player->findByName('larry');
- $larrysArmor = Set::extract('/Armor/ArmorsPlayer', $larry);
- $this->assertEquals(1 , count($larrysArmor));
- $larry['Guild']['Guild'] = array(1, 3); // larry joins another guild
- $larry['Armor']['Armor'] = array(2, 3); // purchases chainmail
- $Player->save($larry);
- unset($larry);
- $larry = $Player->findByName('larry');
- $larrysGuild = Set::extract('/Guild/GuildsPlayer', $larry);
- $this->assertEquals(2 , count($larrysGuild));
- $larrysArmor = Set::extract('/Armor/ArmorsPlayer', $larry);
- $this->assertEquals(2 , count($larrysArmor));
- $larrysArmorsPlayersIds = Set::extract('/Armor/ArmorsPlayer/id', $larry);
- $Player->ArmorsPlayer->id = 3;
- $Player->ArmorsPlayer->saveField('broken', true); // larry's cloak broke
- $larry = $Player->findByName('larry');
- $larrysArmor = Set::extract('/Armor/ArmorsPlayer', $larry);
- $larrysCloak = Set::extract('/ArmorsPlayer[armor_id=3]', $larrysArmor);
- $this->assertNotEmpty($larrysCloak);
- $this->assertTrue($larrysCloak[0]['ArmorsPlayer']['broken']); // still broken
- }
- /**
- * testDisplayField method
- *
- * @return void
- */
- public function testDisplayField() {
- $this->loadFixtures('Post', 'Comment', 'Person', 'User');
- $Post = new Post();
- $Comment = new Comment();
- $Person = new Person();
- $this->assertEquals($Post->displayField, 'title');
- $this->assertEquals($Person->displayField, 'name');
- $this->assertEquals($Comment->displayField, 'id');
- }
- /**
- * testSchema method
- *
- * @return void
- */
- public function testSchema() {
- $Post = new Post();
- $result = $Post->schema();
- $columns = array('id', 'author_id', 'title', 'body', 'published', 'created', 'updated');
- $this->assertEquals(array_keys($result), $columns);
- $types = array('integer', 'integer', 'string', 'text', 'string', 'datetime', 'datetime');
- $this->assertEquals(Set::extract(array_values($result), '{n}.type'), $types);
- $result = $Post->schema('body');
- $this->assertEquals($result['type'], 'text');
- $this->assertNull($Post->schema('foo'));
- $this->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($TestModel->data, $expected);
- $db = ConnectionManager::getDataSource('test');
- $data = array();
- $data['Apple']['mytime'] = $db->expression('NOW()');
- $TestModel->data = null;
- $TestModel->set($data);
- $this->assertEquals($TestModel->data, $data);
- }
- /**
- * testDeconstructFields with datetime, timestamp, and date fields
- *
- * @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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($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->assertEquals($TestModel->data, $expected);
- $db = ConnectionManager::getDataSource('test');
- $data = array();
- $data['Apple']['modified'] = $db->expression('NOW()');
- $TestModel->data = null;
- $TestModel->set($data);
- $this->assertEquals($TestModel->data, $data);
- }
- /**
- * testTablePrefixSwitching method
- *
- * @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->assertContains('aaa_apples', $this->db->fullTableName($TestModel));
- $this->assertContains('aaa_apples', $db1->fullTableName($TestModel));
- $this->assertContains('aaa_apples', $db2->fullTableName($TestModel));
- $TestModel->setDataSource('database2');
- $this->assertContains('bbb_apples', $this->db->fullTableName($TestModel));
- $this->assertContains('bbb_apples', $db1->fullTableName($TestModel));
- $this->assertContains('bbb_apples', $db2->fullTableName($TestModel));
- $TestModel = new Apple();
- $TestModel->tablePrefix = 'custom_';
- $this->assertContains('custom_apples', $this->db->fullTableName($TestModel));
- $TestModel->setDataSource('database1');
- $this->assertContains('custom_apples', $this->db->fullTableName($TestModel));
- $this->assertContains('custom_apples', $db1->fullTableName($TestModel));
- $TestModel = new Apple();
- $TestModel->setDataSource('database1');
- $this->assertContains('aaa_apples', $this->db->fullTableName($TestModel));
- $TestModel->tablePrefix = '';
- $TestModel->setDataSource('database2');
- $this->assertContains('apples', $db2->fullTableName($TestModel));
- $this->assertContains('apples', $db1->fullTableName($TestModel));
- $TestModel->tablePrefix = null;
- $TestModel->setDataSource('database1');
- $this->assertContains('aaa_apples', $db2->fullTableName($TestModel));
- $this->assertContains('aaa_apples', $db1->fullTableName($TestModel));
- $TestModel->tablePrefix = false;
- $TestModel->setDataSource('database2');
- $this->assertContains('apples', $db2->fullTableName($TestModel));
- $this->assertContains('apples', $db1->fullTableName($TestModel));
- }
- /**
- * Tests validation parameter order in custom validation methods
- *
- * @return void
- */
- public function testInvalidAssociation() {
- $TestModel = new ValidationTest1();
- $this->assertNull($TestModel->getAssociated('Foo'));
- }
- /**
- * testLoadModelSecondIteration method
- *
- * @return void
- */
- public function testLoadModelSecondIteration() {
- $this->loadFixtures('Apple', 'Message', 'Thread', 'Bid');
- $model = new ModelA();
- $this->assertInstanceOf('ModelA', $model);
- $this->assertInstanceOf('ModelB', $model->ModelB);
- $this->assertInstanceOf('ModelD', $model->ModelB->ModelD);
- $this->assertInstanceOf('ModelC', $model->ModelC);
- $this->assertInstanceOf('ModelD', $model->ModelC->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->assertEquals($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
- *
- * @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->assertEquals($expected, $result);
- }
- /**
- * Tests getAssociated method
- *
- * @return void
- */
- public function testGetAssociated() {
- $this->loadFixtures('Article', 'Tag');
- $Article = ClassRegistry::init('Article');
- $assocTypes = array('hasMany', 'hasOne', 'belongsTo', 'hasAndBelongsToMany');
- foreach ($assocTypes as $type) {
- $this->assertEquals($Article->getAssociated($type), array_keys($Article->{$type}));
- }
- $Article->bindModel(array('hasMany' => array('Category')));
- $this->assertEquals($Article->getAssociated('hasMany'), array('Comment', 'Category'));
- $results = $Article->getAssociated();
- $results = array_keys($results);
- sort($results);
- $this->assertEquals($results, array('Category', 'Comment', 'Tag', 'User'));
- $Article->unbindModel(array('hasAndBelongsToMany' => array('Tag')));
- $this->assertEquals($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->assertEquals($expected, $result);
- }
- /**
- * testAutoConstructAssociations method
- *
- * @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->assertEquals($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->assertSame($TestModel->belongsTo, $expected);
- $this->assertSame($TestFakeModel->belongsTo, $expected);
- $this->assertEquals($TestModel->User->name, 'User');
- $this->assertEquals($TestFakeModel->User->name, 'User');
- $this->assertEquals($TestModel->Category->name, 'Category');
- $this->assertEquals($TestFakeModel->Category->name, 'Category');
- $expected = array(
- 'Featured' => array(
- 'className' => 'Featured',
- 'foreignKey' => 'article_featured_id',
- 'conditions' => '',
- 'fields' => '',
- 'order' => '',
- 'dependent' => ''
- ));
- $this->assertSame($TestModel->hasOne, $expected);
- $this->assertSame($TestFakeModel->hasOne, $expected);
- $this->assertEquals($TestModel->Featured->name, 'Featured');
- $this->assertEquals($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->assertSame($TestModel->hasMany, $expected);
- $this->assertSame($TestFakeModel->hasMany, $expected);
- $this->assertEquals($TestModel->Comment->name, 'Comment');
- $this->assertEquals($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->assertSame($TestModel->hasAndBelongsToMany, $expected);
- $this->assertSame($TestFakeModel->hasAndBelongsToMany, $expected);
- $this->assertEquals($TestModel->Tag->name, 'Tag');
- $this->assertEquals($TestFakeModel->Tag->name, 'Tag');
- }
- /**
- * test creating associations with plugins. Ensure a double alias isn't created
- *
- * @return void
- */
- public function testAutoConstructPluginAssociations() {
- $Comment = ClassRegistry::init('TestPluginComment');
- $this->assertEquals(2, count($Comment->belongsTo), 'Too many associations');
- $this->assertFalse(isset($Comment->belongsTo['TestPlugin.User']));
- $this->assertTrue(isset($Comment->belongsTo['User']), 'Missing association');
- $this->assertTrue(isset($Comment->belongsTo['TestPluginArticle']), 'Missing association');
- }
- /**
- * test Model::__construct
- *
- * ensure that $actsAS and $findMethods are merged.
- *
- * @return void
- */
- public function testConstruct() {
- $this->loadFixtures('Post');
- $TestModel = ClassRegistry::init('MergeVarPluginPost');
- $this->assertEquals($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->assertEquals($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->assertEquals('test', $TestModel->useDbConfig);
- //deprecated but test it anyway
- $NewVoid = new TheVoid(null, false, 'other');
- $this->assertEquals('other', $NewVoid->useDbConfig);
- }
- /**
- * testColumnTypeFetching method
- *
- * @return void
- */
- public function testColumnTypeFetching() {
- $model = new Test();
- $this->assertEquals($model->getColumnType('id'), 'integer');
- $this->assertEquals($model->getColumnType('notes'), 'text');
- $this->assertEquals($model->getColumnType('updated'), 'datetime');
- $this->assertEquals($model->getColumnType('unknown'), null);
- $model = new Article();
- $this->assertEquals($model->getColumnType('User.created'), 'datetime');
- $this->assertEquals($model->getColumnType('Tag.id'), 'integer');
- $this->assertEquals($model->getColumnType('Article.id'), 'integer');
- }
- /**
- * testHabtmUniqueKey method
- *
- * @return void
- */
- public function testHabtmUniqueKey() {
- $model = new Item();
- $this->assertFalse($model->hasAndBelongsToMany['Portfolio']['unique']);
- }
- /**
- * testIdentity method
- *
- * @return void
- */
- public function testIdentity() {
- $TestModel = new Test();
- $result = $TestModel->alias;
- $expected = 'Test';
- $this->assertEquals($expected, $result);
- $TestModel = new TestAlias();
- $result = $TestModel->alias;
- $expected = 'TestAlias';
- $this->assertEquals($expected, $result);
- $TestModel = new Test(array('alias' => 'AnotherTest'));
- $result = $TestModel->alias;
- $expected = 'AnotherTest';
- $this->assertEquals($expected, $result);
- }
- /**
- * testWithAssociation method
- *
- * @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->assertEquals($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->assertEquals($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->assertEquals($expected, $result);
- $expected = $TestModel->findById(1);
- $TestModel->set($expected);
- $TestModel->save();
- $result = $TestModel->findById(1);
- $this->assertEquals($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'
- ),
- '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->assertTrue($result['Something']['updated'] >= $ts);
- unset($result['Something']['updated']);
- $this->assertEquals($expected, $result);
- }
- /**
- * testFindSelfAssociations method
- *
- * @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->assertEquals($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->assertEquals($expected, $result);
- }
- /**
- * testDynamicAssociations method
- *
- * @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->assertEquals($expected, $result);
- }
- /**
- * testCreation method
- *
- * @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->assertEquals($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->assertEquals($expected, $result);
- $TestModel = new Article();
- $result = $TestModel->create();
- $expected = array('Article' => array('published' => 'N'));
- $this->assertEquals($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->assertEquals($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->assertEquals($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
- *
- * @return void
- */
- public function testEscapeField() {
- $TestModel = new Test();
- $db = $TestModel->getDataSource();
- $result = $TestModel->escapeField('test_field');
- $expected = $db->name('Test.test_field');
- $this->assertEquals($expected, $result);
- $result = $TestModel->escapeField('TestField');
- $expected = $db->name('Test.TestField');
- $this->assertEquals($expected, $result);
- $result = $TestModel->escapeField('DomainHandle', 'Domain');
- $expected = $db->name('Domain.DomainHandle');
- $this->assertEquals($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->assertEquals($expected, $result);
- ConnectionManager::drop('mock');
- }
- /**
- * 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'));
- }
- /**
- * testMultischemaFixture
- *
- * @return void
- */
- public function testMultischemaFixture() {
- $config = new DATABASE_CONFIG();
- $this->skipIf($this->db instanceof Sqlite, 'This test is not compatible with Sqlite.');
- $this->skipIf(!isset($config->test) || !isset($config->test2),
- 'Primary and secondary test databases not configured, skipping cross-database join tests. To run these tests define $test and $test2 in your database configuration.'
- );
- $this->loadFixtures('Player', 'Guild', 'GuildsPlayer');
- $Player = ClassRegistry::init('Player');
- $this->assertEqual($Player->useDbConfig, 'test');
- $this->assertEqual($Player->Guild->useDbConfig, 'test');
- $this->assertEqual($Player->Guild->GuildsPlayer->useDbConfig, 'test2');
- $this->assertEqual($Player->GuildsPlayer->useDbConfig, 'test2');
- $players = $Player->find('all', array('recursive' => -1));
- $guilds = $Player->Guild->find('all', array('recursive' => -1));
- $guildsPlayers = $Player->GuildsPlayer->find('all', array('recursive' => -1));
- $this->assertEqual(true, count($players) > 1);
- $this->assertEqual(true, count($guilds) > 1);
- $this->assertEqual(true, count($guildsPlayers) > 1);
- }
- /**
- * testMultischemaFixtureWithThreeDatabases, three databases
- *
- * @return void
- */
- public function testMultischemaFixtureWithThreeDatabases() {
- $config = new DATABASE_CONFIG();
- $this->skipIf($this->db instanceof Sqlite, 'This test is not compatible with Sqlite.');
- $this->skipIf(
- !isset($config->test) || !isset($config->test2) || !isset($config->test_database_three),
- 'Primary, secondary, and tertiary test databases not configured, skipping test. To run this test define $test, $test2, and $test_database_three in your database configuration.'
- );
- $this->loadFixtures('Player', 'Guild', 'GuildsPlayer', 'Armor', 'ArmorsPlayer');
- $Player = ClassRegistry::init('Player');
- $Player->bindModel(array(
- 'hasAndBelongsToMany' => array(
- 'Armor' => array(
- 'with' => 'ArmorsPlayer',
- ),
- ),
- ), false);
- $this->assertEqual('test', $Player->useDbConfig);
- $this->assertEqual('test', $Player->Guild->useDbConfig);
- $this->assertEqual('test2', $Player->Guild->GuildsPlayer->useDbConfig);
- $this->assertEqual('test2', $Player->GuildsPlayer->useDbConfig);
- $this->assertEqual('test2', $Player->Armor->useDbConfig);
- $this->assertEqual('test_database_three', $Player->Armor->ArmorsPlayer->useDbConfig);
- $this->assertEqual('test', $Player->getDataSource()->configKeyName);
- $this->assertEqual('test', $Player->Guild->getDataSource()->configKeyName);
- $this->assertEqual('test2', $Player->GuildsPlayer->getDataSource()->configKeyName);
- $this->assertEqual('test2', $Player->Armor->getDataSource()->configKeyName);
- $this->assertEqual('test_database_three', $Player->Armor->ArmorsPlayer->getDataSource()->configKeyName);
- $players = $Player->find('all', array('recursive' => -1));
- $guilds = $Player->Guild->find('all', array('recursive' => -1));
- $guildsPlayers = $Player->GuildsPlayer->find('all', array('recursive' => -1));
- $armorsPlayers = $Player->ArmorsPlayer->find('all', array('recursive' => -1));
- $this->assertEqual(true, count($players) > 1);
- $this->assertEqual(true, count($guilds) > 1);
- $this->assertEqual(true, count($guildsPlayers) > 1);
- $this->assertEqual(true, count($armorsPlayers) > 1);
- }
- }
|