2009-07-24 22:17:14 +00:00
< ? php
/**
2009-10-16 13:19:23 +00:00
* ModelIntegrationTest file
2009-07-24 22:17:14 +00:00
*
2012-04-27 02:49:18 +00:00
* CakePHP ( tm ) Tests < http :// book . cakephp . org / 2.0 / en / development / testing . html >
2013-02-08 11:59:49 +00:00
* Copyright ( c ) Cake Software Foundation , Inc . ( http :// cakefoundation . org )
2009-07-24 22:17:14 +00:00
*
2010-10-03 16:31:21 +00:00
* Licensed under The MIT License
2013-02-08 12:22:51 +00:00
* For full copyright and license information , please see the LICENSE . txt
2010-10-03 16:31:21 +00:00
* Redistributions of files must retain the above copyright notice
2009-07-24 22:17:14 +00:00
*
2013-02-08 11:59:49 +00:00
* @ copyright Copyright ( c ) Cake Software Foundation , Inc . ( http :// cakefoundation . org )
2012-04-27 02:49:18 +00:00
* @ link http :// book . cakephp . org / 2.0 / en / development / testing . html CakePHP ( tm ) Tests
2011-07-26 06:16:14 +00:00
* @ package Cake . Test . Case . Model
2009-07-24 22:17:14 +00:00
* @ since CakePHP ( tm ) v 1.2 . 0.4206
2013-05-30 22:11:14 +00:00
* @ license http :// www . opensource . org / licenses / mit - license . php MIT License
2009-07-24 22:17:14 +00:00
*/
2010-12-09 05:55:24 +00:00
2011-04-10 21:10:30 +00:00
require_once dirname ( __FILE__ ) . DS . 'ModelTestBase.php' ;
2013-11-18 10:56:00 +00:00
2010-12-22 04:21:47 +00:00
App :: uses ( 'DboSource' , 'Model/Datasource' );
2013-03-13 20:58:55 +00:00
App :: uses ( 'DboMock' , 'Model/Datasource' );
2010-03-17 15:02:36 +00:00
/**
* DboMock class
* A Dbo Source driver to mock a connection and a identity name () method
*/
class DboMock extends DboSource {
/**
2012-03-19 01:20:17 +00:00
* Returns the $field without modifications
2014-04-02 01:02:37 +00:00
*
* @ return string
2012-03-19 01:20:17 +00:00
*/
2011-05-30 20:02:32 +00:00
public function name ( $field ) {
2010-03-17 15:02:36 +00:00
return $field ;
}
2011-12-06 20:52:48 +00:00
2010-03-17 15:02:36 +00:00
/**
2012-03-19 01:20:17 +00:00
* Returns true to fake a database connection
2014-04-02 01:02:37 +00:00
*
2014-07-03 13:36:42 +00:00
* @ return bool true
2012-03-19 01:20:17 +00:00
*/
2011-05-30 20:02:32 +00:00
public function connect () {
2010-03-17 15:02:36 +00:00
return true ;
}
2012-03-19 01:20:17 +00:00
2010-03-17 15:02:36 +00:00
}
2009-07-24 22:17:14 +00:00
/**
* ModelIntegrationTest
*
2011-07-26 06:16:14 +00:00
* @ package Cake . Test . Case . Model
2009-07-24 22:17:14 +00:00
*/
class ModelIntegrationTest extends BaseModelTest {
2009-07-26 09:59:51 +00:00
2010-07-14 23:53:41 +00:00
/**
* testAssociationLazyLoading
*
* @ group lazyloading
* @ return void
*/
public function testAssociationLazyLoading () {
2010-07-16 02:15:50 +00:00
$this -> loadFixtures ( 'ArticleFeaturedsTags' );
2010-07-14 23:53:41 +00:00
$Article = new ArticleFeatured ();
$this -> assertTrue ( isset ( $Article -> belongsTo [ 'User' ]));
$this -> assertFalse ( property_exists ( $Article , 'User' ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'User' , $Article -> User );
2010-07-14 23:53:41 +00:00
$this -> assertTrue ( isset ( $Article -> belongsTo [ 'Category' ]));
$this -> assertFalse ( property_exists ( $Article , 'Category' ));
$this -> assertTrue ( isset ( $Article -> Category ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'Category' , $Article -> Category );
2010-07-14 23:53:41 +00:00
$this -> assertTrue ( isset ( $Article -> hasMany [ 'Comment' ]));
$this -> assertFalse ( property_exists ( $Article , 'Comment' ));
$this -> assertTrue ( isset ( $Article -> Comment ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'Comment' , $Article -> Comment );
2010-07-14 23:53:41 +00:00
$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 ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'Tag' , $Article -> Tag );
2010-07-15 03:49:38 +00:00
$this -> assertFalse ( property_exists ( $Article , 'ArticleFeaturedsTag' ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'AppModel' , $Article -> ArticleFeaturedsTag );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'article_featureds_tags' , $Article -> hasAndBelongsToMany [ 'Tag' ][ 'joinTable' ]);
$this -> assertEquals ( 'tag_id' , $Article -> hasAndBelongsToMany [ 'Tag' ][ 'associationForeignKey' ]);
2010-07-15 02:40:56 +00:00
}
/**
* testAssociationLazyLoadWithHABTM
*
* @ group lazyloading
* @ return void
*/
public function testAssociationLazyLoadWithHABTM () {
2010-07-16 02:15:50 +00:00
$this -> loadFixtures ( 'FruitsUuidTag' , 'ArticlesTag' );
2011-05-17 19:48:16 +00:00
$this -> db -> cacheSources = false ;
2010-07-15 02:40:56 +00:00
$Article = new ArticleB ();
$this -> assertTrue ( isset ( $Article -> hasAndBelongsToMany [ 'TagB' ]));
$this -> assertFalse ( property_exists ( $Article , 'TagB' ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'TagB' , $Article -> TagB );
2010-07-15 02:40:56 +00:00
2010-07-15 03:49:38 +00:00
$this -> assertFalse ( property_exists ( $Article , 'ArticlesTag' ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'AppModel' , $Article -> ArticlesTag );
2010-07-15 02:40:56 +00:00
$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 ));
2010-07-15 03:49:38 +00:00
2010-07-15 02:40:56 +00:00
$this -> assertFalse ( property_exists ( $UuidTag , 'FruitsUuidTag' ));
$this -> assertTrue ( isset ( $UuidTag -> FruitsUuidTag ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'FruitsUuidTag' , $UuidTag -> FruitsUuidTag );
2010-07-15 02:40:56 +00:00
}
/**
* 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' ));
2010-12-24 17:54:04 +00:00
$this -> assertInstanceOf ( 'User' , $Article -> User );
2010-07-14 23:53:41 +00:00
}
2010-07-16 03:41:30 +00:00
/**
* Tests that creating a model with no existent database table associated will throw an exception
*
* @ expectedException MissingTableException
* @ return void
*/
public function testMissingTable () {
2010-07-16 03:46:47 +00:00
$Article = new ArticleB ( false , uniqid ());
2010-07-16 03:41:30 +00:00
$Article -> schema ();
}
2009-07-24 22:17:14 +00:00
/**
* testPkInHAbtmLinkModelArticleB
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testPkInHabtmLinkModelArticleB () {
2010-06-05 03:49:33 +00:00
$this -> loadFixtures ( 'Article' , 'Tag' , 'ArticlesTag' );
2012-03-19 01:20:17 +00:00
$TestModel = new ArticleB ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'article_id' , $TestModel -> ArticlesTag -> primaryKey );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
2013-11-19 22:32:31 +00:00
* Tests that $cacheSources is restored despite the settings on the model .
2009-07-24 22:17:14 +00:00
*
* @ return void
*/
2013-11-19 22:32:31 +00:00
public function testCacheSourcesRestored () {
2010-06-05 03:49:33 +00:00
$this -> loadFixtures ( 'JoinA' , 'JoinB' , 'JoinAB' , 'JoinC' , 'JoinAC' );
2009-07-24 22:17:14 +00:00
$this -> db -> cacheSources = true ;
$TestModel = new JoinA ();
$TestModel -> cacheSources = false ;
$TestModel -> setSource ( 'join_as' );
2013-11-19 22:32:31 +00:00
$this -> assertTrue ( $this -> db -> cacheSources );
2009-07-24 22:17:14 +00:00
$this -> db -> cacheSources = false ;
$TestModel = new JoinA ();
$TestModel -> cacheSources = true ;
$TestModel -> setSource ( 'join_as' );
$this -> assertFalse ( $this -> db -> cacheSources );
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testPkInHabtmLinkModel method
*
2012-03-19 01:20:17 +00:00
* @ return void
2009-07-24 22:17:14 +00:00
*/
2011-05-30 20:02:32 +00:00
public function testPkInHabtmLinkModel () {
2009-07-24 22:17:14 +00:00
//Test Nonconformant Models
2010-10-17 15:59:49 +00:00
$this -> loadFixtures ( 'Content' , 'ContentAccount' , 'Account' , 'JoinC' , 'JoinAC' , 'ItemsPortfolio' );
2010-06-24 05:22:43 +00:00
$TestModel = new Content ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'iContentAccountsId' , $TestModel -> ContentAccount -> primaryKey );
2009-07-24 22:17:14 +00:00
//test conformant models with no PK in the join table
2010-07-15 04:01:54 +00:00
$this -> loadFixtures ( 'Article' , 'Tag' );
2012-03-19 01:20:17 +00:00
$TestModel = new Article ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'article_id' , $TestModel -> ArticlesTag -> primaryKey );
2009-07-24 22:17:14 +00:00
//test conformant models with PK in join table
2012-03-19 01:20:17 +00:00
$TestModel = new Portfolio ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'id' , $TestModel -> ItemsPortfolio -> primaryKey );
2009-07-24 22:17:14 +00:00
//test conformant models with PK in join table - join table contains extra field
$this -> loadFixtures ( 'JoinA' , 'JoinB' , 'JoinAB' );
2012-03-19 01:20:17 +00:00
$TestModel = new JoinA ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'id' , $TestModel -> JoinAsJoinB -> primaryKey );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testDynamicBehaviorAttachment method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testDynamicBehaviorAttachment () {
2010-06-05 03:49:33 +00:00
$this -> loadFixtures ( 'Apple' , 'Sample' , 'Author' );
2010-06-24 05:22:43 +00:00
$TestModel = new Apple ();
2012-11-16 11:14:28 +00:00
$this -> assertEquals ( array (), $TestModel -> Behaviors -> loaded ());
2009-07-24 22:17:14 +00:00
2013-10-08 18:23:57 +00:00
$TestModel -> Behaviors -> load ( 'Tree' , array ( 'left' => 'left_field' , 'right' => 'right_field' ));
2009-07-24 22:17:14 +00:00
$this -> assertTrue ( is_object ( $TestModel -> Behaviors -> Tree ));
2012-11-16 11:14:28 +00:00
$this -> assertEquals ( array ( 'Tree' ), $TestModel -> Behaviors -> loaded ());
2009-07-24 22:17:14 +00:00
$expected = array (
'parent' => 'parent_id' ,
'left' => 'left_field' ,
'right' => 'right_field' ,
'scope' => '1 = 1' ,
'type' => 'nested' ,
'__parentChange' => false ,
2015-02-15 17:05:42 +00:00
'recursive' => - 1 ,
'level' => null
2009-07-24 22:17:14 +00:00
);
2012-01-08 01:24:33 +00:00
$this -> assertEquals ( $expected , $TestModel -> Behaviors -> Tree -> settings [ 'Apple' ]);
2009-07-24 22:17:14 +00:00
2013-10-08 18:23:57 +00:00
$TestModel -> Behaviors -> load ( 'Tree' , array ( 'enabled' => false ));
2012-01-08 01:24:33 +00:00
$this -> assertEquals ( $expected , $TestModel -> Behaviors -> Tree -> settings [ 'Apple' ]);
2012-11-16 11:14:28 +00:00
$this -> assertEquals ( array ( 'Tree' ), $TestModel -> Behaviors -> loaded ());
2009-07-24 22:17:14 +00:00
2013-10-08 18:23:57 +00:00
$TestModel -> Behaviors -> unload ( 'Tree' );
2012-11-16 11:14:28 +00:00
$this -> assertEquals ( array (), $TestModel -> Behaviors -> loaded ());
2009-07-24 22:17:14 +00:00
$this -> assertFalse ( isset ( $TestModel -> Behaviors -> Tree ));
}
2009-07-26 09:59:51 +00:00
2014-10-07 06:20:57 +00:00
/**
* testTreeWithContainable method
*
* @ return void
*/
public function testTreeWithContainable () {
$this -> loadFixtures ( 'Ad' , 'Campaign' );
$TestModel = new Ad ();
$TestModel -> Behaviors -> load ( 'Tree' );
$TestModel -> Behaviors -> load ( 'Containable' );
$node = $TestModel -> findById ( 2 );
$node [ 'Ad' ][ 'parent_id' ] = 1 ;
$TestModel -> save ( $node );
$result = $TestModel -> getParentNode ( array ( 'id' => 2 , 'contain' => 'Campaign' ));
$this -> assertTrue ( array_key_exists ( 'Campaign' , $result ));
$result = $TestModel -> children ( array ( 'id' => 1 , 'contain' => 'Campaign' ));
$this -> assertTrue ( array_key_exists ( 'Campaign' , $result [ 0 ]));
$result = $TestModel -> getPath ( array ( 'id' => 2 , 'contain' => 'Campaign' ));
$this -> assertTrue ( array_key_exists ( 'Campaign' , $result [ 0 ]));
$this -> assertTrue ( array_key_exists ( 'Campaign' , $result [ 1 ]));
}
2011-05-20 11:43:19 +00:00
/**
* testFindWithJoinsOption method
*
* @ return void
*/
2012-02-17 07:13:12 +00:00
public function testFindWithJoinsOption () {
2011-05-20 11:43:19 +00:00
$this -> loadFixtures ( 'Article' , 'User' );
2012-02-23 16:27:40 +00:00
$TestUser = new User ();
2011-05-20 11:43:19 +00:00
2011-12-01 07:21:31 +00:00
$options = array (
2011-05-20 11:43:19 +00:00
'fields' => array (
'user' ,
'Article.published' ,
),
2011-12-01 07:21:31 +00:00
'joins' => array (
array (
2011-05-20 11:43:19 +00:00
'table' => 'articles' ,
'alias' => 'Article' ,
2011-12-16 07:00:07 +00:00
'type' => 'LEFT' ,
2011-05-20 11:43:19 +00:00
'conditions' => array (
'User.id = Article.user_id' ,
),
),
),
2011-10-02 02:49:57 +00:00
'group' => array ( 'User.user' , 'Article.published' ),
2011-05-20 11:43:19 +00:00
'recursive' => - 1 ,
2011-10-02 02:49:57 +00:00
'order' => array ( 'User.user' )
2011-05-20 11:43:19 +00:00
);
$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' => '' ))
);
2011-12-13 04:35:31 +00:00
$this -> assertEquals ( $expected , $result );
2011-05-20 11:43:19 +00:00
}
2009-07-24 22:17:14 +00:00
/**
2012-12-22 22:48:15 +00:00
* Tests cross database joins . Requires $test and $test2 to both be set in DATABASE_CONFIG
2009-07-24 22:17:14 +00:00
* NOTE : When testing on MySQL , you must set 'persistent' => false on * both * database connections ,
* or one connection will step on the other .
2014-04-02 01:02:37 +00:00
*
* @ return void
2009-07-24 22:17:14 +00:00
*/
2011-05-30 20:02:32 +00:00
public function testCrossDatabaseJoins () {
2011-12-13 14:10:16 +00:00
$config = ConnectionManager :: enumConnectionObjects ();
2009-07-24 22:17:14 +00:00
2011-12-13 14:10:16 +00:00
$skip = ( ! isset ( $config [ 'test' ]) || ! isset ( $config [ 'test2' ]));
2009-07-24 22:17:14 +00:00
if ( $skip ) {
2010-09-19 18:18:27 +00:00
$this -> markTestSkipped ( ' Primary and secondary test databases not configured , skipping cross - database
2012-12-22 22:48:15 +00:00
join tests . To run theses tests defined $test and $test2 in your database configuration . '
2010-09-19 18:18:27 +00:00
);
2009-07-24 22:17:14 +00:00
}
$this -> loadFixtures ( 'Article' , 'Tag' , 'ArticlesTag' , 'User' , 'Comment' );
2010-06-24 05:22:43 +00:00
$TestModel = new Article ();
2009-07-24 22:17:14 +00:00
$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 ()
));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> find ( 'all' ));
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$db2 = ConnectionManager :: getDataSource ( 'test2' );
2011-05-24 17:32:38 +00:00
$this -> fixtureManager -> loadSingle ( 'User' , $db2 );
$this -> fixtureManager -> loadSingle ( 'Comment' , $db2 );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 3 , $TestModel -> find ( 'count' ));
2009-07-24 22:17:14 +00:00
$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' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
foreach ( $expected as $key => $value ) {
unset ( $value [ 'Comment' ], $value [ 'Tag' ]);
$expected [ $key ] = $value ;
}
$TestModel -> recursive = 0 ;
$result = $TestModel -> find ( 'all' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2012-04-04 23:33:57 +00:00
$result = Hash :: extract ( $TestModel -> User -> find ( 'all' ), '{n}.User.id' );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( array ( '1' , '2' , '3' , '4' ), $result );
$this -> assertEquals ( $expected , $TestModel -> find ( 'all' ));
2009-07-24 22:17:14 +00:00
$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'
)));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> Comment -> find ( 'all' ));
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2011-05-24 13:02:45 +00:00
/**
* test HABM operations without clobbering existing records #275
*
* @ return void
*/
2012-02-17 07:13:12 +00:00
public function testHABTMKeepExisting () {
2011-05-24 13:02:45 +00:00
$this -> loadFixtures ( 'Site' , 'Domain' , 'DomainsSite' );
$Site = new Site ();
$results = $Site -> find ( 'count' );
$expected = 3 ;
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $results );
2011-05-24 13:02:45 +00:00
$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 ,
2012-02-17 07:13:12 +00:00
),
));
2011-05-24 13:02:45 +00:00
$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 ,
2012-02-17 07:13:12 +00:00
),
));
2011-05-24 13:02:45 +00:00
$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 ),
2012-02-17 07:13:12 +00:00
)
);
2011-05-24 13:02:45 +00:00
$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' ]);
}
2012-03-18 08:05:49 +00:00
/**
* testHABTMKeepExistingAlternateDataFormat
*
* @ return void
*/
public function testHABTMKeepExistingAlternateDataFormat () {
$this -> loadFixtures ( 'Site' , 'Domain' , 'DomainsSite' );
$Site = new Site ();
$expected = array (
array (
'DomainsSite' => array (
'id' => 1 ,
'site_id' => 1 ,
'domain_id' => 1 ,
'active' => true ,
'created' => '2007-03-17 01:16:23'
)
),
array (
'DomainsSite' => array (
'id' => 2 ,
'site_id' => 1 ,
'domain_id' => 2 ,
'active' => true ,
'created' => '2007-03-17 01:16:23'
)
)
);
$result = $Site -> DomainsSite -> find ( 'all' , array (
'conditions' => array ( 'DomainsSite.site_id' => 1 ),
'fields' => array (
'DomainsSite.id' ,
'DomainsSite.site_id' ,
'DomainsSite.domain_id' ,
'DomainsSite.active' ,
'DomainsSite.created'
),
'order' => 'DomainsSite.id'
));
$this -> assertEquals ( $expected , $result );
$time = date ( 'Y-m-d H:i:s' );
$data = array (
'Site' => array (
'id' => 1
),
'Domain' => array (
array (
'site_id' => 1 ,
'domain_id' => 3 ,
'created' => $time ,
),
array (
'id' => 2 ,
'site_id' => 1 ,
'domain_id' => 2
),
)
);
$Site -> save ( $data );
$expected = array (
array (
'DomainsSite' => array (
'id' => 2 ,
'site_id' => 1 ,
'domain_id' => 2 ,
'active' => true ,
'created' => '2007-03-17 01:16:23'
)
),
array (
'DomainsSite' => array (
'id' => 7 ,
'site_id' => 1 ,
'domain_id' => 3 ,
'active' => false ,
'created' => $time
)
)
);
$result = $Site -> DomainsSite -> find ( 'all' , array (
'conditions' => array ( 'DomainsSite.site_id' => 1 ),
'fields' => array (
'DomainsSite.id' ,
'DomainsSite.site_id' ,
'DomainsSite.domain_id' ,
'DomainsSite.active' ,
'DomainsSite.created'
),
'order' => 'DomainsSite.id'
));
$this -> assertEquals ( $expected , $result );
}
2011-05-24 13:02:45 +00:00
/**
* test HABM operations without clobbering existing records #275
*
* @ return void
*/
2012-02-17 07:13:12 +00:00
public function testHABTMKeepExistingWithThreeDbs () {
2011-05-24 13:02:45 +00:00
$config = ConnectionManager :: enumConnectionObjects ();
2012-03-14 14:01:19 +00:00
$this -> skipIf ( $this -> db instanceof Sqlite , 'This test is not compatible with Sqlite.' );
2011-05-24 13:02:45 +00:00
$this -> skipIf (
! isset ( $config [ 'test' ]) || ! isset ( $config [ 'test2' ]) || ! isset ( $config [ 'test_database_three' ]),
2012-12-22 22:48:15 +00:00
'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.'
2012-02-17 07:13:12 +00:00
);
2011-05-24 13:02:45 +00:00
$this -> loadFixtures ( 'Player' , 'Guild' , 'GuildsPlayer' , 'Armor' , 'ArmorsPlayer' );
$Player = ClassRegistry :: init ( 'Player' );
$Player -> bindModel ( array (
'hasAndBelongsToMany' => array (
'Armor' => array (
'with' => 'ArmorsPlayer' ,
'unique' => 'keepExisting' ,
),
2012-02-17 07:13:12 +00:00
),
), false );
2011-05-24 13:02:45 +00:00
$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' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 4 , count ( $players ));
2012-04-04 23:33:57 +00:00
$playersGuilds = Hash :: extract ( $players , '{n}.Guild.{n}.GuildsPlayer' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 3 , count ( $playersGuilds ));
2012-04-04 23:33:57 +00:00
$playersArmors = Hash :: extract ( $players , '{n}.Armor.{n}.ArmorsPlayer' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 3 , count ( $playersArmors ));
2011-05-24 13:02:45 +00:00
unset ( $players );
$larry = $Player -> findByName ( 'larry' );
2012-04-04 23:33:57 +00:00
$larrysArmor = Hash :: extract ( $larry , 'Armor.{n}.ArmorsPlayer' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 1 , count ( $larrysArmor ));
2011-05-24 13:02:45 +00:00
$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' );
2012-04-04 23:33:57 +00:00
$larrysGuild = Hash :: extract ( $larry , 'Guild.{n}.GuildsPlayer' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 2 , count ( $larrysGuild ));
2012-04-04 23:33:57 +00:00
$larrysArmor = Hash :: extract ( $larry , 'Armor.{n}.ArmorsPlayer' );
2013-08-07 23:03:21 +00:00
$this -> assertEquals ( 2 , count ( $larrysArmor ));
2011-05-24 13:02:45 +00:00
$Player -> ArmorsPlayer -> id = 3 ;
$Player -> ArmorsPlayer -> saveField ( 'broken' , true ); // larry's cloak broke
$larry = $Player -> findByName ( 'larry' );
2012-04-04 23:33:57 +00:00
$larrysCloak = Hash :: extract ( $larry , 'Armor.{n}.ArmorsPlayer[armor_id=3]' , $larry );
2011-05-24 13:02:45 +00:00
$this -> assertNotEmpty ( $larrysCloak );
2012-04-04 23:33:57 +00:00
$this -> assertTrue ( $larrysCloak [ 0 ][ 'broken' ]); // still broken
2011-05-24 13:02:45 +00:00
}
2009-07-24 22:17:14 +00:00
/**
* testDisplayField method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testDisplayField () {
2010-06-05 03:49:33 +00:00
$this -> loadFixtures ( 'Post' , 'Comment' , 'Person' , 'User' );
2009-07-24 22:17:14 +00:00
$Post = new Post ();
$Comment = new Comment ();
$Person = new Person ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'title' , $Post -> displayField );
$this -> assertEquals ( 'name' , $Person -> displayField );
$this -> assertEquals ( 'id' , $Comment -> displayField );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testSchema method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testSchema () {
2009-07-24 22:17:14 +00:00
$Post = new Post ();
$result = $Post -> schema ();
$columns = array ( 'id' , 'author_id' , 'title' , 'body' , 'published' , 'created' , 'updated' );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $columns , array_keys ( $result ));
2009-07-24 22:17:14 +00:00
$types = array ( 'integer' , 'integer' , 'string' , 'text' , 'string' , 'datetime' , 'datetime' );
2012-04-04 23:33:57 +00:00
$this -> assertEquals ( Hash :: extract ( array_values ( $result ), '{n}.type' ), $types );
2009-07-24 22:17:14 +00:00
$result = $Post -> schema ( 'body' );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'text' , $result [ 'type' ]);
2009-07-24 22:17:14 +00:00
$this -> assertNull ( $Post -> schema ( 'foo' ));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $Post -> getColumnTypes (), array_combine ( $columns , $types ));
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2012-12-20 02:18:34 +00:00
/**
* Check schema () on a model with useTable = false ;
*
* @ return void
*/
public function testSchemaUseTableFalse () {
$model = new TheVoid ();
$result = $model -> schema ();
$this -> assertNull ( $result );
$result = $model -> create ();
$this -> assertEmpty ( $result );
}
2009-07-24 22:17:14 +00:00
/**
2011-12-26 15:03:14 +00:00
* data provider for time tests .
2009-07-24 22:17:14 +00:00
*
2011-12-26 15:03:14 +00:00
* @ return array
*/
public static function timeProvider () {
$db = ConnectionManager :: getDataSource ( 'test' );
$now = $db -> expression ( 'NOW()' );
return array (
// blank
array (
array ( 'hour' => '' , 'min' => '' , 'meridian' => '' ),
''
),
// missing hour
array (
array ( 'hour' => '' , 'min' => '00' , 'meridian' => 'pm' ),
''
),
// all blank
array (
array ( 'hour' => '' , 'min' => '' , 'sec' => '' ),
''
),
2012-03-14 14:01:19 +00:00
// set and empty merdian
2011-12-26 15:03:14 +00:00
array (
array ( 'hour' => '1' , 'min' => '00' , 'meridian' => '' ),
''
),
// midnight
array (
array ( 'hour' => '12' , 'min' => '0' , 'meridian' => 'am' ),
'00:00:00'
),
array (
array ( 'hour' => '00' , 'min' => '00' ),
'00:00:00'
),
// 3am
array (
array ( 'hour' => '03' , 'min' => '04' , 'sec' => '04' ),
'03:04:04'
),
array (
array ( 'hour' => '3' , 'min' => '4' , 'sec' => '4' ),
'03:04:04'
),
array (
array ( 'hour' => '03' , 'min' => '4' , 'sec' => '4' ),
'03:04:04'
),
array (
$now ,
$now
)
);
}
/**
* test deconstruct with time fields .
*
* @ dataProvider timeProvider
2009-07-24 22:17:14 +00:00
* @ return void
2009-11-14 12:19:25 +00:00
*/
2011-12-26 15:03:14 +00:00
public function testDeconstructFieldsTime ( $input , $result ) {
2011-05-23 03:19:13 +00:00
$this -> skipIf ( $this -> db instanceof Sqlserver , 'This test is not compatible with SQL Server.' );
2011-05-22 04:51:05 +00:00
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Apple' );
2010-06-24 05:22:43 +00:00
$TestModel = new Apple ();
2009-07-24 22:17:14 +00:00
2011-12-26 15:03:14 +00:00
$data = array (
'Apple' => array (
'mytime' => $input
)
);
2009-07-24 22:17:14 +00:00
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-12-26 15:03:14 +00:00
$expected = array ( 'Apple' => array ( 'mytime' => $result ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testDeconstructFields with datetime , timestamp , and date fields
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testDeconstructFieldsDateTime () {
2011-05-23 03:19:13 +00:00
$this -> skipIf ( $this -> db instanceof Sqlserver , 'This test is not compatible with SQL Server.' );
2011-05-22 04:51:05 +00:00
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Apple' );
2010-06-24 05:22:43 +00:00
$TestModel = new Apple ();
2009-07-24 22:17:14 +00:00
//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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$data = array ();
$data [ 'Apple' ][ 'date' ][ 'year' ] = '' ;
$data [ 'Apple' ][ 'date' ][ 'month' ] = '' ;
$data [ 'Apple' ][ 'date' ][ 'day' ] = '' ;
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'date' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '2007-08-20 00:00:00' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '2007-08-20 10:12:00' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$data = array ();
$data [ 'Apple' ][ 'created' ][ 'hour' ] = '20' ;
$data [ 'Apple' ][ 'created' ][ 'min' ] = '33' ;
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$data = array ();
$data [ 'Apple' ][ 'created' ][ 'hour' ] = '20' ;
$data [ 'Apple' ][ 'created' ][ 'min' ] = '33' ;
$data [ 'Apple' ][ 'created' ][ 'sec' ] = '33' ;
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 (
2011-12-01 07:21:31 +00:00
'Apple' => array (
'created' => '' ,
'date' => '2006-12-25'
2009-07-24 22:17:14 +00:00
));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 (
2011-12-01 07:21:31 +00:00
'Apple' => array (
'created' => '2007-08-20 10:12:09' ,
'date' => '2006-12-25'
2009-07-24 22:17:14 +00:00
));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' , 'date' => '' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$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 );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'created' => '' , 'date' => '2006-12-25' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
$data = array ();
$data [ 'Apple' ][ 'date' ][ 'year' ] = '2006' ;
$data [ 'Apple' ][ 'date' ][ 'month' ] = '12' ;
$data [ 'Apple' ][ 'date' ][ 'day' ] = '25' ;
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-12-01 07:21:31 +00:00
$expected = array ( 'Apple' => array ( 'date' => '2006-12-25' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> data );
2009-07-24 22:17:14 +00:00
2010-09-20 02:58:30 +00:00
$db = ConnectionManager :: getDataSource ( 'test' );
2009-07-24 22:17:14 +00:00
$data = array ();
$data [ 'Apple' ][ 'modified' ] = $db -> expression ( 'NOW()' );
$TestModel -> data = null ;
$TestModel -> set ( $data );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $TestModel -> data , $data );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testTablePrefixSwitching method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testTablePrefixSwitching () {
2009-07-24 22:17:14 +00:00
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' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'aaa_apples' , $this -> db -> fullTableName ( $TestModel ));
$this -> assertContains ( 'aaa_apples' , $db1 -> fullTableName ( $TestModel ));
$this -> assertContains ( 'aaa_apples' , $db2 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel -> setDataSource ( 'database2' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'bbb_apples' , $this -> db -> fullTableName ( $TestModel ));
$this -> assertContains ( 'bbb_apples' , $db1 -> fullTableName ( $TestModel ));
$this -> assertContains ( 'bbb_apples' , $db2 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel = new Apple ();
$TestModel -> tablePrefix = 'custom_' ;
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'custom_apples' , $this -> db -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel -> setDataSource ( 'database1' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'custom_apples' , $this -> db -> fullTableName ( $TestModel ));
$this -> assertContains ( 'custom_apples' , $db1 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel = new Apple ();
$TestModel -> setDataSource ( 'database1' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'aaa_apples' , $this -> db -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel -> tablePrefix = '' ;
$TestModel -> setDataSource ( 'database2' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'apples' , $db2 -> fullTableName ( $TestModel ));
$this -> assertContains ( 'apples' , $db1 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel -> tablePrefix = null ;
$TestModel -> setDataSource ( 'database1' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'aaa_apples' , $db2 -> fullTableName ( $TestModel ));
$this -> assertContains ( 'aaa_apples' , $db1 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
$TestModel -> tablePrefix = false ;
$TestModel -> setDataSource ( 'database2' );
2011-11-08 05:38:36 +00:00
$this -> assertContains ( 'apples' , $db2 -> fullTableName ( $TestModel ));
$this -> assertContains ( 'apples' , $db1 -> fullTableName ( $TestModel ));
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* Tests validation parameter order in custom validation methods
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testInvalidAssociation () {
2010-06-24 05:22:43 +00:00
$TestModel = new ValidationTest1 ();
2009-07-24 22:17:14 +00:00
$this -> assertNull ( $TestModel -> getAssociated ( 'Foo' ));
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testLoadModelSecondIteration method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testLoadModelSecondIteration () {
2010-07-15 04:01:54 +00:00
$this -> loadFixtures ( 'Apple' , 'Message' , 'Thread' , 'Bid' );
2009-07-24 22:17:14 +00:00
$model = new ModelA ();
2011-11-16 17:56:34 +00:00
$this -> assertInstanceOf ( 'ModelA' , $model );
2009-07-24 22:17:14 +00:00
2011-11-16 17:56:34 +00:00
$this -> assertInstanceOf ( 'ModelB' , $model -> ModelB );
$this -> assertInstanceOf ( 'ModelD' , $model -> ModelB -> ModelD );
2009-07-24 22:17:14 +00:00
2011-11-16 17:56:34 +00:00
$this -> assertInstanceOf ( 'ModelC' , $model -> ModelC );
$this -> assertInstanceOf ( 'ModelD' , $model -> ModelC -> ModelD );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
2010-01-14 21:42:16 +00:00
* ensure that exists () does not persist between method calls reset on create
2009-07-24 22:17:14 +00:00
*
* @ return void
2009-11-14 12:19:25 +00:00
*/
2011-05-30 20:02:32 +00:00
public function testResetOfExistsOnCreate () {
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Article' );
2010-06-24 05:22:43 +00:00
$Article = new Article ();
2009-07-24 22:17:14 +00:00
$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 );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'Staying alive' , $result [ 'Article' ][ 'title' ]);
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2010-01-14 21:42:16 +00:00
/**
* testUseTableFalseExistsCheck method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testUseTableFalseExistsCheck () {
2010-01-14 21:42:16 +00:00
$this -> loadFixtures ( 'Article' );
2010-06-24 05:22:43 +00:00
$Article = new Article ();
2010-01-14 21:42:16 +00:00
$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 ();
2015-08-18 12:32:16 +00:00
$this -> assertFalse ( $result );
2010-01-14 21:42:16 +00:00
}
2009-07-24 22:17:14 +00:00
/**
* testPluginAssociations method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testPluginAssociations () {
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'TestPluginArticle' , 'User' , 'TestPluginComment' );
2010-06-24 05:22:43 +00:00
$TestModel = new TestPluginArticle ();
2009-07-24 22:17:14 +00:00
$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 ()
));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* Tests getAssociated method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testGetAssociated () {
2010-07-15 04:01:54 +00:00
$this -> loadFixtures ( 'Article' , 'Tag' );
2009-07-24 22:17:14 +00:00
$Article = ClassRegistry :: init ( 'Article' );
$assocTypes = array ( 'hasMany' , 'hasOne' , 'belongsTo' , 'hasAndBelongsToMany' );
foreach ( $assocTypes as $type ) {
2012-11-21 14:39:03 +00:00
$this -> assertEquals ( $Article -> getAssociated ( $type ), array_keys ( $Article -> { $type }));
2009-07-24 22:17:14 +00:00
}
$Article -> bindModel ( array ( 'hasMany' => array ( 'Category' )));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( array ( 'Comment' , 'Category' ), $Article -> getAssociated ( 'hasMany' ));
2009-07-24 22:17:14 +00:00
$results = $Article -> getAssociated ();
2010-06-05 03:49:33 +00:00
$results = array_keys ( $results );
sort ( $results );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( array ( 'Category' , 'Comment' , 'Tag' , 'User' ), $results );
2009-07-24 22:17:14 +00:00
$Article -> unbindModel ( array ( 'hasAndBelongsToMany' => array ( 'Tag' )));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( array (), $Article -> getAssociated ( 'hasAndBelongsToMany' ));
2009-07-24 22:17:14 +00:00
$result = $Article -> getAssociated ( 'Category' );
$expected = array (
'className' => 'Category' ,
'foreignKey' => 'article_id' ,
'conditions' => '' ,
'fields' => '' ,
'order' => '' ,
'limit' => '' ,
'offset' => '' ,
'dependent' => '' ,
'exclusive' => '' ,
'finderQuery' => '' ,
'counterQuery' => '' ,
'association' => 'hasMany' ,
);
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
}
/**
* testAutoConstructAssociations method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testAutoConstructAssociations () {
2010-06-05 03:49:33 +00:00
$this -> loadFixtures ( 'User' , 'ArticleFeatured' , 'Featured' , 'ArticleFeaturedsTags' );
2010-06-24 05:22:43 +00:00
$TestModel = new AssociationTest1 ();
2009-07-24 22:17:14 +00:00
$result = $TestModel -> hasAndBelongsToMany ;
$expected = array ( 'AssociationTest2' => array (
'unique' => false ,
'joinTable' => 'join_as_join_bs' ,
'foreignKey' => false ,
'className' => 'AssociationTest2' ,
'with' => 'JoinAsJoinB' ,
2010-07-15 03:49:38 +00:00
'dynamicWith' => true ,
2009-07-24 22:17:14 +00:00
'associationForeignKey' => 'join_b_id' ,
'conditions' => '' , 'fields' => '' , 'order' => '' , 'limit' => '' , 'offset' => '' ,
2013-08-19 01:37:37 +00:00
'finderQuery' => ''
2009-07-24 22:17:14 +00:00
));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$TestModel = new ArticleFeatured ();
$TestFakeModel = new ArticleFeatured ( array ( 'table' => false ));
2009-07-24 22:17:14 +00:00
$expected = array (
'User' => array (
'className' => 'User' , 'foreignKey' => 'user_id' ,
'conditions' => '' , 'fields' => '' , 'order' => '' , 'counterCache' => ''
),
'Category' => array (
'className' => 'Category' , 'foreignKey' => 'category_id' ,
'conditions' => '' , 'fields' => '' , 'order' => '' , 'counterCache' => ''
)
);
2014-01-09 23:33:27 +00:00
$this -> assertSame ( $expected , $TestModel -> belongsTo );
$this -> assertSame ( $expected , $TestFakeModel -> belongsTo );
2009-07-24 22:17:14 +00:00
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'User' , $TestModel -> User -> name );
$this -> assertEquals ( 'User' , $TestFakeModel -> User -> name );
$this -> assertEquals ( 'Category' , $TestModel -> Category -> name );
$this -> assertEquals ( 'Category' , $TestFakeModel -> Category -> name );
2009-07-24 22:17:14 +00:00
$expected = array (
'Featured' => array (
'className' => 'Featured' ,
'foreignKey' => 'article_featured_id' ,
'conditions' => '' ,
'fields' => '' ,
'order' => '' ,
'dependent' => ''
));
2014-01-09 23:33:27 +00:00
$this -> assertSame ( $expected , $TestModel -> hasOne );
$this -> assertSame ( $expected , $TestFakeModel -> hasOne );
2009-07-24 22:17:14 +00:00
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'Featured' , $TestModel -> Featured -> name );
$this -> assertEquals ( 'Featured' , $TestFakeModel -> Featured -> name );
2009-07-24 22:17:14 +00:00
$expected = array (
'Comment' => array (
'className' => 'Comment' ,
'dependent' => true ,
'foreignKey' => 'article_featured_id' ,
'conditions' => '' ,
'fields' => '' ,
'order' => '' ,
'limit' => '' ,
'offset' => '' ,
'exclusive' => '' ,
'finderQuery' => '' ,
'counterQuery' => ''
));
2014-01-09 23:33:27 +00:00
$this -> assertSame ( $expected , $TestModel -> hasMany );
$this -> assertSame ( $expected , $TestFakeModel -> hasMany );
2009-07-24 22:17:14 +00:00
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'Comment' , $TestModel -> Comment -> name );
$this -> assertEquals ( 'Comment' , $TestFakeModel -> Comment -> name );
2009-07-24 22:17:14 +00:00
$expected = array (
'Tag' => array (
'className' => 'Tag' ,
'joinTable' => 'article_featureds_tags' ,
'with' => 'ArticleFeaturedsTag' ,
2010-07-15 03:49:38 +00:00
'dynamicWith' => true ,
2009-07-24 22:17:14 +00:00
'foreignKey' => 'article_featured_id' ,
'associationForeignKey' => 'tag_id' ,
'conditions' => '' ,
'fields' => '' ,
'order' => '' ,
'limit' => '' ,
'offset' => '' ,
'unique' => true ,
'finderQuery' => '' ,
));
2014-01-09 23:33:27 +00:00
$this -> assertSame ( $expected , $TestModel -> hasAndBelongsToMany );
$this -> assertSame ( $expected , $TestFakeModel -> hasAndBelongsToMany );
2009-07-24 22:17:14 +00:00
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'Tag' , $TestModel -> Tag -> name );
$this -> assertEquals ( 'Tag' , $TestFakeModel -> Tag -> name );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2011-09-18 16:26:59 +00:00
/**
* 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' );
}
2009-07-24 22:17:14 +00:00
/**
* test Model :: __construct
*
2011-04-17 00:39:00 +00:00
* ensure that $actsAS and $findMethods are merged .
2009-07-24 22:17:14 +00:00
*
* @ return void
2009-11-14 12:19:25 +00:00
*/
2011-05-30 20:02:32 +00:00
public function testConstruct () {
2010-07-15 04:01:54 +00:00
$this -> loadFixtures ( 'Post' );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$TestModel = ClassRegistry :: init ( 'MergeVarPluginPost' );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( array ( 'Containable' => null , 'Tree' => null ), $TestModel -> actsAs );
2009-07-24 22:17:14 +00:00
$this -> assertTrue ( isset ( $TestModel -> Behaviors -> Containable ));
$this -> assertTrue ( isset ( $TestModel -> Behaviors -> Tree ));
2010-06-24 05:22:43 +00:00
$TestModel = ClassRegistry :: init ( 'MergeVarPluginComment' );
2010-11-21 19:42:13 +00:00
$expected = array ( 'Containable' => array ( 'some_settings' ));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $TestModel -> actsAs );
2009-07-24 22:17:14 +00:00
$this -> assertTrue ( isset ( $TestModel -> Behaviors -> Containable ));
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* test Model :: __construct
*
2011-04-17 00:39:00 +00:00
* ensure that $actsAS and $findMethods are merged .
2009-07-24 22:17:14 +00:00
*
* @ return void
2009-11-14 12:19:25 +00:00
*/
2011-05-30 20:02:32 +00:00
public function testConstructWithAlternateDataSource () {
2010-06-24 05:22:43 +00:00
$TestModel = ClassRegistry :: init ( array (
2010-09-20 02:58:30 +00:00
'class' => 'DoesntMatter' , 'ds' => 'test' , 'table' => false
2009-07-24 22:17:14 +00:00
));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( 'test' , $TestModel -> useDbConfig );
2009-07-24 22:17:14 +00:00
//deprecated but test it anyway
2010-06-24 05:22:43 +00:00
$NewVoid = new TheVoid ( null , false , 'other' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( 'other' , $NewVoid -> useDbConfig );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testColumnTypeFetching method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testColumnTypeFetching () {
2010-06-24 05:22:43 +00:00
$model = new Test ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'integer' , $model -> getColumnType ( 'id' ));
$this -> assertEquals ( 'text' , $model -> getColumnType ( 'notes' ));
$this -> assertEquals ( 'datetime' , $model -> getColumnType ( 'updated' ));
$this -> assertEquals ( null , $model -> getColumnType ( 'unknown' ));
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$model = new Article ();
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'datetime' , $model -> getColumnType ( 'User.created' ));
$this -> assertEquals ( 'integer' , $model -> getColumnType ( 'Tag.id' ));
$this -> assertEquals ( 'integer' , $model -> getColumnType ( 'Article.id' ));
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testHabtmUniqueKey method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testHabtmUniqueKey () {
2010-06-24 05:22:43 +00:00
$model = new Item ();
2009-07-24 22:17:14 +00:00
$this -> assertFalse ( $model -> hasAndBelongsToMany [ 'Portfolio' ][ 'unique' ]);
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testIdentity method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testIdentity () {
2010-06-24 05:22:43 +00:00
$TestModel = new Test ();
2009-07-24 22:17:14 +00:00
$result = $TestModel -> alias ;
$expected = 'Test' ;
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$TestModel = new TestAlias ();
2009-07-24 22:17:14 +00:00
$result = $TestModel -> alias ;
$expected = 'TestAlias' ;
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$TestModel = new Test ( array ( 'alias' => 'AnotherTest' ));
2009-07-24 22:17:14 +00:00
$result = $TestModel -> alias ;
$expected = 'AnotherTest' ;
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2012-06-19 21:46:34 +00:00
$TestModel = ClassRegistry :: init ( 'Test' );
$expected = null ;
$this -> assertEquals ( $expected , $TestModel -> plugin );
$TestModel = ClassRegistry :: init ( 'TestPlugin.TestPluginComment' );
$expected = 'TestPlugin' ;
$this -> assertEquals ( $expected , $TestModel -> plugin );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testWithAssociation method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testWithAssociation () {
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Something' , 'SomethingElse' , 'JoinThing' );
2010-06-24 05:22:43 +00:00
$TestModel = new Something ();
2009-07-24 22:17:14 +00:00
$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' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:41:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
),
'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' ,
2011-01-02 02:37:27 +00:00
'doomed' => true ,
2009-07-24 22:17:14 +00:00
'created' => '2007-03-18 10:43:23' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:45:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
)))),
array (
'SomethingElse' => array (
'id' => '2' ,
'title' => 'Second Post' ,
'body' => 'Second Post Body' ,
'published' => 'Y' ,
'created' => '2007-03-18 10:41:23' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:43:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
),
'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' ,
2011-01-02 02:37:27 +00:00
'doomed' => true ,
2009-07-24 22:17:14 +00:00
'created' => '2007-03-18 10:39:23' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:41:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
)))),
array (
'SomethingElse' => array (
'id' => '3' ,
'title' => 'Third Post' ,
'body' => 'Third Post Body' ,
'published' => 'Y' ,
'created' => '2007-03-18 10:43:23' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:45:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
),
'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' ,
2011-01-02 02:37:27 +00:00
'doomed' => false ,
2009-07-24 22:17:14 +00:00
'created' => '2007-03-18 10:41:23' ,
2013-08-16 07:28:32 +00:00
'updated' => '2007-03-18 10:43:31' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2009-07-24 22:17:14 +00:00
)))));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
$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 (
2011-01-02 02:37:27 +00:00
'doomed' => true ,
2009-07-24 22:17:14 +00:00
'something_id' => '1' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '2' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
))),
2009-07-24 22:17:14 +00:00
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 (
2011-01-02 02:37:27 +00:00
'doomed' => false ,
2009-07-24 22:17:14 +00:00
'something_id' => '2' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '3' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
))),
2009-07-24 22:17:14 +00:00
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 (
2011-01-02 02:37:27 +00:00
'doomed' => true ,
2009-07-24 22:17:14 +00:00
'something_id' => '3' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '1' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
))));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
$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 (
2011-01-02 02:37:27 +00:00
'doomed' => true ,
2009-07-24 22:17:14 +00:00
'something_id' => '1' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '2' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
)));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
$expected = $TestModel -> findById ( 1 );
$TestModel -> set ( $expected );
$TestModel -> save ();
$result = $TestModel -> findById ( 1 );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
$TestModel -> hasAndBelongsToMany [ 'SomethingElse' ][ 'unique' ] = false ;
$TestModel -> create ( array (
'Something' => array ( 'id' => 1 ),
'SomethingElse' => array ( 3 , array (
'something_else_id' => 1 ,
2011-01-02 02:37:27 +00:00
'doomed' => true
2009-07-24 22:17:14 +00:00
))));
$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' ,
2011-10-03 19:21:07 +00:00
'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' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '1' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2011-10-03 19:21:07 +00:00
),
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' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '2' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2011-10-03 19:21:07 +00:00
),
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' ,
2013-08-16 07:28:32 +00:00
'something_else_id' => '3' ,
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2013-08-16 07:28:32 +00:00
),
2013-08-19 06:29:39 +00:00
'afterFind' => 'Successfully added by AfterFind'
2011-10-03 19:21:07 +00:00
)
2013-08-16 07:28:32 +00:00
));
2015-07-21 08:22:53 +00:00
$this -> assertEquals ( static :: date (), $result [ 'Something' ][ 'updated' ]);
2011-10-03 19:21:07 +00:00
unset ( $result [ 'Something' ][ 'updated' ]);
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testFindSelfAssociations method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testFindSelfAssociations () {
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Person' );
2010-06-24 05:22:43 +00:00
$TestModel = new Person ();
2009-07-24 22:17:14 +00:00
$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
)));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
$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 ()
)));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testDynamicAssociations method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testDynamicAssociations () {
2009-07-24 22:17:14 +00:00
$this -> loadFixtures ( 'Article' , 'Comment' );
2010-06-24 05:22:43 +00:00
$TestModel = new Article ();
2009-07-24 22:17:14 +00:00
$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'
))));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
}
2009-07-26 09:59:51 +00:00
2009-07-24 22:17:14 +00:00
/**
* testCreation method
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testCreation () {
2010-10-17 15:59:49 +00:00
$this -> loadFixtures ( 'Article' , 'ArticleFeaturedsTags' , 'User' , 'Featured' );
2010-06-24 05:22:43 +00:00
$TestModel = new Test ();
2009-07-24 22:17:14 +00:00
$result = $TestModel -> create ();
$expected = array ( 'Test' => array ( 'notes' => 'write some notes here' ));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2010-06-24 05:22:43 +00:00
$TestModel = new User ();
2009-07-24 22:17:14 +00:00
$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 ;
}
2013-11-17 21:34:22 +00:00
foreach ( array ( 'collate' , 'charset' , 'comment' , 'unsigned' ) as $type ) {
2010-10-17 15:59:49 +00:00
foreach ( $result as $i => $r ) {
unset ( $result [ $i ][ $type ]);
}
2009-07-24 22:17:14 +00:00
}
$expected = array (
'id' => array (
'type' => 'integer' ,
'null' => false ,
'default' => null ,
'length' => $intLength ,
'key' => 'primary'
),
'user' => array (
'type' => 'string' ,
2012-02-13 04:56:10 +00:00
'null' => true ,
2009-07-24 22:17:14 +00:00
'default' => '' ,
'length' => 255
),
'password' => array (
'type' => 'string' ,
2012-02-13 04:56:10 +00:00
'null' => true ,
2009-07-24 22:17:14 +00:00
'default' => '' ,
'length' => 255
),
'created' => array (
'type' => 'datetime' ,
'null' => true ,
'default' => null ,
'length' => null
),
2011-12-01 07:21:31 +00:00
'updated' => array (
2009-07-24 22:17:14 +00:00
'type' => 'datetime' ,
'null' => true ,
'default' => null ,
'length' => null
));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$TestModel = new Article ();
2009-07-24 22:17:14 +00:00
$result = $TestModel -> create ();
$expected = array ( 'Article' => array ( 'published' => 'N' ));
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2009-07-24 22:17:14 +00:00
2010-06-24 05:22:43 +00:00
$FeaturedModel = new Featured ();
2009-07-24 22:17:14 +00:00
$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 ,
2010-11-27 04:43:04 +00:00
'published_date' => '2008-06-11 00:00:00' ,
'end_date' => '2008-06-20 00:00:00'
2009-07-24 22:17:14 +00:00
));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $FeaturedModel -> create ( $data ));
2009-07-24 22:17:14 +00:00
$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 (
2010-11-27 04:43:04 +00:00
'published_date' => '2008-06-11 00:00:00' ,
'end_date' => '2008-06-20 00:00:00' ,
2009-07-24 22:17:14 +00:00
'article_featured_id' => 1 ,
'category_id' => 1
));
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( $expected , $FeaturedModel -> create ( $data ));
2009-07-24 22:17:14 +00:00
}
2010-03-17 15:02:36 +00:00
/**
* testEscapeField to prove it escapes the field well even when it has part of the alias on it
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testEscapeField () {
2010-06-24 05:22:43 +00:00
$TestModel = new Test ();
$db = $TestModel -> getDataSource ();
2010-03-17 15:02:36 +00:00
$result = $TestModel -> escapeField ( 'test_field' );
$expected = $db -> name ( 'Test.test_field' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2010-03-17 15:02:36 +00:00
$result = $TestModel -> escapeField ( 'TestField' );
$expected = $db -> name ( 'Test.TestField' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2010-03-17 15:02:36 +00:00
$result = $TestModel -> escapeField ( 'DomainHandle' , 'Domain' );
$expected = $db -> name ( 'Domain.DomainHandle' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2010-03-17 15:02:36 +00:00
2010-12-22 04:21:47 +00:00
ConnectionManager :: create ( 'mock' , array ( 'datasource' => 'DboMock' ));
2010-03-17 15:02:36 +00:00
$TestModel -> setDataSource ( 'mock' );
2010-06-24 05:22:43 +00:00
$db = $TestModel -> getDataSource ();
2010-03-17 15:02:36 +00:00
$result = $TestModel -> escapeField ( 'DomainHandle' , 'Domain' );
$expected = $db -> name ( 'Domain.DomainHandle' );
2011-11-16 00:07:56 +00:00
$this -> assertEquals ( $expected , $result );
2011-12-08 04:40:22 +00:00
ConnectionManager :: drop ( 'mock' );
2010-03-17 15:02:36 +00:00
}
2010-12-26 22:35:22 +00:00
2011-12-14 06:19:50 +00:00
/**
* testGetID
*
* @ return void
*/
public function testGetID () {
$TestModel = new Test ();
$result = $TestModel -> getID ();
$this -> assertFalse ( $result );
$TestModel -> id = 9 ;
$result = $TestModel -> getID ();
$this -> assertEquals ( 9 , $result );
$TestModel -> id = array ( 10 , 9 , 8 , 7 );
$result = $TestModel -> getID ( 2 );
$this -> assertEquals ( 8 , $result );
$TestModel -> id = array ( array (), 1 , 2 , 3 );
$result = $TestModel -> getID ();
$this -> assertFalse ( $result );
}
2010-12-26 22:35:22 +00:00
/**
* test that model -> hasMethod checks self and behaviors .
*
* @ return void
*/
2011-05-30 20:02:32 +00:00
public function testHasMethod () {
2010-12-26 22:35:22 +00:00
$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' ));
}
2011-10-27 11:37:46 +00:00
/**
* testMultischemaFixture
*
* @ return void
*/
public function testMultischemaFixture () {
2011-12-13 14:10:16 +00:00
$config = ConnectionManager :: enumConnectionObjects ();
2011-10-27 11:37:46 +00:00
$this -> skipIf ( $this -> db instanceof Sqlite , 'This test is not compatible with Sqlite.' );
2011-12-13 14:10:16 +00:00
$this -> skipIf ( ! isset ( $config [ 'test' ]) || ! isset ( $config [ 'test2' ]),
2012-12-22 22:48:15 +00:00
'Primary and secondary test databases not configured, skipping cross-database join tests. To run these tests define $test and $test2 in your database configuration.'
2011-10-27 11:37:46 +00:00
);
$this -> loadFixtures ( 'Player' , 'Guild' , 'GuildsPlayer' );
$Player = ClassRegistry :: init ( 'Player' );
2012-03-23 06:37:12 +00:00
$this -> assertEquals ( 'test' , $Player -> useDbConfig );
$this -> assertEquals ( 'test' , $Player -> Guild -> useDbConfig );
$this -> assertEquals ( 'test2' , $Player -> Guild -> GuildsPlayer -> useDbConfig );
$this -> assertEquals ( 'test2' , $Player -> GuildsPlayer -> useDbConfig );
2011-10-27 11:37:46 +00:00
$players = $Player -> find ( 'all' , array ( 'recursive' => - 1 ));
$guilds = $Player -> Guild -> find ( 'all' , array ( 'recursive' => - 1 ));
$guildsPlayers = $Player -> GuildsPlayer -> find ( 'all' , array ( 'recursive' => - 1 ));
2011-12-13 13:54:05 +00:00
$this -> assertEquals ( true , count ( $players ) > 1 );
$this -> assertEquals ( true , count ( $guilds ) > 1 );
$this -> assertEquals ( true , count ( $guildsPlayers ) > 1 );
2011-10-27 11:37:46 +00:00
}
/**
* testMultischemaFixtureWithThreeDatabases , three databases
*
* @ return void
*/
public function testMultischemaFixtureWithThreeDatabases () {
2011-12-13 14:10:16 +00:00
$config = ConnectionManager :: enumConnectionObjects ();
2011-10-27 11:37:46 +00:00
$this -> skipIf ( $this -> db instanceof Sqlite , 'This test is not compatible with Sqlite.' );
$this -> skipIf (
2011-12-13 14:10:16 +00:00
! isset ( $config [ 'test' ]) || ! isset ( $config [ 'test2' ]) || ! isset ( $config [ 'test_database_three' ]),
2012-12-22 22:48:15 +00:00
'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.'
2011-10-27 11:37:46 +00:00
);
$this -> loadFixtures ( 'Player' , 'Guild' , 'GuildsPlayer' , 'Armor' , 'ArmorsPlayer' );
$Player = ClassRegistry :: init ( 'Player' );
$Player -> bindModel ( array (
'hasAndBelongsToMany' => array (
'Armor' => array (
'with' => 'ArmorsPlayer' ,
),
),
), false );
2011-12-13 13:54:05 +00:00
$this -> assertEquals ( 'test' , $Player -> useDbConfig );
$this -> assertEquals ( 'test' , $Player -> Guild -> useDbConfig );
$this -> assertEquals ( 'test2' , $Player -> Guild -> GuildsPlayer -> useDbConfig );
$this -> assertEquals ( 'test2' , $Player -> GuildsPlayer -> useDbConfig );
$this -> assertEquals ( 'test2' , $Player -> Armor -> useDbConfig );
$this -> assertEquals ( 'test_database_three' , $Player -> Armor -> ArmorsPlayer -> useDbConfig );
$this -> assertEquals ( 'test' , $Player -> getDataSource () -> configKeyName );
$this -> assertEquals ( 'test' , $Player -> Guild -> getDataSource () -> configKeyName );
$this -> assertEquals ( 'test2' , $Player -> GuildsPlayer -> getDataSource () -> configKeyName );
$this -> assertEquals ( 'test2' , $Player -> Armor -> getDataSource () -> configKeyName );
$this -> assertEquals ( 'test_database_three' , $Player -> Armor -> ArmorsPlayer -> getDataSource () -> configKeyName );
2011-10-27 11:37:46 +00:00
$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 ));
2011-12-13 13:54:05 +00:00
$this -> assertEquals ( true , count ( $players ) > 1 );
$this -> assertEquals ( true , count ( $guilds ) > 1 );
$this -> assertEquals ( true , count ( $guildsPlayers ) > 1 );
$this -> assertEquals ( true , count ( $armorsPlayers ) > 1 );
2011-10-27 11:37:46 +00:00
}
2012-01-21 18:33:11 +00:00
/**
* Tests that calling schema () on a model that is not supposed to use a table
* does not trigger any calls on any datasource
*
* @ return void
2013-01-11 14:06:54 +00:00
*/
2012-01-21 18:33:11 +00:00
public function testSchemaNoDB () {
$model = $this -> getMock ( 'Article' , array ( 'getDataSource' ));
$model -> useTable = false ;
$model -> expects ( $this -> never ()) -> method ( 'getDataSource' );
$this -> assertEmpty ( $model -> schema ());
}
2015-01-21 22:04:29 +00:00
/**
* Tests that calling getColumnType () on a model that is not supposed to use a table
* does not trigger any calls on any datasource
*
* @ return void
*/
public function testGetColumnTypeNoDB () {
$model = $this -> getMock ( 'Example' , array ( 'getDataSource' ));
$model -> expects ( $this -> never ()) -> method ( 'getDataSource' );
$result = $model -> getColumnType ( 'filefield' );
$this -> assertEquals ( 'string' , $result );
}
2009-07-24 22:17:14 +00:00
}