2007-02-03 22:20:13 +00:00
< ? php
/* SVN FILE: $Id$ */
/**
* Short description for file .
*
* Long description for file
*
* PHP versions 4 and 5
*
* CakePHP ( tm ) Tests < https :// trac . cakephp . org / wiki / Developement / TestSuite >
2008-01-01 22:18:17 +00:00
* Copyright 2005 - 2008 , Cake Software Foundation , Inc .
2007-02-03 22:20:13 +00:00
* 1785 E . Sahara Avenue , Suite 490 - 204
* Las Vegas , Nevada 89104
*
* Licensed under The Open Group Test Suite License
* Redistributions of files must retain the above copyright notice .
*
* @ filesource
2008-01-01 22:18:17 +00:00
* @ copyright Copyright 2005 - 2008 , Cake Software Foundation , Inc .
2007-02-03 22:20:13 +00:00
* @ link https :// trac . cakephp . org / wiki / Developement / TestSuite CakePHP ( tm ) Tests
* @ package cake . tests
* @ subpackage cake . tests . cases . libs . model
* @ since CakePHP ( tm ) v 1.2 . 0.4206
* @ version $Revision $
* @ modifiedby $LastChangedBy $
* @ lastmodified $Date $
* @ license http :// www . opensource . org / licenses / opengroup . php The Open Group Test Suite License
*/
2007-08-17 19:03:49 +00:00
2008-02-21 15:36:13 +00:00
App :: import ( 'Core' , array ( 'AppModel' , 'Model' ));
require_once dirname ( __FILE__ ) . DS . 'models.php' ;
2007-11-26 18:00:06 +00:00
2007-02-03 22:20:13 +00:00
/**
* Short description for class .
*
* @ package cake . tests
* @ subpackage cake . tests . cases . libs . model
*/
2007-03-23 21:59:08 +00:00
class ModelTest extends CakeTestCase {
2007-10-27 20:33:52 +00:00
2008-01-11 03:16:19 +00:00
var $autoFixtures = false ;
2008-01-03 18:50:59 +00:00
2008-01-11 03:16:19 +00:00
var $fixtures = array (
2007-08-14 23:12:24 +00:00
'core.category' , 'core.category_thread' , 'core.user' , 'core.article' , 'core.featured' , 'core.article_featureds_tags' ,
2007-08-21 21:46:59 +00:00
'core.article_featured' , 'core.articles' , 'core.tag' , 'core.articles_tag' , 'core.comment' , 'core.attachment' ,
2007-08-17 19:03:49 +00:00
'core.apple' , 'core.sample' , 'core.another_article' , 'core.advertisement' , 'core.home' , 'core.post' , 'core.author' ,
2008-02-21 15:36:13 +00:00
'core.project' , 'core.thread' , 'core.message' , 'core.bid' , 'core.portfolio' , 'core.item' , 'core.items_portfolio' ,
'core.syfile' , 'core.image' , 'core.device_type' , 'core.device_type_category' , 'core.feature_set' , 'core.exterior_type_category' ,
'core.document' , 'core.device' , 'core.document_directory' , 'core.primary_model' , 'core.secondary_model' , 'core.something' ,
2008-02-26 06:20:16 +00:00
'core.something_else' , 'core.join_thing' , 'core.join_a' , 'core.join_b' , 'core.join_c' , 'core.join_a_b' , 'core.join_a_c' ,
2008-03-13 03:11:29 +00:00
'core.uuid' , 'core.data_test' , 'core.posts_tag'
2008-01-11 03:16:19 +00:00
);
2007-03-30 00:08:10 +00:00
2007-03-27 02:22:35 +00:00
function start () {
parent :: start ();
2007-08-16 05:44:06 +00:00
$this -> debug = Configure :: read ( 'debug' );
2007-03-27 02:22:35 +00:00
Configure :: write ( 'debug' , 2 );
}
2007-03-30 00:08:10 +00:00
2007-03-27 02:22:35 +00:00
function end () {
parent :: end ();
2007-08-16 05:44:06 +00:00
Configure :: write ( 'debug' , $this -> debug );
2007-03-27 02:22:35 +00:00
}
2007-03-30 00:08:10 +00:00
2008-02-03 06:40:15 +00:00
function testAutoConstructAssociations () {
$this -> loadFixtures ( 'User' );
$this -> model =& new AssociationTest1 ();
$result = $this -> model -> hasAndBelongsToMany ;
$expected = array ( 'AssociationTest2' => array (
'unique' => false , 'joinTable' => 'join_as_join_bs' , 'foreignKey' => false ,
'className' => 'AssociationTest2' , 'with' => 'JoinAsJoinB' ,
'associationForeignKey' => 'join_b_id' , 'conditions' => '' , 'fields' => '' ,
'order' => '' , 'limit' => '' , 'offset' => '' , 'finderQuery' => '' ,
'deleteQuery' => '' , 'insertQuery' => ''
));
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testMultipleBelongsToWithSameClass () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'DeviceType' , 'DeviceTypeCategory' , 'FeatureSet' , 'ExteriorTypeCategory' , 'Document' , 'Device' , 'DocumentDirectory' );
2007-10-22 20:20:48 +00:00
$this -> DeviceType =& new DeviceType ();
$this -> DeviceType -> recursive = 2 ;
$result = $this -> DeviceType -> read ( null , 1 );
2008-03-11 02:44:33 +00:00
2007-10-22 20:20:48 +00:00
$expected = array (
'DeviceType' => array (
'id' => 1 , 'device_type_category_id' => 1 , 'feature_set_id' => 1 , 'exterior_type_category_id' => 1 , 'image_id' => 1 ,
'extra1_id' => 1 , 'extra2_id' => 1 , 'name' => 'DeviceType 1' , 'order' => 0
),
2007-10-22 22:58:38 +00:00
'Image' => array ( 'id' => 1 , 'document_directory_id' => 1 , 'name' => 'Document 1' ,
'DocumentDirectory' => array ( 'id' => 1 , 'name' => 'DocumentDirectory 1' )),
2007-10-22 20:20:48 +00:00
'Extra1' => array (
'id' => 1 , 'document_directory_id' => 1 , 'name' => 'Document 1' ,
'DocumentDirectory' => array ( 'id' => 1 , 'name' => 'DocumentDirectory 1' )
),
'Extra2' => array (
'id' => 1 , 'document_directory_id' => 1 , 'name' => 'Document 1' ,
'DocumentDirectory' => array ( 'id' => 1 , 'name' => 'DocumentDirectory 1' )
),
'DeviceTypeCategory' => array ( 'id' => 1 , 'name' => 'DeviceTypeCategory 1' ),
'FeatureSet' => array ( 'id' => 1 , 'name' => 'FeatureSet 1' ),
'ExteriorTypeCategory' => array (
'id' => 1 , 'image_id' => 1 , 'name' => 'ExteriorTypeCategory 1' ,
'Image' => array ( 'id' => 1 , 'device_type_id' => 1 , 'name' => 'Device 1' , 'typ' => 1 )
),
'Device' => array (
array ( 'id' => 1 , 'device_type_id' => 1 , 'name' => 'Device 1' , 'typ' => 1 ),
array ( 'id' => 2 , 'device_type_id' => 1 , 'name' => 'Device 2' , 'typ' => 1 ),
array ( 'id' => 3 , 'device_type_id' => 1 , 'name' => 'Device 3' , 'typ' => 2 )
)
);
$this -> assertEqual ( $result , $expected );
unset ( $this -> DeviceType );
}
2007-10-24 16:07:36 +00:00
function testHabtmRecursiveBelongsTo () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Portfolio' , 'Item' , 'ItemsPortfolio' , 'Syfile' , 'Image' );
2007-09-11 21:00:58 +00:00
$this -> Portfolio =& new Portfolio ();
$result = $this -> Portfolio -> find ( array ( 'id' => 2 ), null , null , 3 );
2007-10-22 02:11:58 +00:00
$expected = array ( 'Portfolio' => array (
2008-02-02 04:50:44 +00:00
'id' => 2 , 'seller_id' => 1 , 'name' => 'Portfolio 2' ),
'Item' => array (
array ( 'id' => 2 , 'syfile_id' => 2 , 'published' => 0 , 'name' => 'Item 2' ,
'ItemsPortfolio' => array ( 'id' => 2 , 'item_id' => 2 , 'portfolio_id' => 2 ),
'Syfile' => array ( 'id' => 2 , 'image_id' => 2 , 'name' => 'Syfile 2' , 'item_count' => null ,
'Image' => array ( 'id' => 2 , 'name' => 'Image 2' ))),
array ( 'id' => 6 , 'syfile_id' => 6 , 'published' => 0 , 'name' => 'Item 6' ,
'ItemsPortfolio' => array ( 'id' => 6 , 'item_id' => 6 , 'portfolio_id' => 2 ),
'Syfile' => array ( 'id' => 6 , 'image_id' => null , 'name' => 'Syfile 6' , 'item_count' => null ,
'Image' => array ()))));
2007-09-11 21:00:58 +00:00
$this -> assertEqual ( $result , $expected );
unset ( $this -> Portfolio );
}
2008-03-08 20:08:15 +00:00
function testHabtmFinderQuery () {
$this -> loadFixtures ( 'Article' , 'Tag' , 'ArticlesTag' );
$this -> Article =& new Article ();
2008-03-11 05:22:17 +00:00
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
$sql = $db -> buildStatement (
array (
'fields' => $db -> fields ( $this -> Article -> Tag , null , array ( 'Tag.id' , 'Tag.tag' , 'ArticlesTag.article_id' , 'ArticlesTag.tag_id' )),
'table' => 'tags' ,
'alias' => 'Tag' ,
'limit' => null ,
'offset' => null ,
'joins' => array ( array (
'alias' => 'ArticlesTag' ,
'table' => 'articles_tags' ,
'conditions' => array (
array ( " ArticlesTag.article_id " => '{$__cakeID__$}' ),
array ( " ArticlesTag.tag_id " => '{$__cakeIdentifier[Tag.id]__$}' )
)
)),
'conditions' => array (),
'order' => null
),
$this -> Article
);
$this -> Article -> hasAndBelongsToMany [ 'Tag' ][ 'finderQuery' ] = $sql ;
2008-03-08 20:08:15 +00:00
$result = $this -> Article -> find ( 'first' );
$expected = array ( array ( 'id' => '1' , 'tag' => 'tag1' ), array ( 'id' => '2' , 'tag' => 'tag2' ));
$this -> assertEqual ( $result [ 'Tag' ], $expected );
}
2008-03-11 02:44:33 +00:00
function testHabtmLimitOptimization () {
$this -> loadFixtures ( 'Article' , 'User' , 'Comment' , 'Tag' , 'ArticlesTag' );
$this -> model =& new Article ();
$this -> model -> hasAndBelongsToMany [ 'Tag' ][ 'limit' ] = 1 ;
$result = $this -> model -> read ( null , 2 );
$expected = 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' )
)
);
//$this->assertEqual($result, $expected);
}
function testHasManyLimitOptimization () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Project' , 'Thread' , 'Message' , 'Bid' );
2007-08-17 19:03:49 +00:00
$this -> Project =& new Project ();
$this -> Project -> recursive = 3 ;
2007-10-22 02:11:58 +00:00
2008-03-11 02:44:33 +00:00
$result = $this -> Project -> find ( 'all' );
2008-03-01 03:12:12 +00:00
$expected = array (
array ( 'Project' => array ( 'id' => 1 , 'name' => 'Project 1' ),
'Thread' => array ( array ( 'id' => 1 , 'project_id' => 1 , 'name' => 'Project 1, Thread 1' ,
'Message' => array ( array ( 'id' => 1 , 'thread_id' => 1 , 'name' => 'Thread 1, Message 1' ,
'Bid' => array ( 'id' => 1 , 'message_id' => 1 , 'name' => 'Bid 1.1' )))),
array ( 'id' => 2 , 'project_id' => 1 , 'name' => 'Project 1, Thread 2' ,
'Message' => array ( array ( 'id' => 2 , 'thread_id' => 2 , 'name' => 'Thread 2, Message 1' ,
'Bid' => array ( 'id' => 4 , 'message_id' => 2 , 'name' => 'Bid 2.1' )))))),
array ( 'Project' => array ( 'id' => 2 , 'name' => 'Project 2' ),
'Thread' => array ( array ( 'id' => 3 , 'project_id' => 2 , 'name' => 'Project 2, Thread 1' ,
'Message' => array ( array ( 'id' => 3 , 'thread_id' => 3 , 'name' => 'Thread 3, Message 1' ,
'Bid' => array ( 'id' => 3 , 'message_id' => 3 , 'name' => 'Bid 3.1' )))))),
array ( 'Project' => array ( 'id' => 3 , 'name' => 'Project 3' ),
'Thread' => array ()));
2007-08-17 19:03:49 +00:00
$this -> assertEqual ( $result , $expected );
unset ( $this -> Project );
}
2007-12-25 05:35:37 +00:00
2007-12-23 17:03:19 +00:00
function testWithAssociation () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Something' , 'SomethingElse' , 'JoinThing' );
2007-12-23 17:03:19 +00:00
$this -> model =& new Something ();
$result = $this -> model -> 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' => '1' , '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' => '1' , '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' => '0' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' )))));
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> 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' => '1' , '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' => '0' , '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' => '1' , 'something_id' => '3' , 'something_else_id' => '1' )))));
$this -> assertEqual ( $result , $expected );
2008-01-01 23:57:17 +00:00
$result = $this -> model -> 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' => '1' , 'something_id' => '1' , 'something_else_id' => '2' ))));
$this -> assertEqual ( $result , $expected );
$this -> model -> hasAndBelongsToMany [ 'SomethingElse' ][ 'unique' ] = false ;
$this -> model -> create ( array (
'Something' => array ( 'id' => 1 ),
'SomethingElse' => array ( 3 , array ( 'something_else_id' => 1 , 'doomed' => '1' ))
));
$ts = date ( 'Y-m-d H:i:s' );
$this -> model -> save ();
2008-01-17 17:09:10 +00:00
$this -> model -> hasAndBelongsToMany [ 'SomethingElse' ][ 'order' ] = 'SomethingElse.id ASC' ;
2008-01-01 23:57:17 +00:00
$result = $this -> model -> findById ( 1 );
$expected = array (
'Something' => array ( 'id' => '1' , 'title' => 'First Post' , 'body' => 'First Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => $ts ),
'SomethingElse' => array (
array ( 'id' => '1' , 'title' => 'First Post' , 'body' => 'First Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ,
'JoinThing' => array ( 'doomed' => '1' , 'something_id' => '1' , 'something_else_id' => '1' )),
2008-01-17 17:09:10 +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' => '1' , 'something_id' => '1' , 'something_else_id' => '2' )),
2008-01-01 23:57:17 +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' => null , 'something_id' => '1' , 'something_else_id' => '3' ))));
$this -> assertEqual ( $result , $expected );
2007-12-23 17:03:19 +00:00
}
2007-12-25 05:35:37 +00:00
2008-03-07 04:36:20 +00:00
function testDynamicAssociations () {
$this -> loadFixtures ( 'Article' , 'Comment' );
$this -> model =& new Article ();
$this -> model -> belongsTo = $this -> model -> hasAndBelongsToMany = $this -> model -> hasOne = array ();
2008-03-12 21:19:31 +00:00
$this -> model -> hasMany [ 'Comment' ] = array_merge ( $this -> model -> hasMany [ 'Comment' ], array (
2008-03-07 04:36:20 +00:00
'foreignKey' => false ,
'conditions' => array ( 'Comment.user_id' => '= 2' )
));
$result = $this -> model -> find ( 'all' );
$expected = array (
array (
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
'Comment' => array (
array ( 'id' => '1' , 'article_id' => '1' , 'user_id' => '2' , 'comment' => 'First Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:45:23' , 'updated' => '2007-03-18 10:47:31' ),
array ( 'id' => '6' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:55:23' , 'updated' => '2007-03-18 10:57:31' )
)
),
array (
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'Second Article' , 'body' => 'Second Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ),
'Comment' => array (
array ( 'id' => '1' , 'article_id' => '1' , 'user_id' => '2' , 'comment' => 'First Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:45:23' , 'updated' => '2007-03-18 10:47:31' ),
array ( 'id' => '6' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:55:23' , 'updated' => '2007-03-18 10:57:31' )
)
),
array (
'Article' => array ( 'id' => '3' , 'user_id' => '1' , 'title' => 'Third Article' , 'body' => 'Third Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' ),
'Comment' => array (
array ( 'id' => '1' , 'article_id' => '1' , 'user_id' => '2' , 'comment' => 'First Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:45:23' , 'updated' => '2007-03-18 10:47:31' ),
array ( 'id' => '6' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:55:23' , 'updated' => '2007-03-18 10:57:31' )
)
)
);
$this -> assertEqual ( $result , $expected );
}
2008-01-03 18:50:59 +00:00
function testSaveMultipleHabtm () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'JoinA' , 'JoinB' , 'JoinC' , 'JoinAB' , 'JoinAC' );
2008-01-03 18:50:59 +00:00
$this -> model = new JoinA ();
$result = $this -> model -> findById ( 1 );
2008-01-11 06:45:00 +00:00
2008-01-03 18:50:59 +00:00
$expected = array (
'JoinA' => array ( 'id' => 1 , 'name' => 'Join A 1' , 'body' => 'Join A 1 Body' , 'created' => '2008-01-03 10:54:23' , 'updated' => '2008-01-03 10:54:23' ),
'JoinB' => array (
2008-01-11 03:16:19 +00:00
0 => array ( 'id' => 2 , 'name' => 'Join B 2' , 'created' => '2008-01-03 10:55:02' , 'updated' => '2008-01-03 10:55:02' ,
2008-01-03 18:50:59 +00:00
'JoinAsJoinB' => array ( 'id' => 1 , 'join_a_id' => 1 , 'join_b_id' => 2 , 'other' => 'Data for Join A 1 Join B 2' , 'created' => '2008-01-03 10:56:33' , 'updated' => '2008-01-03 10:56:33' ))),
'JoinC' => array (
0 => array ( 'id' => 2 , 'name' => 'Join C 2' , 'created' => '2008-01-03 10:56:12' , 'updated' => '2008-01-03 10:56:12' ,
'JoinAsJoinC' => array ( 'id' => 1 , 'join_a_id' => 1 , 'join_c_id' => 2 , 'other' => 'Data for Join A 1 Join C 2' , 'created' => '2008-01-03 10:57:22' , 'updated' => '2008-01-03 10:57:22' ))));
$this -> assertEqual ( $result , $expected );
$this -> model -> id = 1 ;
$data = array (
'JoinA' => array ( 'id' => '1' , 'name' => 'New name for Join A 1' ),
'JoinB' => array ( array ( 'id' => 1 , 'join_b_id' => 2 , 'other' => 'New data for Join A 1 Join B 2' )),
'JoinC' => array ( array ( 'id' => 1 , 'join_c_id' => 2 , 'other' => 'New data for Join A 1 Join C 2' )));
$this -> model -> set ( $data );
$this -> model -> save ();
$ts = date ( 'Y-m-d H:i:s' );
$result = $this -> model -> findById ( 1 );
$expected = array (
'JoinA' => array ( 'id' => 1 , 'name' => 'New name for Join A 1' , 'body' => 'Join A 1 Body' , 'created' => '2008-01-03 10:54:23' , 'updated' => $ts ),
'JoinB' => array (
2008-01-11 03:16:19 +00:00
0 => array ( 'id' => 2 , 'name' => 'Join B 2' , 'created' => '2008-01-03 10:55:02' , 'updated' => '2008-01-03 10:55:02' ,
2008-01-03 18:50:59 +00:00
'JoinAsJoinB' => array ( 'id' => 1 , 'join_a_id' => 1 , 'join_b_id' => 2 , 'other' => 'New data for Join A 1 Join B 2' , 'created' => $ts , 'updated' => $ts ))),
'JoinC' => array (
0 => array ( 'id' => 2 , 'name' => 'Join C 2' , 'created' => '2008-01-03 10:56:12' , 'updated' => '2008-01-03 10:56:12' ,
'JoinAsJoinC' => array ( 'id' => 1 , 'join_a_id' => 1 , 'join_c_id' => 2 , 'other' => 'New data for Join A 1 Join C 2' , 'created' => $ts , 'updated' => $ts ))));
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testFindAllRecursiveSelfJoin () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Home' , 'AnotherArticle' , 'Advertisement' );
2007-04-29 02:25:57 +00:00
$this -> model =& new Home ();
$this -> model -> recursive = 2 ;
2007-10-22 02:11:58 +00:00
$result = $this -> model -> findAll ();
$expected = array ( array ( 'Home' => array (
'id' => '1' , 'another_article_id' => '1' , 'advertisement_id' => '1' , 'title' => 'First Home' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
'AnotherArticle' => array ( 'id' => '1' , 'title' => 'First Article' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ,
'Home' => array ( array ( 'id' => '1' , 'another_article_id' => '1' , 'advertisement_id' => '1' , 'title' => 'First Home' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ))),
'Advertisement' => array ( 'id' => '1' , 'title' => 'First Ad' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ,
'Home' => array ( array ( 'id' => '1' , 'another_article_id' => '1' , 'advertisement_id' => '1' , 'title' => 'First Home' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
array ( 'id' => '2' , 'another_article_id' => '3' , 'advertisement_id' => '1' , 'title' => 'Second Home' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' )))),
array ( 'Home' => array (
'id' => '2' , 'another_article_id' => '3' , 'advertisement_id' => '1' , 'title' => 'Second Home' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ),
'AnotherArticle' => array ( 'id' => '3' , 'title' => 'Third Article' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' ,
'Home' => array ( array ( 'id' => '2' , 'another_article_id' => '3' , 'advertisement_id' => '1' , 'title' => 'Second Home' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ))),
'Advertisement' => array ( 'id' => '1' , 'title' => 'First Ad' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ,
'Home' => array ( array ( 'id' => '1' , 'another_article_id' => '1' , 'advertisement_id' => '1' , 'title' => 'First Home' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
array ( 'id' => '2' , 'another_article_id' => '3' , 'advertisement_id' => '1' , 'title' => 'Second Home' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' )))));
2007-04-29 02:25:57 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testIdentity () {
2007-03-17 19:15:41 +00:00
$this -> model =& new Test ();
2007-10-27 01:32:17 +00:00
$result = $this -> model -> alias ;
2007-02-03 22:20:13 +00:00
$expected = 'Test' ;
2007-02-04 09:06:44 +00:00
$this -> assertEqual ( $result , $expected );
2007-02-03 22:20:13 +00:00
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testCreation () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-03-17 19:15:41 +00:00
$this -> model =& new Test ();
$result = $this -> model -> create ();
2007-03-17 00:24:33 +00:00
$expected = array ( 'Test' => array ( 'notes' => 'write some notes here' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
$this -> model =& new User ();
2007-10-28 04:18:18 +00:00
$result = $this -> model -> schema ();
2007-06-03 21:54:11 +00:00
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
if ( isset ( $db -> columns [ 'primary_key' ][ 'length' ])) {
$intLength = $db -> columns [ 'primary_key' ][ 'length' ];
} elseif ( isset ( $db -> columns [ 'integer' ][ 'length' ])) {
$intLength = $db -> columns [ 'integer' ][ 'length' ];
} else {
$intLength = 11 ;
}
2007-08-14 23:12:24 +00:00
$expected = array (
2008-01-11 03:16:19 +00:00
'id' => array ( 'type' => 'integer' , 'null' => false , 'default' => null , 'length' => $intLength , 'key' => 'primary' ),
2007-10-28 04:18:18 +00:00
'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 ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model =& new Article ();
$result = $this -> model -> create ();
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array ( 'published' => 'N' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-17 00:24:33 +00:00
}
2007-10-24 16:06:00 +00:00
2007-12-19 02:05:15 +00:00
function testCreationOfEmptyRecord () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Author' );
2007-12-19 02:05:15 +00:00
$this -> model =& new Author ();
$this -> assertEqual ( $this -> model -> find ( 'count' ), 4 );
$this -> model -> deleteAll ( true , false , false );
$this -> assertEqual ( $this -> model -> find ( 'count' ), 0 );
$result = $this -> model -> save ();
$this -> assertTrue ( isset ( $result [ 'Author' ][ 'created' ]));
$this -> assertTrue ( isset ( $result [ 'Author' ][ 'updated' ]));
$this -> assertEqual ( $this -> model -> find ( 'count' ), 1 );
}
2008-02-06 02:35:12 +00:00
function testCreateWithPKFiltering () {
$this -> model =& new Article ();
$data = array ( 'id' => 5 , 'user_id' => 2 , 'title' => 'My article' , 'body' => 'Some text' );
$result = $this -> model -> create ( $data );
$expected = array ( 'Article' => array ( 'published' => 'N' , 'id' => 5 , 'user_id' => 2 , 'title' => 'My article' , 'body' => 'Some text' ));
$this -> assertEqual ( $result , $expected );
$this -> assertEqual ( $this -> model -> id , 5 );
$result = $this -> model -> create ( $data , true );
$expected = array ( 'Article' => array ( 'published' => 'N' , 'id' => false , 'user_id' => 2 , 'title' => 'My article' , 'body' => 'Some text' ));
$this -> assertEqual ( $result , $expected );
$this -> assertFalse ( $this -> model -> id );
$result = $this -> model -> create ( array ( 'Article' => $data ), true );
$expected = array ( 'Article' => array ( 'published' => 'N' , 'id' => false , 'user_id' => 2 , 'title' => 'My article' , 'body' => 'Some text' ));
$this -> assertEqual ( $result , $expected );
$this -> assertFalse ( $this -> model -> id );
}
2007-10-24 16:07:36 +00:00
function testCreationWithMultipleData () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'Comment' );
2007-10-24 03:32:34 +00:00
$this -> Article =& new Article ();
$this -> Comment =& new Comment ();
2007-10-24 16:06:00 +00:00
2007-10-24 03:32:34 +00:00
$articles = $this -> Article -> find ( 'all' , array ( 'fields' => array ( 'id' , 'title' ), 'recursive' => - 1 ));
$comments = $this -> Comment -> find ( 'all' , array ( 'fields' => array ( 'id' , 'article_id' , 'user_id' , 'comment' , 'published' ), 'recursive' => - 1 ));
$this -> assertEqual ( $articles , array (
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
array ( 'Article' => array ( 'id' => 2 , 'title' => 'Second Article' )),
array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' ))));
$this -> assertEqual ( $comments , array (
array ( 'Comment' => array ( 'id' => 1 , 'article_id' => 1 , 'user_id' => 2 , 'comment' => 'First Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 2 , 'article_id' => 1 , 'user_id' => 4 , 'comment' => 'Second Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 3 , 'article_id' => 1 , 'user_id' => 1 , 'comment' => 'Third Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 4 , 'article_id' => 1 , 'user_id' => 1 , 'comment' => 'Fourth Comment for First Article' , 'published' => 'N' )),
array ( 'Comment' => array ( 'id' => 5 , 'article_id' => 2 , 'user_id' => 1 , 'comment' => 'First Comment for Second Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 6 , 'article_id' => 2 , 'user_id' => 2 , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' ))));
2007-10-24 16:06:00 +00:00
2007-10-24 03:32:34 +00:00
$data = array ( 'Comment' => array ( 'article_id' => 2 , 'user_id' => 4 , 'comment' => 'Brand New Comment' , 'published' => 'N' ),
'Article' => array ( 'id' => 2 , 'title' => 'Second Article Modified' ));
$result = $this -> Comment -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> Comment -> save ();
$this -> assertTrue ( $result );
2007-10-24 16:06:00 +00:00
2007-10-24 03:32:34 +00:00
$articles = $this -> Article -> find ( 'all' , array ( 'fields' => array ( 'id' , 'title' ), 'recursive' => - 1 ));
$comments = $this -> Comment -> find ( 'all' , array ( 'fields' => array ( 'id' , 'article_id' , 'user_id' , 'comment' , 'published' ), 'recursive' => - 1 ));
$this -> assertEqual ( $articles , array (
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
array ( 'Article' => array ( 'id' => 2 , 'title' => 'Second Article' )),
array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' ))));
$this -> assertEqual ( $comments , array (
array ( 'Comment' => array ( 'id' => 1 , 'article_id' => 1 , 'user_id' => 2 , 'comment' => 'First Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 2 , 'article_id' => 1 , 'user_id' => 4 , 'comment' => 'Second Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 3 , 'article_id' => 1 , 'user_id' => 1 , 'comment' => 'Third Comment for First Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 4 , 'article_id' => 1 , 'user_id' => 1 , 'comment' => 'Fourth Comment for First Article' , 'published' => 'N' )),
array ( 'Comment' => array ( 'id' => 5 , 'article_id' => 2 , 'user_id' => 1 , 'comment' => 'First Comment for Second Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 6 , 'article_id' => 2 , 'user_id' => 2 , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' )),
array ( 'Comment' => array ( 'id' => 7 , 'article_id' => 2 , 'user_id' => 4 , 'comment' => 'Brand New Comment' , 'published' => 'N' ))));
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:06:00 +00:00
function testCreationWithMultipleDataSameModel () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-10-24 16:10:20 +00:00
$this -> Article =& new Article ();
$this -> SecondaryArticle =& new Article ();
2007-10-24 16:06:00 +00:00
2007-10-24 16:10:20 +00:00
$result = $this -> Article -> field ( 'title' , array ( 'id' => 1 ));
2007-10-24 16:06:00 +00:00
$this -> assertEqual ( $result , 'First Article' );
2007-10-24 16:17:53 +00:00
$data = array ( 'Article' => array ( 'user_id' => 2 , 'title' => 'Brand New Article' , 'body' => 'Brand New Article Body' , 'published' => 'Y' ),
'SecondaryArticle' => array ( 'id' => 1 ));
2007-10-24 16:10:20 +00:00
$this -> Article -> create ();
$result = $this -> Article -> save ( $data );
2007-10-24 16:06:00 +00:00
$this -> assertTrue ( $result );
2007-10-24 16:10:20 +00:00
$result = $this -> Article -> getInsertID ();
2007-10-24 16:06:00 +00:00
$this -> assertTrue ( ! empty ( $result ));
2007-10-24 16:10:20 +00:00
$result = $this -> Article -> field ( 'title' , array ( 'id' => 1 ));
2007-10-24 16:06:00 +00:00
$this -> assertEqual ( $result , 'First Article' );
2007-10-24 16:10:20 +00:00
$articles = $this -> Article -> find ( 'all' , array ( 'fields' => array ( 'id' , 'title' ), 'recursive' => - 1 ));
2007-10-24 16:06:00 +00:00
$this -> assertEqual ( $articles , array (
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
array ( 'Article' => array ( 'id' => 2 , 'title' => 'Second Article' )),
array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' )),
array ( 'Article' => array ( 'id' => 4 , 'title' => 'Brand New Article' ))));
}
2007-10-24 16:29:50 +00:00
function testCreationWithMultipleDataSameModelManualInstances () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'PrimaryModel' );
2007-10-24 16:29:50 +00:00
$Primary =& new PrimaryModel ();
$Secondary =& new PrimaryModel ();
$result = $Primary -> field ( 'primary_name' , array ( 'id' => 1 ));
$this -> assertEqual ( $result , 'Primary Name Existing' );
$data = array ( 'PrimaryModel' => array ( 'primary_name' => 'Primary Name New' ),
2007-10-24 22:08:19 +00:00
'SecondaryModel' => array ( 'id' => array ( 1 )));
2007-10-24 16:29:50 +00:00
$Primary -> create ();
$result = $Primary -> save ( $data );
$this -> assertTrue ( $result );
$result = $Primary -> field ( 'primary_name' , array ( 'id' => 1 ));
$this -> assertEqual ( $result , 'Primary Name Existing' );
$result = $Primary -> getInsertID ();
$this -> assertTrue ( ! empty ( $result ));
2007-10-24 17:04:14 +00:00
$result = $Primary -> field ( 'primary_name' , array ( 'id' => $result ));
$this -> assertEqual ( $result , 'Primary Name New' );
2007-10-24 16:29:50 +00:00
$result = $Primary -> findCount ();
$this -> assertEqual ( $result , 2 );
}
2007-10-24 16:07:36 +00:00
function testReadFakeThread () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'CategoryThread' );
2007-03-29 02:16:00 +00:00
$this -> model =& new CategoryThread ();
2007-03-30 00:08:10 +00:00
$this -> db -> fullDebug = true ;
$this -> model -> recursive = 6 ;
$this -> model -> id = 7 ;
$result = $this -> model -> read ();
2007-10-22 02:11:58 +00:00
$expected = array (
'CategoryThread' => array ( 'id' => 7 , 'parent_id' => 6 , 'name' => 'Category 2.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 6 , 'parent_id' => 5 , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 5 , 'parent_id' => 4 , 'name' => 'Category 1.1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )))))));
2007-03-30 00:08:10 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-29 02:16:00 +00:00
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testFindFakeThread () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'CategoryThread' );
2007-04-29 02:25:57 +00:00
$this -> model =& new CategoryThread ();
$this -> db -> fullDebug = true ;
$this -> model -> recursive = 6 ;
$result = $this -> model -> find ( array ( 'CategoryThread.id' => 7 ));
2007-10-22 02:11:58 +00:00
$expected = array (
'CategoryThread' => array ( 'id' => 7 , 'parent_id' => 6 , 'name' => 'Category 2.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 6 , 'parent_id' => 5 , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 5 , 'parent_id' => 4 , 'name' => 'Category 1.1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )))))));
2007-04-29 02:25:57 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testFindAllFakeThread () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'CategoryThread' );
2007-04-29 02:25:57 +00:00
$this -> model =& new CategoryThread ();
$this -> db -> fullDebug = true ;
$this -> model -> recursive = 6 ;
2007-06-03 21:54:11 +00:00
$result = $this -> model -> findAll ( null , null , 'CategoryThread.id ASC' );
2007-04-29 02:25:57 +00:00
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'CategoryThread' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => null , 'parent_id' => null , 'name' => null , 'created' => null , 'updated' => null )),
array ( 'CategoryThread' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )),
array ( 'CategoryThread' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ))),
array ( 'CategoryThread' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )))),
array ( 'CategoryThread' => array ( 'id' => 5 , 'parent_id' => 4 , 'name' => 'Category 1.1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ))))),
array ( 'CategoryThread' => array ( 'id' => 6 , 'parent_id' => 5 , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 5 , 'parent_id' => 4 , 'name' => 'Category 1.1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )))))),
array ( 'CategoryThread' => array ( 'id' => 7 , 'parent_id' => 6 , 'name' => 'Category 2.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'ParentCategory' => array ( 'id' => 6 , 'parent_id' => 5 , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 5 , 'parent_id' => 4 , 'name' => 'Category 1.1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 4 , 'parent_id' => 3 , 'name' => 'Category 1.1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 3 , 'parent_id' => 2 , 'name' => 'Category 1.1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ,
'ParentCategory' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ))))))));
2007-04-29 02:25:57 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testFindAll () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ();
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' )),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( 'User.id > 2' );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' )),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( array ( 'User.id' => '!= 0' , 'User.user' => 'LIKE %arr%' ));
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' )),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( array ( 'User.id' => '0' ));
$expected = array ();
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> findAll ( array ( 'or' => array ( 'User.id' => '0' , 'User.user' => 'LIKE %a%' )));
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' )),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' )),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> findAll ( null , 'User.user' , 'User.user ASC' );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'user' => 'garrett' )),
array ( 'User' => array ( 'user' => 'larry' )),
array ( 'User' => array ( 'user' => 'mariano' )),
array ( 'User' => array ( 'user' => 'nate' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.user' , 'User.user ASC' );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'user' => 'garrett' )),
array ( 'User' => array ( 'user' => 'larry' )),
array ( 'User' => array ( 'user' => 'mariano' )),
array ( 'User' => array ( 'user' => 'nate' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.user' , 'User.user DESC' );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'user' => 'nate' )),
array ( 'User' => array ( 'user' => 'mariano' )),
array ( 'User' => array ( 'user' => 'larry' )),
array ( 'User' => array ( 'user' => 'garrett' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , null , null , 3 , 1 );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , null , null , 3 , 2 );
$expected = array (
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , null , null , 3 , 3 );
$expected = array ();
$this -> assertEqual ( $result , $expected );
}
2007-03-26 18:38:54 +00:00
2007-10-24 16:07:36 +00:00
function testGenerateList () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'Apple' , 'Post' , 'Author' , 'User' );
2007-07-01 03:43:05 +00:00
$this -> model =& new Article ();
$this -> model -> displayField = 'title' ;
2008-01-01 19:34:40 +00:00
$result = $this -> model -> find ( 'list' , array ( 'order' => 'Article.title ASC' ));
2007-10-22 02:11:58 +00:00
$expected = array ( 1 => 'First Article' , 2 => 'Second Article' , 3 => 'Third Article' );
2007-07-01 03:43:05 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 19:34:40 +00:00
$result = Set :: combine ( $this -> model -> find ( 'all' , array ( 'order' => 'Article.title ASC' , 'fields' => array ( 'id' , 'title' ))), '{n}.Article.id' , '{n}.Article.title' );
2007-10-22 02:11:58 +00:00
$expected = array ( 1 => 'First Article' , 2 => 'Second Article' , 3 => 'Third Article' );
2007-07-01 03:43:05 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 19:34:40 +00:00
$result = Set :: combine ( $this -> model -> find ( 'all' , array ( 'order' => 'Article.title ASC' )), '{n}.Article.id' , '{n}.Article' );
2007-07-01 03:43:05 +00:00
$expected = array (
2007-10-22 02:11:58 +00:00
1 => 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' ),
2 => 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' ),
3 => 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' ));
2007-07-01 03:43:05 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 19:34:40 +00:00
$result = Set :: combine ( $this -> model -> find ( 'all' , array ( 'order' => 'Article.title ASC' )), '{n}.Article.id' , '{n}.Article' , '{n}.Article.user_id' );
2007-10-22 02:11:58 +00:00
$expected = array ( 1 => array (
1 => 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' ),
3 => 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' )),
3 => array ( 2 => 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' )));
2007-07-01 03:43:05 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 19:34:40 +00:00
$result = Set :: combine ( $this -> model -> find ( 'all' , array ( 'order' => 'Article.title ASC' , 'fields' => array ( 'id' , 'title' , 'user_id' ))), '{n}.Article.id' , '{n}.Article.title' , '{n}.Article.user_id' );
$expected = array ( 1 => array ( 1 => 'First Article' , 3 => 'Third Article' ), 3 => array ( 2 => 'Second Article' ));
2007-07-01 03:43:05 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 23:57:17 +00:00
$this -> model =& new Apple ();
2008-01-11 03:16:19 +00:00
$expected = array ( 1 => 'Red Apple 1' , 2 => 'Bright Red Apple' , 3 => 'green blue' , 4 => 'Test Name' , 5 => 'Blue Green' , 6 => 'My new apple' , 7 => 'Some odd color' );
2008-01-02 02:30:19 +00:00
$this -> assertEqual ( $this -> model -> find ( 'list' ), $expected );
$this -> assertEqual ( $this -> model -> Parent -> find ( 'list' ), $expected );
2008-01-11 03:16:19 +00:00
$this -> model =& new Post ();
$result = $this -> model -> find ( 'list' , array ( 'fields' => 'Post.title' ));
$expected = array ( 1 => 'First Post' , 2 => 'Second Post' , 3 => 'Third Post' );
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> find ( 'list' , array ( 'fields' => array ( 'Post.body' )));
$expected = array ( 1 => 'First Post Body' , 2 => 'Second Post Body' , 3 => 'Third Post Body' );
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> find ( 'list' , array ( 'fields' => array ( 'Post.title' , 'Post.body' )));
$expected = array ( 'First Post' => 'First Post Body' , 'Second Post' => 'Second Post Body' , 'Third Post' => 'Third Post Body' );
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> find ( 'list' , array ( 'fields' => array ( 'Post.id' , 'Post.title' , 'Author.user' ), 'recursive' => 1 ));
$expected = array ( 'mariano' => array ( 1 => 'First Post' , 3 => 'Third Post' ), 'larry' => array ( 2 => 'Second Post' ));
$this -> assertEqual ( $result , $expected );
$this -> model =& new User ();
$result = $this -> model -> find ( 'list' , array ( 'fields' => array ( 'User.user' , 'User.password' )));
$expected = array ( 'mariano' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'nate' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'larry' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'garrett' => '5f4dcc3b5aa765d61d8327deb882cf99' );
$this -> assertEqual ( $result , $expected );
2007-07-01 03:43:05 +00:00
}
2008-02-28 01:50:38 +00:00
function testRecordExists () {
$this -> loadFixtures ( 'User' );
$this -> model =& new User ();
$this -> assertFalse ( $this -> model -> exists ());
$this -> model -> read ( null , 1 );
$this -> assertTrue ( $this -> model -> exists ());
$this -> model -> create ();
$this -> assertFalse ( $this -> model -> exists ());
$this -> model -> id = 4 ;
$this -> assertTrue ( $this -> model -> exists ());
2008-02-28 04:35:20 +00:00
$this -> model =& new TheVoid ();
$this -> assertFalse ( $this -> model -> exists ());
$this -> model -> id = 5 ;
$this -> assertFalse ( $this -> model -> exists ());
2008-02-28 01:50:38 +00:00
}
2007-10-24 16:07:36 +00:00
function testFindField () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' );
2007-03-26 18:38:54 +00:00
$this -> model =& new User ();
$this -> model -> id = 1 ;
$result = $this -> model -> field ( 'user' );
$this -> assertEqual ( $result , 'mariano' );
$result = $this -> model -> field ( 'User.user' );
$this -> assertEqual ( $result , 'mariano' );
$this -> model -> id = false ;
$result = $this -> model -> field ( 'user' , array ( 'user' => 'mariano' ));
$this -> assertEqual ( $result , 'mariano' );
$result = $this -> model -> field ( 'COUNT(*) AS count' , true );
$this -> assertEqual ( $result , 4 );
2007-03-27 01:34:59 +00:00
$result = $this -> model -> field ( 'COUNT(*)' , true );
$this -> assertEqual ( $result , 4 );
2007-03-26 18:38:54 +00:00
}
2008-01-11 06:45:00 +00:00
function testFindUnique () {
$this -> loadFixtures ( 'User' );
$this -> model =& new User ();
$this -> assertFalse ( $this -> model -> isUnique ( array ( 'user' => 'nate' )));
$this -> model -> id = 2 ;
$this -> assertTrue ( $this -> model -> isUnique ( array ( 'user' => 'nate' )));
$this -> assertFalse ( $this -> model -> isUnique ( array ( 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' )));
}
2007-10-24 16:07:36 +00:00
function testUpdateExisting () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' , 'Comment' );
2007-10-08 17:43:14 +00:00
$this -> model =& new User ();
2007-10-19 03:33:19 +00:00
$this -> model -> id = $id = 1000 ;
$this -> model -> delete ();
2007-10-08 17:43:14 +00:00
2007-10-24 03:32:34 +00:00
$this -> model -> save ( array ( 'User' => array ( 'id' => $id , 'user' => 'some user' , 'password' => 'some password' )));
2007-10-19 03:33:19 +00:00
$this -> assertEqual ( $this -> model -> id , $id );
2007-10-08 17:43:14 +00:00
2007-10-19 03:33:19 +00:00
$this -> model -> save ( array ( 'User' => array ( 'user' => 'updated user' )));
$this -> assertEqual ( $this -> model -> id , $id );
2007-10-08 17:43:14 +00:00
2007-10-19 03:33:19 +00:00
$this -> Article =& new Article ();
$this -> Comment =& new Comment ();
$data = array ( 'Comment' => array ( 'id' => 1 , 'comment' => 'First Comment for First Article' ),
2007-10-22 02:11:58 +00:00
'Article' => array ( 'id' => 2 , 'title' => 'Second Article' ));
2007-10-08 17:43:14 +00:00
2007-10-19 03:33:19 +00:00
$result = $this -> Article -> save ( $data );
$this -> assertTrue ( $result );
2007-10-08 17:43:14 +00:00
2007-10-19 03:33:19 +00:00
$result = $this -> Comment -> save ( $data );
$this -> assertTrue ( $result );
}
2007-10-08 17:43:14 +00:00
2008-03-01 03:12:12 +00:00
function testUpdateMultiple () {
$this -> loadFixtures ( 'Comment' , 'Article' , 'User' , 'Attachment' );
$this -> model =& new Comment ();
$result = Set :: extract ( $this -> model -> find ( 'all' ), '{n}.Comment.user_id' );
$expected = array ( '2' , '4' , '1' , '1' , '1' , '2' );
$this -> assertEqual ( $result , $expected );
$this -> model -> updateAll ( array ( 'Comment.user_id' => 5 ), array ( 'Comment.user_id' => 2 ));
$result = Set :: extract ( $this -> model -> find ( 'all' ), '{n}.Comment.user_id' );
$expected = array ( '5' , '4' , '1' , '1' , '1' , '5' );
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testBindUnbind () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Comment' , 'FeatureSet' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> hasMany ;
$expected = array ();
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> bindModel ( array ( 'hasMany' => array ( 'Comment' )));
$this -> assertTrue ( $result );
2007-03-26 17:16:43 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ), 'Comment' => array (
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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ), '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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' ), 'Comment' => array ()),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' ), 'Comment' => array (
2007-10-22 02:11:58 +00:00
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' ))));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-26 17:16:43 +00:00
$this -> model -> __resetAssociations ();
2007-03-17 19:15:41 +00:00
$result = $this -> model -> hasMany ;
2007-03-26 17:16:43 +00:00
$this -> assertEqual ( $result , array ());
2007-03-17 19:15:41 +00:00
$result = $this -> model -> bindModel ( array ( 'hasMany' => array ( 'Comment' )), false );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ), 'Comment' => array (
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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ), '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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' ), 'Comment' => array ()),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' ), 'Comment' => array (
2007-10-22 02:11:58 +00:00
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' ))));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> hasMany ;
2007-08-14 23:12:24 +00:00
$expected = array ( 'Comment' => array ( 'className' => 'Comment' , 'foreignKey' => 'user_id' , 'conditions' => null , 'fields' => null , 'order' => null , 'limit' => null , 'offset' => null , 'dependent' => null , 'exclusive' => null , 'finderQuery' => null , 'counterQuery' => null ) );
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> unbindModel ( array ( 'hasMany' => array ( 'Comment' )));
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> hasMany ;
$expected = array ();
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' )),
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ), 'Comment' => array (
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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ), '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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' ), 'Comment' => array ()),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' ), 'Comment' => array (
2007-10-22 02:11:58 +00:00
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' ))));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> unbindModel ( array ( 'hasMany' => array ( 'Comment' )), false );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' )),
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' )),
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' )),
2007-10-22 02:11:58 +00:00
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> hasMany ;
$expected = array ();
$this -> assertEqual ( $result , $expected );
2007-03-26 17:16:43 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> bindModel ( array ( 'hasMany' => array ( 'Comment' => array ( 'className' => 'Comment' , 'conditions' => 'Comment.published = \'Y\'' ) )));
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( null , 'User.id, User.user' );
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ), 'Comment' => array (
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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ), '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' ),
2007-10-22 02:11:58 +00:00
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' ))),
2007-08-14 23:12:24 +00:00
array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' ), 'Comment' => array ()),
array ( 'User' => array ( 'id' => '4' , 'user' => 'garrett' ), 'Comment' => array (
2007-10-22 02:11:58 +00:00
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' ))));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2008-01-01 19:34:40 +00:00
$this -> model2 =& new DeviceType ();
$expected = array ( 'className' => 'FeatureSet' , 'foreignKey' => 'feature_set_id' , 'conditions' => '' , 'fields' => '' , 'order' => '' , 'counterCache' => '' );
$this -> assertEqual ( $this -> model2 -> belongsTo [ 'FeatureSet' ], $expected );
$this -> model2 -> bind ( 'FeatureSet' , array ( 'conditions' => array ( 'active' => true )));
$expected [ 'conditions' ] = array ( 'active' => true );
$this -> assertEqual ( $this -> model2 -> belongsTo [ 'FeatureSet' ], $expected );
$this -> model2 -> bind ( 'FeatureSet' , array ( 'foreignKey' => false , 'conditions' => array ( 'Feature.name' => 'DeviceType.name' )));
$expected [ 'conditions' ] = array ( 'Feature.name' => 'DeviceType.name' );
$expected [ 'foreignKey' ] = false ;
$this -> assertEqual ( $this -> model2 -> belongsTo [ 'FeatureSet' ], $expected );
$this -> model2 -> bind ( 'NewFeatureSet' , array ( 'type' => 'hasMany' , 'className' => 'FeatureSet' , 'conditions' => array ( 'active' => true )));
$expected = array ( 'className' => 'FeatureSet' , 'conditions' => array ( 'active' => true ), 'foreignKey' => 'device_type_id' , 'fields' => '' , 'order' => '' , 'limit' => '' , 'offset' => '' , 'dependent' => '' , 'exclusive' => '' , 'finderQuery' => '' , 'counterQuery' => '' );
$this -> assertEqual ( $this -> model2 -> hasMany [ 'NewFeatureSet' ], $expected );
$this -> assertTrue ( is_object ( $this -> model2 -> NewFeatureSet ));
2007-03-17 19:15:41 +00:00
}
2007-03-25 18:17:15 +00:00
2007-10-24 16:07:36 +00:00
function testFindCount () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' );
2007-03-25 18:17:15 +00:00
$this -> model =& new User ();
$result = $this -> model -> findCount ();
$this -> assertEqual ( $result , 4 );
$this -> db -> fullDebug = true ;
$this -> model -> order = 'User.id' ;
2007-12-02 21:39:43 +00:00
$this -> db -> _queriesLog = array ();
2007-03-25 18:17:15 +00:00
$result = $this -> model -> findCount ();
$this -> assertEqual ( $result , 4 );
$this -> assertTrue ( isset ( $this -> db -> _queriesLog [ 0 ][ 'query' ]));
$this -> assertNoPattern ( '/ORDER\s+BY/' , $this -> db -> _queriesLog [ 0 ][ 'query' ]);
$this -> db -> _queriesLog = array ();
$this -> db -> fullDebug = false ;
}
2007-10-24 16:07:36 +00:00
function testFindMagic () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findByUser ( 'mariano' );
2007-10-22 02:11:58 +00:00
$expected = array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findByPassword ( '5f4dcc3b5aa765d61d8327deb882cf99' );
2007-10-22 02:11:58 +00:00
$expected = array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testRead () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> read ();
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> id = 2 ;
$result = $this -> model -> read ();
2007-08-14 23:12:24 +00:00
$expected = array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> read ( null , 2 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> id = 2 ;
$result = $this -> model -> read ( array ( 'id' , 'user' ));
2007-08-14 23:12:24 +00:00
$expected = array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> read ( 'id, user' , 2 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'User' => array ( 'id' => '2' , 'user' => 'nate' ));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> bindModel ( array ( 'hasMany' => array ( 'Article' )));
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> id = 1 ;
$result = $this -> model -> read ( 'id, user' );
2007-10-22 02:11:58 +00:00
$expected = array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ),
2007-03-17 19:15:41 +00:00
'Article' => array (
2007-08-14 23:12:24 +00:00
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' ),
2007-10-22 02:11:58 +00:00
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' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testRecursiveRead () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' , 'Comment' , 'Tag' , 'ArticlesTag' , 'Featured' , 'ArticleFeatured' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-17 21:37:22 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> bindModel ( array ( 'hasMany' => array ( 'Article' )), false );
$this -> assertTrue ( $result );
2007-03-17 21:37:22 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 0 ;
$result = $this -> model -> read ( 'id, user' , 1 );
$expected = array (
2007-08-14 23:12:24 +00:00
'User' => array ( 'id' => '1' , 'user' => 'mariano' ),
2007-03-17 19:15:41 +00:00
);
$this -> assertEqual ( $result , $expected );
2007-03-17 21:37:22 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 1 ;
$result = $this -> model -> read ( 'id, user' , 1 );
2007-10-22 02:11:58 +00:00
$expected = array ( 'User' => array ( 'id' => '1' , 'user' => 'mariano' ),
2007-03-17 19:15:41 +00:00
'Article' => array (
2007-08-14 23:12:24 +00:00
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' ),
2007-10-22 02:11:58 +00:00
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' )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-17 21:37:22 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 2 ;
$result = $this -> model -> read ( 'id, user' , 3 );
2007-10-22 02:11:58 +00:00
$expected = array ( 'User' => array ( 'id' => '3' , 'user' => 'larry' ),
'Article' => array ( 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' )),
2007-03-17 19:15:41 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
array ( 'id' => '1' , 'tag' => 'tag1' , 'created' => '2007-03-18 12:22:23' , 'updated' => '2007-03-18 12:24:31' ),
2007-10-22 02:11:58 +00:00
array ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )))));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
}
2008-01-17 17:09:10 +00:00
/**
* @ todo Figure out why Featured is not getting truncated properly
*/
2007-10-24 16:07:36 +00:00
function testRecursiveFindAll () {
2008-01-17 17:09:10 +00:00
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
$db -> truncate ( new Featured ());
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' , 'Comment' , 'Tag' , 'ArticlesTag' , 'Attachment' , 'ArticleFeatured' , 'Featured' , 'Category' );
2007-03-17 19:15:41 +00:00
$this -> model =& new Article ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( array ( 'Article.user_id' => 1 ));
2007-08-14 23:12:24 +00:00
$expected = array (
array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-08-14 23:12:24 +00:00
'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' )
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-03-17 19:15:41 +00:00
)
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (),
'Tag' => array ()
2007-03-17 19:15:41 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAll ( array ( 'Article.user_id' => 3 ), null , null , null , 1 , 2 );
2007-08-14 23:12:24 +00:00
$expected = array (
array (
'Article' => array (
2007-03-17 19:15:41 +00:00
'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'
2007-03-30 00:08:10 +00:00
),
2008-01-11 06:45:00 +00:00
'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (
array (
2007-03-30 00:08:10 +00:00
'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' ,
2008-01-11 06:45:00 +00:00
'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' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Attachment' => array ( 'id' => '1' , 'comment_id' => 5 , 'attachment' => 'attachment.zip' , 'created' => '2007-03-18 10:51:23' , 'updated' => '2007-03-18 10:53:31' )
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
2007-03-30 00:08:10 +00:00
'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' ,
2008-01-11 06:45:00 +00:00
'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' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ),
2007-03-17 19:15:41 +00:00
'Attachment' => false
)
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-03-17 19:15:41 +00:00
)
)
);
2007-03-23 21:59:08 +00:00
$this -> assertEqual ( $result , $expected );
2007-04-04 17:25:18 +00:00
2007-04-01 16:15:44 +00:00
$this -> Featured = new Featured ();
2007-04-04 17:25:18 +00:00
2007-04-01 16:15:44 +00:00
$this -> Featured -> recursive = 2 ;
$this -> Featured -> bindModel ( array (
'belongsTo' => array (
'ArticleFeatured' => array (
2008-01-17 17:09:10 +00:00
'conditions' => " ArticleFeatured.published = 'Y' " ,
2007-04-01 16:15:44 +00:00
'fields' => 'id, title, user_id, published'
)
)
));
2007-04-04 17:25:18 +00:00
2007-04-01 16:15:44 +00:00
$this -> Featured -> ArticleFeatured -> unbindModel ( array (
2007-04-04 17:25:18 +00:00
'hasMany' => array ( 'Attachment' , 'Comment' ),
2008-01-11 06:45:00 +00:00
'hasAndBelongsToMany' => array ( 'Tag' ))
2007-04-01 16:15:44 +00:00
);
2007-04-04 17:25:18 +00:00
2007-04-01 16:15:44 +00:00
$orderBy = 'ArticleFeatured.id ASC' ;
$result = $this -> Featured -> findAll ( null , null , $orderBy , 3 );
2007-04-04 17:25:18 +00:00
2007-08-14 23:12:24 +00:00
$expected = array (
2008-01-11 06:45:00 +00:00
array ( 'Featured' => array ( 'id' => '1' , 'article_featured_id' => '1' , 'category_id' => '1' , 'published_date' => '2007-03-31 10:39:23' , 'end_date' => '2007-05-15 10:39:23' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
'ArticleFeatured' => array ( 'id' => '1' , 'title' => 'First Article' , 'user_id' => '1' , 'published' => 'Y' ,
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
2007-04-04 19:55:57 +00:00
'Category' => array (),
2008-01-11 06:45:00 +00:00
'Featured' => array ( 'id' => '1' , 'article_featured_id' => '1' , 'category_id' => '1' , 'published_date' => '2007-03-31 10:39:23' , 'end_date' => '2007-05-15 10:39:23' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )),
'Category' => array ( 'id' => '1' , 'parent_id' => '0' , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )),
array ( 'Featured' => array ( 'id' => '2' , 'article_featured_id' => '2' , 'category_id' => '1' , 'published_date' => '2007-03-31 10:39:23' , 'end_date' => '2007-05-15 10:39:23' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
'ArticleFeatured' => array ( 'id' => '2' , 'title' => 'Second Article' , 'user_id' => '3' , 'published' => 'Y' ,
'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' ),
2007-04-04 19:55:57 +00:00
'Category' => array (),
2008-01-11 06:45:00 +00:00
'Featured' => array ( 'id' => '2' , 'article_featured_id' => '2' , 'category_id' => '1' , 'published_date' => '2007-03-31 10:39:23' , 'end_date' => '2007-05-15 10:39:23' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )),
'Category' => array ( 'id' => '1' , 'parent_id' => '0' , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' )
2007-04-01 04:40:18 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-03-17 19:15:41 +00:00
}
2007-04-29 02:25:57 +00:00
2007-10-24 16:07:36 +00:00
function testRecursiveFindAllWithLimit () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'User' , 'Tag' , 'ArticlesTag' , 'Comment' , 'Attachment' );
2007-04-11 21:22:26 +00:00
$this -> model =& new Article ();
2007-04-29 02:25:57 +00:00
2007-04-11 21:22:26 +00:00
$this -> model -> hasMany [ 'Comment' ][ 'limit' ] = 2 ;
$result = $this -> model -> findAll ( array ( 'Article.user_id' => 1 ));
2007-08-14 23:12:24 +00:00
$expected = array (
array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-08-14 23:12:24 +00:00
'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' ),
2007-04-11 21:22:26 +00:00
),
2007-08-14 23:12:24 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-04-11 21:22:26 +00:00
)
),
2007-08-14 23:12:24 +00:00
array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (),
'Tag' => array ()
2007-04-11 21:22:26 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-04-29 02:25:57 +00:00
2007-04-11 21:22:26 +00:00
$this -> model -> hasMany [ 'Comment' ][ 'limit' ] = 1 ;
$result = $this -> model -> findAll ( array ( 'Article.user_id' => 3 ), null , null , null , 1 , 2 );
2007-08-14 23:12:24 +00:00
$expected = array (
array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (
array (
2007-04-11 21:22:26 +00:00
'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' ,
2008-01-11 06:45:00 +00:00
'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' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Attachment' => array ( 'id' => '1' , 'comment_id' => 5 , 'attachment' => 'attachment.zip' , 'created' => '2007-03-18 10:51:23' , 'updated' => '2007-03-18 10:53:31' )
2007-04-11 21:22:26 +00:00
)
),
2007-08-14 23:12:24 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-04-11 21:22:26 +00:00
)
)
);
$this -> assertEqual ( $result , $expected );
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testAssociationAfterFind () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Post' , 'Author' );
2007-06-03 21:54:11 +00:00
$this -> model =& new Post ();
$result = $this -> model -> findAll ();
$expected = array (
array (
'Post' => array ( 'id' => '1' , 'author_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' ),
'Author' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' , 'test' => 'working' ),
), array (
2007-08-14 23:12:24 +00:00
'Post' => array ( 'id' => '2' , 'author_id' => '3' , 'title' => 'Second Post' , 'body' => 'Second Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ),
2007-06-03 21:54:11 +00:00
'Author' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' , 'test' => 'working' ),
), array (
'Post' => array ( 'id' => '3' , 'author_id' => '1' , 'title' => 'Third Post' , 'body' => 'Third Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' ),
'Author' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' , 'test' => 'working' )
)
);
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testValidatesBackwards () {
2007-05-02 07:48:22 +00:00
$this -> model =& new TestValidate ();
$this -> model -> validate = array (
'user_id' => VALID_NUMBER ,
'title' => VALID_NOT_EMPTY ,
'body' => VALID_NOT_EMPTY
);
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => '' , 'body' => '' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 'title' , 'body' => '' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => '' , 'title' => 'title' , 'body' => 'body' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => 'not a number' , 'title' => 'title' , 'body' => 'body' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 'title' , 'body' => 'body' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
}
2007-10-24 16:07:36 +00:00
function testValidates () {
2007-05-02 07:48:22 +00:00
$this -> model =& new TestValidate ();
2007-04-30 13:03:13 +00:00
2007-05-02 07:48:22 +00:00
$this -> model -> validate = array (
'user_id' => VALID_NUMBER ,
'title' => array ( 'allowEmpty' => false , 'rule' => VALID_NOT_EMPTY ),
'body' => VALID_NOT_EMPTY
);
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => '' , 'body' => 'body' ));
2007-04-30 13:03:13 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 'title' , 'body' => 'body' ));
2007-04-30 13:03:13 +00:00
$result = $this -> model -> create ( $data ) && $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => '0' , 'body' => 'body' ));
2007-04-30 13:03:13 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' ));
2007-04-30 13:03:13 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-01 03:03:53 +00:00
$this -> model -> validate [ 'modified' ] = array ( 'allowEmpty' => true , 'rule' => 'date' );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'modified' => '' ));
2007-05-01 03:03:53 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'modified' => '2007-05-01' ));
2007-05-01 03:03:53 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'modified' => 'invalid-date-here' ));
2007-05-01 03:03:53 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'modified' => 0 ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'modified' => '0' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-06-20 01:37:23 +00:00
2007-09-21 00:16:38 +00:00
$this -> model -> validate [ 'modified' ] = array ( 'allowEmpty' => false , 'rule' => 'date' );
$data = array ( 'TestValidate' => array ( 'modified' => null ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'modified' => false ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'modified' => '' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'modified' => '2007-05-01' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-05-04 07:13:15 +00:00
$this -> model -> validate [ 'slug' ] = array ( 'allowEmpty' => false , 'rule' => array ( 'maxLength' , 45 ));
2007-06-20 01:37:23 +00:00
2007-05-04 07:13:15 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'slug' => '' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'slug' => 'slug-right-here' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-06-20 01:37:23 +00:00
2007-05-04 07:13:15 +00:00
$data = array ( 'TestValidate' => array ( 'user_id' => '1' , 'title' => 0 , 'body' => 'body' , 'slug' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-05-02 07:48:22 +00:00
$this -> model -> validate = array (
2008-01-11 06:45:00 +00:00
'number' => array ( 'rule' => 'validateNumber' , 'min' => 3 , 'max' => 5 ),
2007-05-02 07:48:22 +00:00
'title' => array ( 'allowEmpty' => false , 'rule' => VALID_NOT_EMPTY )
);
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => '0' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => 0 ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => '3' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => 3 ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
$this -> model -> validate = array (
2008-01-11 06:45:00 +00:00
'number' => array ( 'rule' => 'validateNumber' , 'min' => 5 , 'max' => 10 ),
2007-05-02 07:48:22 +00:00
'title' => array ( 'allowEmpty' => false , 'rule' => VALID_NOT_EMPTY )
);
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => '3' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'title' , 'number' => 3 ));
2007-05-01 10:30:36 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-05-02 07:48:22 +00:00
$this -> model -> validate = array (
'title' => array ( 'allowEmpty' => false , 'rule' => 'validateTitle' )
);
$data = array ( 'TestValidate' => array ( 'title' => '' ));
2007-05-01 10:30:36 +00:00
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'title' => 'new title' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'title-new' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2008-01-11 06:45:00 +00:00
$this -> model -> validate = array ( 'title' => array ( 'allowEmpty' => true , 'rule' => 'validateTitle' ));
2007-05-02 07:48:22 +00:00
$data = array ( 'TestValidate' => array ( 'title' => '' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-09-21 00:42:34 +00:00
$this -> model -> validate = array ( 'title' => array ( 'rule' => array ( 'userDefined' , 'Article' , 'titleDuplicate' )));
$data = array ( 'TestValidate' => array ( 'title' => 'My Article Title' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertFalse ( $result );
$data = array ( 'TestValidate' => array ( 'title' => 'My Article With a Different Title' ));
$result = $this -> model -> create ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> validates ();
$this -> assertTrue ( $result );
2007-04-30 13:03:13 +00:00
}
2007-10-24 16:07:36 +00:00
function testSaveField () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-06-28 03:27:47 +00:00
$this -> model =& new Article ();
$this -> model -> id = 1 ;
$result = $this -> model -> saveField ( 'title' , 'New First Article' );
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' ), 1 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-06-28 03:27:47 +00:00
'id' => '1' , 'user_id' => '1' , 'title' => 'New First Article' , 'body' => 'First Article Body'
));
2007-12-08 09:01:14 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-28 03:27:47 +00:00
$this -> model -> id = 1 ;
$result = $this -> model -> saveField ( 'title' , '' );
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' ), 1 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-06-28 03:27:47 +00:00
'id' => '1' , 'user_id' => '1' , 'title' => '' , 'body' => 'First Article Body'
));
2007-12-08 09:01:14 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-28 03:27:47 +00:00
$this -> model -> id = 1 ;
2007-12-08 08:22:20 +00:00
$this -> model -> set ( 'body' , 'Messed up data' );
$this -> assertTrue ( $this -> model -> saveField ( 'title' , 'First Article' ));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' ), 1 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-06-28 03:27:47 +00:00
'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body'
));
2007-12-08 08:22:20 +00:00
$this -> assertEqual ( $result , $expected );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' ), 1 );
2007-06-28 03:27:47 +00:00
$this -> model -> id = 1 ;
$result = $this -> model -> saveField ( 'title' , '' , true );
$this -> assertFalse ( $result );
}
2007-10-24 16:07:36 +00:00
function testSaveWithCreate () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' , 'User' , 'Comment' , 'Tag' , 'ArticlesTag' , 'Attachment' );
2007-03-17 19:15:41 +00:00
$this -> model =& new User ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array ( 'User' => array ( 'user' => 'user' , 'password' => '' ));
$result = $this -> model -> save ( $data );
$this -> assertFalse ( $result );
$this -> assertTrue ( ! empty ( $this -> model -> validationErrors ));
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model =& new Article ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array ( 'Article' => array ( 'user_id' => '' , 'title' => '' , 'body' => '' ));
$result = $this -> model -> create ( $data ) && $this -> model -> save ();
$this -> assertFalse ( $result );
$this -> assertTrue ( ! empty ( $this -> model -> validationErrors ));
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array ( 'Article' => array ( 'id' => 1 , 'user_id' => '1' , 'title' => 'New First Article' , 'body' => '' ));
$result = $this -> model -> create ( $data ) && $this -> model -> save ();
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array ( 'Article' => array ( 'id' => 1 , 'title' => 'New First Article' ));
$result = $this -> model -> create () && $this -> model -> save ( $data , false );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 1 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-03-17 19:15:41 +00:00
'id' => '1' , 'user_id' => '1' , 'title' => 'New First Article' , 'body' => 'First Article Body' , 'published' => 'N'
));
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array ( 'Article' => array ( 'id' => 1 , 'user_id' => '2' , 'title' => 'First Article' , 'body' => 'New First Article Body' , 'published' => 'Y' ));
2007-10-17 21:19:30 +00:00
$result = $this -> model -> create () && $this -> model -> save ( $data , true , array ( 'id' , 'title' , 'published' ));
2007-03-17 19:15:41 +00:00
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 1 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-03-17 19:15:41 +00:00
'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y'
));
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$data = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'user_id' => '2' , 'title' => 'New Article' , 'body' => 'New Article Body' , 'created' => '2007-03-18 14:55:23' , 'updated' => '2007-03-18 14:57:31' ),
'Tag' => array ( 'Tag' => array ( 1 , 3 ))
2007-03-17 19:15:41 +00:00
);
2007-10-17 21:19:30 +00:00
$this -> model -> create ();
2007-03-17 19:15:41 +00:00
$result = $this -> model -> create () && $this -> model -> save ( $data );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 2 ;
$result = $this -> model -> read ( null , 4 );
2007-08-14 23:12:24 +00:00
$expected = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '4' , 'user_id' => '2' , 'title' => 'New Article' , 'body' => 'New Article Body' , 'published' => 'N' , 'created' => '2007-03-18 14:55:23' , 'updated' => '2007-03-18 14:57:31' ),
'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (),
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-03-17 19:15:41 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2008-01-11 06:45:00 +00:00
$data = array ( 'Comment' => array ( 'article_id' => '4' , 'user_id' => '1' , 'comment' => 'Comment New Article' , 'published' => 'Y' , 'created' => '2007-03-18 14:57:23' , 'updated' => '2007-03-18 14:59:31' ));
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> create () && $this -> model -> Comment -> save ( $data );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2008-01-01 23:57:17 +00:00
$data = array ( 'Attachment' => array ( 'comment_id' => '7' , 'attachment' => 'newattachment.zip' , 'created' => '2007-03-18 15:02:23' , 'updated' => '2007-03-18 15:04:31' ));
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> Attachment -> save ( $data );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 2 ;
$result = $this -> model -> read ( null , 4 );
2007-08-14 23:12:24 +00:00
$expected = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '4' , 'user_id' => '2' , 'title' => 'New Article' , 'body' => 'New Article Body' , 'published' => 'N' , 'created' => '2007-03-18 14:55:23' , 'updated' => '2007-03-18 14:57:31' ),
'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ),
2007-08-14 23:12:24 +00:00
'Comment' => array (
array (
2007-03-30 00:08:10 +00:00
'id' => '7' , 'article_id' => '4' , 'user_id' => '1' , 'comment' => 'Comment New Article' , 'published' => 'Y' , 'created' => '2007-03-18 14:57:23' , 'updated' => '2007-03-18 14:59:31' ,
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '4' , 'user_id' => '2' , 'title' => 'New Article' , 'body' => 'New Article Body' , 'published' => 'N' , 'created' => '2007-03-18 14:55:23' , 'updated' => '2007-03-18 14:57:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Attachment' => array ( 'id' => '2' , 'comment_id' => '7' , 'attachment' => 'newattachment.zip' , 'created' => '2007-03-18 15:02:23' , 'updated' => '2007-03-18 15:04:31' )
2007-03-17 19:15:41 +00:00
)
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-03-17 19:15:41 +00:00
)
);
$this -> assertEqual ( $result , $expected );
}
2007-06-20 01:37:23 +00:00
2007-10-24 16:07:36 +00:00
function testSaveWithSet () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-05-18 17:54:59 +00:00
$this -> model =& new Article ();
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
// Create record we will be updating later
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$data = array ( 'Article' => array ( 'user_id' => '1' , 'title' => 'Fourth Article' , 'body' => 'Fourth Article Body' , 'published' => 'Y' ));
$result = $this -> model -> create () && $this -> model -> save ( $data );
$this -> assertTrue ( $result );
// Check record we created
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 4 );
2008-01-11 06:45:00 +00:00
$expected = array ( 'Article' => array ( 'id' => '4' , 'user_id' => '1' , 'title' => 'Fourth Article' , 'body' => 'Fourth Article Body' , 'published' => 'Y' ));
2007-05-18 17:54:59 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
// Create new record just to overlap Model->id on previously created record
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$data = array ( 'Article' => array ( 'user_id' => '4' , 'title' => 'Fifth Article' , 'body' => 'Fifth Article Body' , 'published' => 'Y' ));
$result = $this -> model -> create () && $this -> model -> save ( $data );
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 5 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-05-18 17:54:59 +00:00
'id' => '5' , 'user_id' => '4' , 'title' => 'Fifth Article' , 'body' => 'Fifth Article Body' , 'published' => 'Y'
));
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
// Go back and edit the first article we created, starting by checking it's still there
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 4 );
2008-01-11 06:45:00 +00:00
$expected = array ( 'Article' => array ( 'id' => '4' , 'user_id' => '1' , 'title' => 'Fourth Article' , 'body' => 'Fourth Article Body' , 'published' => 'Y' ));
2007-05-18 17:54:59 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
// And now do the update with set()
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$data = array ( 'Article' => array ( 'id' => '4' , 'title' => 'Fourth Article - New Title' , 'published' => 'N' ));
$result = $this -> model -> set ( $data ) && $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 4 );
2008-01-11 06:45:00 +00:00
$expected = array ( 'Article' => array ( 'id' => '4' , 'user_id' => '1' , 'title' => 'Fourth Article - New Title' , 'body' => 'Fourth Article Body' , 'published' => 'N' ));
2007-05-18 17:54:59 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 5 );
2007-08-14 23:12:24 +00:00
$expected = array ( 'Article' => array (
2007-05-18 17:54:59 +00:00
'id' => '5' , 'user_id' => '4' , 'title' => 'Fifth Article' , 'body' => 'Fifth Article Body' , 'published' => 'Y'
));
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$data = array ( 'Article' => array ( 'id' => '5' , 'title' => 'Fifth Article - New Title 5' ));
2008-01-11 06:45:00 +00:00
$result = ( $this -> model -> set ( $data ) && $this -> model -> save ());
2007-05-18 17:54:59 +00:00
$this -> assertTrue ( $result );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> read ( array ( 'id' , 'user_id' , 'title' , 'body' , 'published' ), 5 );
2008-01-11 06:45:00 +00:00
$expected = array ( 'Article' => array ( 'id' => '5' , 'user_id' => '4' , 'title' => 'Fifth Article - New Title 5' , 'body' => 'Fifth Article Body' , 'published' => 'Y' ));
2007-05-18 17:54:59 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-20 01:37:23 +00:00
2007-05-18 17:54:59 +00:00
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'title' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
array ( 'Article' => array ( 'id' => 2 , 'title' => 'Second Article' )),
array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' )),
array ( 'Article' => array ( 'id' => 4 , 'title' => 'Fourth Article - New Title' )),
array ( 'Article' => array ( 'id' => 5 , 'title' => 'Fifth Article - New Title 5' ))
2007-06-27 19:16:11 +00:00
);
$this -> assertEqual ( $result , $expected );
}
2007-12-29 20:24:10 +00:00
function testSaveFromXml () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2008-02-02 20:45:37 +00:00
App :: import ( 'Core' , 'Xml' );
2007-12-29 20:24:10 +00:00
$Article = new Article ();
2008-02-02 20:45:37 +00:00
$Article -> save ( new Xml ( '<article title="test xml" user_id="5" />' ));
2008-01-17 17:09:10 +00:00
$this -> assertTrue ( $Article -> save ( new Xml ( '<article title="test xml" user_id="5" />' )));
2007-12-29 20:24:10 +00:00
$results = $Article -> find ( array ( 'Article.title' => 'test xml' ));
$this -> assertTrue ( $results );
}
2007-10-24 16:07:36 +00:00
function testSaveHabtm () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'User' , 'Comment' , 'Tag' , 'ArticlesTag' );
2007-06-28 03:27:47 +00:00
$this -> model =& new Article ();
$result = $this -> model -> findById ( 2 );
$expected = array (
2008-01-11 06:45:00 +00:00
'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' ),
2007-06-28 03:27:47 +00:00
'Comment' => array (
2007-08-14 23:12:24 +00:00
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' )
2007-06-28 03:27:47 +00:00
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-06-28 03:27:47 +00:00
)
);
$this -> assertEqual ( $result , $expected );
// Save with parent model data
$data = array (
2007-08-14 23:12:24 +00:00
'Article' => array ( 'id' => '2' , 'title' => 'New Second Article' ),
'Tag' => array ( 'Tag' => array ( 1 , 2 ))
2007-06-28 03:27:47 +00:00
);
2008-03-11 02:44:33 +00:00
$this -> assertTrue ( $this -> model -> set ( $data ));
$this -> assertTrue ( $this -> model -> save ());
2007-06-28 03:27:47 +00:00
2008-01-11 06:45:00 +00:00
$this -> model -> unbindModel ( array ( 'belongsTo' => array ( 'User' ), 'hasMany' => array ( 'Comment' )));
2008-03-11 02:44:33 +00:00
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
2007-06-28 03:27:47 +00:00
$expected = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body' ),
2007-06-28 03:27:47 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-06-28 03:27:47 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2008-01-11 06:45:00 +00:00
$data = array ( 'Article' => array ( 'id' => '2' ), 'Tag' => array ( 'Tag' => array ( 2 , 3 )));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> save ();
$this -> assertTrue ( $result );
2008-01-11 06:45:00 +00:00
$this -> model -> unbindModel ( array ( 'belongsTo' => array ( 'User' ), 'hasMany' => array ( 'Comment' )));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body' ),
2007-06-28 03:27:47 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
array ( 'id' => '2' , 'tag' => 'tag2' , 'created' => '2007-03-18 12:24:23' , 'updated' => '2007-03-18 12:26:31' ),
array ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
2007-06-28 03:27:47 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2008-01-11 06:45:00 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ( 1 , 2 , 3 )));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
2007-10-17 21:19:30 +00:00
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
2007-06-28 03:27:47 +00:00
$expected = array (
2008-01-11 06:45:00 +00:00
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body' ),
2007-06-28 03:27:47 +00:00
'Tag' => array (
2007-09-15 19:40:12 +00:00
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 ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
2007-06-28 03:27:47 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2008-01-11 06:45:00 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ()));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body'
),
'Tag' => array ()
);
$this -> assertEqual ( $result , $expected );
2008-02-06 15:48:31 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ( 2 , 3 )));
2007-06-28 03:27:47 +00:00
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body'
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
array ( 'id' => '2' , 'tag' => 'tag2' , 'created' => '2007-03-18 12:24:23' , 'updated' => '2007-03-18 12:26:31' ),
array ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
2007-06-28 03:27:47 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-06-28 03:36:54 +00:00
// Parent data after HABTM data
2008-03-07 04:36:20 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ( 1 , 2 )), 'Article' => array ( 'id' => '2' , 'title' => 'New Second Article' ));
$this -> assertTrue ( $this -> model -> set ( $data ));
$this -> assertTrue ( $this -> model -> save ());
2007-06-28 03:36:54 +00:00
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article' , 'body' => 'Second Article Body'
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-06-28 03:36:54 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2008-03-07 04:36:20 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ( 1 , 2 )), 'Article' => array ( 'id' => '2' , 'title' => 'New Second Article Title' ));
2007-06-28 03:36:54 +00:00
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
2008-03-07 04:36:20 +00:00
$this -> assertTrue ( $this -> model -> save ());
2007-06-28 03:36:54 +00:00
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'New Second Article Title' , 'body' => 'Second Article Body'
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-06-28 03:36:54 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2008-03-07 04:36:20 +00:00
$data = array ( 'Tag' => array ( 'Tag' => array ( 2 , 3 )), 'Article' => array ( 'id' => '2' , 'title' => 'Changed Second Article' ));
$this -> assertTrue ( $this -> model -> set ( $data ));
$this -> assertTrue ( $this -> model -> save ());
2007-06-28 03:36:54 +00:00
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'Changed Second Article' , 'body' => 'Second Article Body'
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
array ( 'id' => '2' , 'tag' => 'tag2' , 'created' => '2007-03-18 12:24:23' , 'updated' => '2007-03-18 12:26:31' ),
array ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
2007-06-28 03:36:54 +00:00
)
);
$this -> assertEqual ( $result , $expected );
$data = array (
'Tag' => array (
'Tag' => array ( 1 , 3 )
),
2007-08-14 23:12:24 +00:00
'Article' => array ( 'id' => '2' ),
2007-06-28 03:36:54 +00:00
);
$result = $this -> model -> set ( $data );
$this -> assertTrue ( $result );
$result = $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> unbindModel ( array (
'belongsTo' => array ( 'User' ),
'hasMany' => array ( 'Comment' )
));
$result = $this -> model -> find ( array ( 'Article.id' => 2 ), array ( 'id' , 'user_id' , 'title' , 'body' ));
$expected = array (
'Article' => array (
'id' => '2' , 'user_id' => '3' , 'title' => 'Changed Second Article' , 'body' => 'Second Article Body'
),
'Tag' => array (
2007-09-15 19:40:12 +00:00
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' )
2007-06-28 03:36:54 +00:00
)
);
$this -> assertEqual ( $result , $expected );
2007-10-17 21:19:30 +00:00
2008-03-07 01:29:19 +00:00
$data = array (
'Article' => array ( 'id' => 10 , 'user_id' => '2' , 'title' => 'New Article With Tags and fieldList' , 'body' => 'New Article Body with Tags and fieldList' , 'created' => '2007-03-18 14:55:23' , 'updated' => '2007-03-18 14:57:31' ),
'Tag' => array ( 'Tag' => array ( 1 , 2 , 3 ))
);
2007-10-17 21:19:30 +00:00
$result = $this -> model -> create () && $this -> model -> save ( $data , true , array ( 'user_id' , 'title' , 'published' ));
$this -> assertTrue ( $result );
$this -> model -> unbindModel ( array ( 'belongsTo' => array ( 'User' ), 'hasMany' => array ( 'Comment' )));
$result = $this -> model -> read ();
2008-03-07 01:29:19 +00:00
$expected = array (
'Article' => array ( 'id' => 4 , 'user_id' => 2 , 'title' => 'New Article With Tags and fieldList' , 'body' => '' , 'published' => 'N' , 'created' => '' , 'updated' => '' ),
'Tag' => array (
0 => array ( 'id' => 1 , 'tag' => 'tag1' , 'created' => '2007-03-18 12:22:23' , 'updated' => '2007-03-18 12:24:31' ),
1 => array ( 'id' => 2 , 'tag' => 'tag2' , 'created' => '2007-03-18 12:24:23' , 'updated' => '2007-03-18 12:26:31' ),
2 => array ( 'id' => 3 , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
)
);
2007-10-17 21:19:30 +00:00
$this -> assertEqual ( $result , $expected );
2007-06-28 03:27:47 +00:00
}
2008-01-01 19:34:40 +00:00
function testSaveAll () {
2008-01-27 01:57:39 +00:00
$this -> loadFixtures ( 'Post' , 'Author' , 'Comment' , 'Attachment' );
2008-01-01 19:34:40 +00:00
$this -> model =& new Post ();
$result = $this -> model -> find ( 'all' );
$this -> assertEqual ( count ( $result ), 3 );
$this -> assertFalse ( isset ( $result [ 3 ]));
$ts = date ( 'Y-m-d H:i:s' );
$this -> model -> saveAll ( array (
'Post' => array ( 'title' => 'Post with Author' , 'body' => 'This post will be saved with an author' ),
'Author' => array ( 'user' => 'bob' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf90' )
));
$result = $this -> model -> find ( 'all' );
$expected = array (
'Post' => array ( 'id' => '4' , 'author_id' => '5' , 'title' => 'Post with Author' , 'body' => 'This post will be saved with an author' , 'published' => 'N' , 'created' => $ts , 'updated' => $ts ),
'Author' => array ( 'id' => '5' , 'user' => 'bob' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf90' , 'created' => $ts , 'updated' => $ts , 'test' => 'working' )
);
$this -> assertEqual ( $result [ 3 ], $expected );
$this -> assertEqual ( count ( $result ), 4 );
$this -> model -> deleteAll ( true );
$this -> assertEqual ( $this -> model -> find ( 'all' ), array ());
2008-01-27 01:57:39 +00:00
// SQLite seems to reset the PK counter when that happens, so we need this to make the tests pass
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
$db -> truncate ( $this -> model );
2008-01-01 19:34:40 +00:00
$ts = date ( 'Y-m-d H:i:s' );
$this -> model -> saveAll ( array (
array ( 'title' => 'Multi-record post 1' , 'body' => 'First multi-record post' , 'author_id' => 2 ),
array ( 'title' => 'Multi-record post 2' , 'body' => 'Second multi-record post' , 'author_id' => 2 )
));
2008-01-17 17:09:10 +00:00
$result = $this -> model -> find ( 'all' , array ( 'recursive' => - 1 , 'order' => 'Post.id ASC' ));
2008-01-01 19:34:40 +00:00
$expected = array (
2008-01-27 01:57:39 +00:00
array ( 'Post' => array ( 'id' => '1' , 'author_id' => '2' , 'title' => 'Multi-record post 1' , 'body' => 'First multi-record post' , 'published' => 'N' , 'created' => $ts , 'updated' => $ts )),
array ( 'Post' => array ( 'id' => '2' , 'author_id' => '2' , 'title' => 'Multi-record post 2' , 'body' => 'Second multi-record post' , 'published' => 'N' , 'created' => $ts , 'updated' => $ts ))
2008-01-01 19:34:40 +00:00
);
$this -> assertEqual ( $result , $expected );
2008-01-27 01:57:39 +00:00
$this -> model =& new Comment ();
$ts = date ( 'Y-m-d H:i:s' );
$result = $this -> model -> saveAll ( array (
'Comment' => array ( 'article_id' => 2 , 'user_id' => 2 , 'comment' => 'New comment with attachment' , 'published' => 'Y' ),
'Attachment' => array ( 'attachment' => 'some_file.tgz' )
));
$this -> assertTrue ( $result );
$result = $this -> model -> find ( 'all' );
$expected = array ( 'id' => '7' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'New comment with attachment' , 'published' => 'Y' , 'created' => $ts , 'updated' => $ts );
$this -> assertEqual ( $result [ 6 ][ 'Comment' ], $expected );
$expected = array ( 'id' => '7' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'New comment with attachment' , 'published' => 'Y' , 'created' => $ts , 'updated' => $ts );
$this -> assertEqual ( $result [ 6 ][ 'Comment' ], $expected );
$expected = array ( 'id' => '2' , 'comment_id' => '7' , 'attachment' => 'some_file.tgz' , 'created' => $ts , 'updated' => $ts );
$this -> assertEqual ( $result [ 6 ][ 'Attachment' ], $expected );
2008-01-01 19:34:40 +00:00
}
2008-03-09 07:59:23 +00:00
function testSaveAllHasMany () {
$this -> loadFixtures ( 'Article' , 'Comment' );
$this -> model =& new Article ();
$this -> model -> belongsTo = $this -> model -> hasAndBelongsToMany = array ();
2008-03-11 02:44:33 +00:00
$this -> assertTrue ( $this -> model -> saveAll (
array (
'Article' => array ( 'id' => 2 ),
'Comment' => array (
array ( 'comment' => 'First new comment' , 'published' => 'Y' , 'user_id' => 1 ),
array ( 'comment' => 'Second new comment' , 'published' => 'Y' , 'user_id' => 2 )
)
),
array ( 'atomic' => false )
));
2008-03-09 07:59:23 +00:00
$result = $this -> model -> findById ( 2 );
$expected = array ( 'First Comment for Second Article' , 'Second Comment for Second Article' , 'First new comment' , 'Second new comment' );
$this -> assertEqual ( Set :: extract ( $result [ 'Comment' ], '{n}.comment' ), $expected );
}
2008-03-07 01:29:19 +00:00
function testSaveAllValidation () {
$this -> loadFixtures ( 'Post' , 'Author' , 'Comment' , 'Attachment' );
$this -> model =& new Post ();
$data = array (
array ( 'id' => '1' , 'title' => 'Baleeted First Post' , 'body' => 'Baleeted!' , 'published' => 'N' ),
array ( 'id' => '2' , 'title' => 'Just update the title' ),
2008-03-11 02:44:33 +00:00
array ( 'title' => 'Creating a fourth post' , 'body' => 'Fourth post body' , 'author_id' => 2 )
2008-03-07 01:29:19 +00:00
);
$ts = date ( 'Y-m-d H:i:s' );
$this -> assertTrue ( $this -> model -> saveAll ( $data ));
$result = $this -> model -> find ( 'all' , array ( 'recursive' => - 1 ));
$expected = array (
array ( 'Post' => array ( 'id' => '1' , 'author_id' => '1' , 'title' => 'Baleeted First Post' , 'body' => 'Baleeted!' , 'published' => 'N' , 'created' => '2007-03-18 10:39:23' , 'updated' => $ts )),
array ( 'Post' => array ( 'id' => '2' , 'author_id' => '3' , 'title' => 'Just update the title' , 'body' => 'Second Post Body' , 'published' => 'N' , 'created' => '2007-03-18 10:41:23' , 'updated' => $ts )),
array ( 'Post' => array ( 'id' => '3' , 'author_id' => '1' , 'title' => 'Third Post' , 'body' => 'Third Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' )),
2008-03-11 02:44:33 +00:00
array ( 'Post' => array ( 'id' => '4' , 'author_id' => '2' , 'title' => 'Creating a fourth post' , 'body' => 'Fourth post body' , 'published' => 'N' , 'created' => $ts , 'updated' => $ts ))
2008-03-07 01:29:19 +00:00
);
$this -> assertEqual ( $result , $expected );
$this -> model -> validate = array ( 'title' => VALID_NOT_EMPTY , 'author_id' => 'numeric' );
$data = array (
array ( 'id' => '1' , 'title' => 'Un-Baleeted First Post' , 'body' => 'Not Baleeted!' , 'published' => 'Y' ),
array ( 'id' => '2' , 'title' => '' , 'body' => 'Trying to get away with an empty title' ),
);
$ts = date ( 'Y-m-d H:i:s' );
$this -> assertFalse ( $this -> model -> saveAll ( $data ));
$expected [ 0 ][ 'Post' ] = array_merge ( $expected [ 0 ][ 'Post' ], $data [ 0 ], array ( 'updated' => $ts ));
$result = $this -> model -> find ( 'all' , array ( 'recursive' => - 1 ));
$errors = array ( 2 => array ( 'title' => 'This field cannot be left blank' ));
$this -> assertEqual ( $result , $expected );
$this -> assertEqual ( $this -> model -> validationErrors , $errors );
$data = array (
array ( 'id' => '1' , 'title' => 'Re-Baleeted First Post' , 'body' => 'Baleeted!' , 'published' => 'N' ),
array ( 'id' => '2' , 'title' => '' , 'body' => 'Trying to get away with an empty title' ),
);
$this -> assertFalse ( $this -> model -> saveAll ( $data , array ( 'validate' => 'first' )));
$result = $this -> model -> find ( 'all' , array ( 'recursive' => - 1 ));
$this -> assertEqual ( $result , $expected );
$this -> assertEqual ( $this -> model -> validationErrors , $errors );
$data = array (
array ( 'title' => 'First new post' , 'body' => 'Woohoo!' , 'published' => 'Y' ),
array ( 'title' => 'Empty body' , 'body' => '' )
);
$this -> model -> validate [ 'body' ] = VALID_NOT_EMPTY ;
}
2008-01-01 19:34:40 +00:00
function testSaveWithCounterCache () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Syfile' , 'Item' );
2008-01-01 19:34:40 +00:00
$this -> model =& new Syfile ();
$this -> model2 =& new Item ();
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], null );
2008-03-01 03:12:12 +00:00
$this -> model2 -> save ( array ( 'name' => 'Item 7' , 'syfile_id' => 1 , 'published' => false ));
2008-01-01 19:34:40 +00:00
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], '2' );
$this -> model2 -> delete ( 1 );
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], '1' );
2008-03-01 03:41:43 +00:00
$this -> model2 -> id = 2 ;
$this -> model2 -> saveField ( 'syfile_id' , 1 );
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], '2' );
$result = $this -> model -> findById ( 2 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], null );
2008-01-01 19:34:40 +00:00
}
2008-02-02 04:50:44 +00:00
function testSaveWithCounterCacheScope () {
$this -> loadFixtures ( 'Syfile' , 'Item' );
$this -> model =& new Syfile ();
$this -> model2 =& new Item ();
$this -> model2 -> belongsTo [ 'Syfile' ][ 'counterCache' ] = true ;
2008-03-11 02:44:33 +00:00
$this -> model2 -> belongsTo [ 'Syfile' ][ 'counterScope' ] = array ( 'published' => true );
2008-02-02 04:50:44 +00:00
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], null );
2008-03-11 02:44:33 +00:00
$this -> model2 -> save ( array ( 'name' => 'Item 7' , 'syfile_id' => 1 , 'published' => true ));
2008-02-02 04:50:44 +00:00
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], '1' );
$this -> model2 -> id = 1 ;
2008-03-11 02:44:33 +00:00
$this -> model2 -> saveField ( 'published' , true );
2008-02-02 04:50:44 +00:00
$result = $this -> model -> findById ( 1 );
$this -> assertIdentical ( $result [ 'Syfile' ][ 'item_count' ], '2' );
}
2007-10-24 16:07:36 +00:00
function testDel () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-06-27 19:16:11 +00:00
$this -> model =& new Article ();
$result = $this -> model -> del ( 2 );
$this -> assertTrue ( $result );
$result = $this -> model -> read ( null , 2 );
$this -> assertFalse ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'title' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' ))
2007-06-27 19:16:11 +00:00
);
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> del ( 3 );
$this -> assertTrue ( $result );
$result = $this -> model -> read ( null , 3 );
$this -> assertFalse ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'title' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' ))
2007-06-27 19:16:11 +00:00
);
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testDeleteAll () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' );
2007-06-27 19:16:11 +00:00
$this -> model =& new Article ();
$data = array ( 'Article' => array ( 'user_id' => 2 , 'id' => 4 , 'title' => 'Fourth Article' , 'published' => 'N' ));
$result = $this -> model -> set ( $data ) && $this -> model -> save ();
$this -> assertTrue ( $result );
$data = array ( 'Article' => array ( 'user_id' => 2 , 'id' => 5 , 'title' => 'Fifth Article' , 'published' => 'Y' ));
$result = $this -> model -> set ( $data ) && $this -> model -> save ();
$this -> assertTrue ( $result );
$data = array ( 'Article' => array ( 'user_id' => 1 , 'id' => 6 , 'title' => 'Sixth Article' , 'published' => 'N' ));
$result = $this -> model -> set ( $data ) && $this -> model -> save ();
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'user_id' , 'title' , 'published' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'user_id' => 1 , 'title' => 'First Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 2 , 'user_id' => 3 , 'title' => 'Second Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 3 , 'user_id' => 1 , 'title' => 'Third Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 4 , 'user_id' => 2 , 'title' => 'Fourth Article' , 'published' => 'N' )),
array ( 'Article' => array ( 'id' => 5 , 'user_id' => 2 , 'title' => 'Fifth Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 6 , 'user_id' => 1 , 'title' => 'Sixth Article' , 'published' => 'N' ))
2007-06-27 19:16:11 +00:00
);
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> deleteAll ( array ( 'Article.published' => 'N' ));
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'user_id' , 'title' , 'published' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'user_id' => 1 , 'title' => 'First Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 2 , 'user_id' => 3 , 'title' => 'Second Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 3 , 'user_id' => 1 , 'title' => 'Third Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 5 , 'user_id' => 2 , 'title' => 'Fifth Article' , 'published' => 'Y' ))
2007-06-27 19:16:11 +00:00
);
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> deleteAll ( array ( 'Article.user_id' => array ( 2 , 3 )));
$this -> assertTrue ( $result );
$this -> model -> recursive = - 1 ;
$result = $this -> model -> findAll ( null , array ( 'id' , 'user_id' , 'title' , 'published' ));
$expected = array (
2007-08-14 23:12:24 +00:00
array ( 'Article' => array ( 'id' => 1 , 'user_id' => 1 , 'title' => 'First Article' , 'published' => 'Y' )),
array ( 'Article' => array ( 'id' => 3 , 'user_id' => 1 , 'title' => 'Third Article' , 'published' => 'Y' ))
2007-05-18 17:54:59 +00:00
);
$this -> assertEqual ( $result , $expected );
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testRecursiveDel () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'Comment' , 'Attachment' );
2007-03-17 19:15:41 +00:00
$this -> model =& new Article ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> del ( 2 );
$this -> assertTrue ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$this -> model -> recursive = 2 ;
$result = $this -> model -> read ( null , 2 );
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> read ( null , 5 );
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> read ( null , 6 );
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> Attachment -> read ( null , 1 );
$this -> assertFalse ( $result );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findCount ();
$this -> assertEqual ( $result , 2 );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> findCount ();
$this -> assertEqual ( $result , 4 );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> Comment -> Attachment -> findCount ();
$this -> assertEqual ( $result , 0 );
}
2007-03-30 00:08:10 +00:00
2008-01-01 19:34:40 +00:00
function testDependentExclusiveDelete () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Article' , 'Comment' );
2008-01-01 19:34:40 +00:00
$this -> model =& new Article10 ();
$result = $this -> model -> find ( 'all' );
$this -> assertEqual ( count ( $result [ 0 ][ 'Comment' ]), 4 );
$this -> assertEqual ( count ( $result [ 1 ][ 'Comment' ]), 2 );
$this -> assertEqual ( $this -> model -> Comment -> find ( 'count' ), 6 );
$this -> model -> delete ( 1 );
$this -> assertEqual ( $this -> model -> Comment -> find ( 'count' ), 2 );
}
2008-03-11 02:44:33 +00:00
function testDeleteLinks () {
$this -> loadFixtures ( 'Article' , 'ArticlesTag' , 'Tag' );
$this -> model =& new Article ();
$result = $this -> model -> ArticlesTag -> find ( 'all' );
$expected = array (
array ( 'ArticlesTag' => array ( 'article_id' => '1' , 'tag_id' => '1' )),
array ( 'ArticlesTag' => array ( 'article_id' => '1' , 'tag_id' => '2' )),
array ( 'ArticlesTag' => array ( 'article_id' => '2' , 'tag_id' => '1' )),
array ( 'ArticlesTag' => array ( 'article_id' => '2' , 'tag_id' => '3' ))
);
$this -> assertEqual ( $result , $expected );
$this -> Article -> delete ( 1 );
$result = $this -> model -> ArticlesTag -> find ( 'all' );
$expected = array (
array ( 'ArticlesTag' => array ( 'article_id' => '2' , 'tag_id' => '1' )),
array ( 'ArticlesTag' => array ( 'article_id' => '2' , 'tag_id' => '3' ))
);
$this -> assertEqual ( $result , $expected );
}
2007-10-24 16:07:36 +00:00
function testFindAllThreaded () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Category' );
2007-03-17 19:15:41 +00:00
$this -> model =& new Category ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAllThreaded ();
2007-08-14 23:12:24 +00:00
$expected = array (
array (
'Category' => array ( 'id' => '1' , 'parent_id' => '0' , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array (
array (
'Category' => array ( 'id' => '2' , 'parent_id' => '1' , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '3' , 'parent_id' => '1' , 'name' => 'Category 1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-17 19:15:41 +00:00
)
)
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '4' , 'parent_id' => '0' , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '5' , 'parent_id' => '0' , 'name' => 'Category 3' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array (
array (
'Category' => array ( 'id' => '6' , 'parent_id' => '5' , 'name' => 'Category 3.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-17 19:15:41 +00:00
)
)
)
);
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAllThreaded ( array ( 'Category.name' => 'LIKE Category 1%' ));
2007-08-14 23:12:24 +00:00
$expected = array (
array (
'Category' => array ( 'id' => '1' , 'parent_id' => '0' , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array (
array (
'Category' => array ( 'id' => '2' , 'parent_id' => '1' , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '3' , 'parent_id' => '1' , 'name' => 'Category 1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
2007-03-17 19:15:41 +00:00
)
)
)
);
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findAllThreaded ( null , 'id, parent_id, name' );
2007-08-14 23:12:24 +00:00
$expected = array (
array (
'Category' => array ( 'id' => '1' , 'parent_id' => '0' , 'name' => 'Category 1' ),
'children' => array (
array (
'Category' => array ( 'id' => '2' , 'parent_id' => '1' , 'name' => 'Category 1.1' ),
'children' => array ()
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '3' , 'parent_id' => '1' , 'name' => 'Category 1.2' ),
'children' => array ()
2007-03-17 19:15:41 +00:00
)
)
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '4' , 'parent_id' => '0' , 'name' => 'Category 2' ),
'children' => array ()
2007-03-30 00:08:10 +00:00
),
2007-08-14 23:12:24 +00:00
array (
'Category' => array ( 'id' => '5' , 'parent_id' => '0' , 'name' => 'Category 3' ),
'children' => array (
array (
'Category' => array ( 'id' => '6' , 'parent_id' => '5' , 'name' => 'Category 3.1' ),
'children' => array ()
2007-03-17 19:15:41 +00:00
)
)
)
);
$this -> assertEqual ( $result , $expected );
2008-01-09 01:04:14 +00:00
$result = $this -> model -> findAllThreaded ( null , null , 'id DESC' );
$expected = array (
array (
'Category' => array ( 'id' => 5 , 'parent_id' => 0 , 'name' => 'Category 3' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array (
array (
'Category' => array ( 'id' => 6 , 'parent_id' => 5 , 'name' => 'Category 3.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
)
)
),
array (
'Category' => array ( 'id' => 4 , 'parent_id' => 0 , 'name' => 'Category 2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
),
array (
'Category' => array ( 'id' => 1 , 'parent_id' => 0 , 'name' => 'Category 1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array (
array (
'Category' => array ( 'id' => 3 , 'parent_id' => 1 , 'name' => 'Category 1.2' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
),
array (
'Category' => array ( 'id' => 2 , 'parent_id' => 1 , 'name' => 'Category 1.1' , 'created' => '2007-03-18 15:30:23' , 'updated' => '2007-03-18 15:32:31' ),
'children' => array ()
)
)
)
2008-01-11 03:16:19 +00:00
);
2008-01-09 01:04:14 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-17 19:15:41 +00:00
}
2007-03-30 00:08:10 +00:00
2007-10-24 16:07:36 +00:00
function testFindNeighbours () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'User' , 'Article' );
2007-03-17 19:15:41 +00:00
$this -> model =& new Article ();
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findNeighbours ( null , 'Article.id' , '2' );
2007-10-22 02:11:58 +00:00
$expected = array ( 'prev' => array ( 'Article' => array ( 'id' => 1 )), 'next' => array ( 'Article' => array ( 'id' => 3 )));
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-03-30 00:08:10 +00:00
2007-03-17 19:15:41 +00:00
$result = $this -> model -> findNeighbours ( null , 'Article.id' , '3' );
2007-10-22 02:11:58 +00:00
$expected = array ( 'prev' => array ( 'Article' => array ( 'id' => 2 )), 'next' => array ());
2007-03-17 19:15:41 +00:00
$this -> assertEqual ( $result , $expected );
2007-10-23 13:41:25 +00:00
$result = $this -> model -> findNeighbours ( array ( 'User.id' => 1 ), array ( 'Article.id' , 'Article.title' ), 2 );
$expected = array (
'prev' => array ( 'Article' => array ( 'id' => 1 , 'title' => 'First Article' )),
'next' => array ( 'Article' => array ( 'id' => 3 , 'title' => 'Third Article' )),
);
$this -> assertEqual ( $result , $expected );
2007-03-17 19:15:41 +00:00
}
2007-04-09 08:54:25 +00:00
2007-10-24 16:07:36 +00:00
function testFindCombinedRelations () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Apple' , 'Sample' );
2007-04-05 04:04:55 +00:00
$this -> model =& new Apple ();
2007-04-09 08:54:25 +00:00
2007-04-05 04:04:55 +00:00
$result = $this -> model -> findAll ();
2007-04-09 08:54:25 +00:00
2008-01-11 03:16:19 +00:00
$expected = array (
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => '1' , 'apple_id' => '2' , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '2' , 'apple_id' => '1' , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => null , 'apple_id' => null , 'name' => null ),
2007-12-23 05:40:25 +00:00
'Child' => array ( array ( 'id' => '2' , 'apple_id' => '1' , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => '2' , 'apple_id' => '1' , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '1' , 'apple_id' => '2' , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '2' , 'apple_id' => '2' , 'name' => 'sample2' ),
2007-12-23 05:40:25 +00:00
'Child' => array ( array ( 'id' => '1' , 'apple_id' => '2' , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => '3' , 'apple_id' => '2' , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => '4' , 'apple_id' => '2' , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => '3' , 'apple_id' => '2' , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '2' , 'apple_id' => '1' , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '1' , 'apple_id' => '3' , 'name' => 'sample1' ),
'Child' => array ()),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => '4' , 'apple_id' => '2' , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => '2' , 'apple_id' => '1' , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
'Sample' => array ( 'id' => '3' , 'apple_id' => '4' , 'name' => 'sample3' ),
'Child' => array ( array ( 'id' => '6' , 'apple_id' => '4' , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => '5' , 'apple_id' => '5' , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '5' , 'apple_id' => '5' , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => '4' , 'apple_id' => '5' , 'name' => 'sample4' ),
'Child' => array ( array ( 'id' => '5' , 'apple_id' => '5' , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => '6' , 'apple_id' => '4' , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '4' , 'apple_id' => '2' , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => null , 'apple_id' => null , 'name' => null ),
'Child' => array ( array ( 'id' => '7' , 'apple_id' => '6' , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => '7' , 'apple_id' => '6' , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => '6' , 'apple_id' => '4' , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => null , 'apple_id' => null , 'name' => null ),
'Child' => array ()));
2007-04-05 04:04:55 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-06-03 21:54:11 +00:00
2007-10-24 16:07:36 +00:00
function testSaveEmpty () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Thread' );
2007-12-19 02:05:15 +00:00
$this -> model =& new Thread ();
2007-10-19 21:05:34 +00:00
$data = array ();
$expected = $this -> model -> save ( $data );
$this -> assertFalse ( $expected );
2007-10-19 21:43:48 +00:00
}
2007-10-19 21:05:34 +00:00
2007-12-19 02:05:15 +00:00
// function testBasicValidation() {
// $this->model =& new ValidationTest();
// $this->model->testing = true;
// $this->model->set(array('title' => '', 'published' => 1));
// $this->assertEqual($this->model->invalidFields(), array('title' => 'This field cannot be left blank'));
2007-12-23 05:40:25 +00:00
//
2007-12-19 02:05:15 +00:00
// $this->model->create();
// $this->model->set(array('title' => 'Hello', 'published' => 0));
// $this->assertEqual($this->model->invalidFields(), array('published' => 'This field cannot be left blank'));
2007-12-23 05:40:25 +00:00
//
2007-12-19 02:05:15 +00:00
// $this->model->create();
// $this->model->set(array('title' => 'Hello', 'published' => 1, 'body' => ''));
// $this->assertEqual($this->model->invalidFields(), array('body' => 'This field cannot be left blank'));
// }
2007-06-03 21:54:11 +00:00
2007-10-24 16:07:36 +00:00
function testMultipleValidation () {
2007-06-03 21:54:11 +00:00
$this -> model =& new ValidationTest ();
}
2007-08-29 04:38:48 +00:00
2007-12-19 02:05:15 +00:00
function testLoadModelSecondIteration () {
2007-08-29 04:38:48 +00:00
$model = new ModelA ();
$this -> assertIsA ( $model , 'ModelA' );
$this -> assertIsA ( $model -> ModelB , 'ModelB' );
$this -> assertIsA ( $model -> ModelB -> ModelD , 'ModelD' );
$this -> assertIsA ( $model -> ModelC , 'ModelC' );
$this -> assertIsA ( $model -> ModelC -> ModelD , 'ModelD' );
}
2007-10-22 02:11:58 +00:00
2007-10-24 16:07:36 +00:00
function testRecursiveUnbind () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Apple' , 'Sample' );
2007-10-22 02:11:58 +00:00
$this -> model =& new Apple ();
$this -> model -> recursive = 2 ;
$result = $this -> model -> findAll ();
2008-01-11 03:16:19 +00:00
$expected = array (
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' )),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' )),
2007-10-22 02:11:58 +00:00
'Child' => array ()),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ,
'Apple' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ,
'Apple' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ()))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
'Child' => array ()));
2007-10-22 02:11:58 +00:00
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> Parent -> unbindModel ( array ( 'hasOne' => array ( 'Sample' )));
$this -> assertTrue ( $result );
$result = $this -> model -> findAll ();
2008-01-11 03:16:19 +00:00
$expected = array (
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' )),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' )),
2007-10-22 02:11:58 +00:00
'Child' => array ()),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ,
'Apple' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ,
'Apple' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' )),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ()))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' ),
'Child' => array ()));
2007-10-22 02:11:58 +00:00
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> Parent -> unbindModel ( array ( 'hasOne' => array ( 'Sample' )));
$this -> assertTrue ( $result );
$result = $this -> model -> unbindModel ( array ( 'hasMany' => array ( 'Child' )));
$this -> assertTrue ( $result );
$result = $this -> model -> findAll ();
$expected = array ( array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ,
'Apple' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ,
'Apple' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )));
2007-10-22 02:11:58 +00:00
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> unbindModel ( array ( 'hasMany' => array ( 'Child' )));
$this -> assertTrue ( $result );
$result = $this -> model -> Sample -> unbindModel ( array ( 'belongsTo' => array ( 'Apple' )));
$this -> assertTrue ( $result );
$result = $this -> model -> findAll ();
2008-01-11 03:16:19 +00:00
$expected = array (
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' )),
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' )),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' )),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' )),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )));
2007-10-22 02:11:58 +00:00
$this -> assertEqual ( $result , $expected );
$result = $this -> model -> Parent -> unbindModel ( array ( 'belongsTo' => array ( 'Parent' )));
$this -> assertTrue ( $result );
$result = $this -> model -> unbindModel ( array ( 'hasMany' => array ( 'Child' )));
$this -> assertTrue ( $result );
$result = $this -> model -> findAll ();
$expected = array ( array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ,
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2007-12-23 05:40:25 +00:00
'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => 1 , 'apple_id' => 3 , 'name' => 'sample1' ,
2007-12-23 05:40:25 +00:00
'Apple' => array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ),
2007-12-23 05:40:25 +00:00
'Parent' => array ( 'id' => 2 , 'apple_id' => 1 , 'color' => 'Bright Red 1' , 'name' => 'Bright Red Apple' , 'created' => '2006-11-22 10:43:13' , 'date' => '2014-01-01' , 'modified' => '2006-11-30 18:38:10' , 'mytime' => '22:57:17' ,
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => 2 , 'apple_id' => 2 , 'name' => 'sample2' ),
'Child' => array (
2007-12-23 05:40:25 +00:00
array ( 'id' => 1 , 'apple_id' => 2 , 'color' => 'Red 1' , 'name' => 'Red Apple 1' , 'created' => '2006-11-22 10:38:58' , 'date' => '1951-01-04' , 'modified' => '2006-12-01 13:31:26' , 'mytime' => '22:57:17' ),
array ( 'id' => 3 , 'apple_id' => 2 , 'color' => 'blue green' , 'name' => 'green blue' , 'created' => '2006-12-25 05:13:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:24' , 'mytime' => '22:57:17' ),
2008-01-11 03:16:19 +00:00
array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ,
'Apple' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ,
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
'Sample' => array ( 'id' => 4 , 'apple_id' => 5 , 'name' => 'sample4' ,
'Apple' => array ( 'id' => 5 , 'apple_id' => 5 , 'color' => 'Green' , 'name' => 'Blue Green' , 'created' => '2006-12-25 05:24:06' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:16' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 4 , 'apple_id' => 2 , 'color' => 'Blue Green' , 'name' => 'Test Name' , 'created' => '2006-12-25 05:23:36' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:23:36' , 'mytime' => '22:57:17' ,
'Sample' => array ( 'id' => 3 , 'apple_id' => 4 , 'name' => 'sample3' ),
2007-10-26 08:40:10 +00:00
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ))),
2007-10-22 02:11:58 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )),
array ( 'Apple' => array (
2008-01-11 03:16:19 +00:00
'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ),
'Parent' => array ( 'id' => 6 , 'apple_id' => 4 , 'color' => 'My new appleOrange' , 'name' => 'My new apple' , 'created' => '2006-12-25 05:29:39' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:29:39' , 'mytime' => '22:57:17' ,
2007-10-26 08:40:10 +00:00
'Sample' => array (),
'Child' => array (
2008-01-11 03:16:19 +00:00
array ( 'id' => 7 , 'apple_id' => 6 , 'color' => 'Some wierd color' , 'name' => 'Some odd color' , 'created' => '2006-12-25 05:34:21' , 'date' => '2006-12-25' , 'modified' => '2006-12-25 05:34:21' , 'mytime' => '22:57:17' ))),
2007-10-26 08:40:10 +00:00
'Sample' => array ( 'id' => '' , 'apple_id' => '' , 'name' => '' )));
2007-10-22 02:11:58 +00:00
$this -> assertEqual ( $result , $expected );
}
2007-10-22 22:58:38 +00:00
2007-10-24 16:07:36 +00:00
function testSelfAssociationAfterFind () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Apple' );
2007-10-22 02:11:58 +00:00
$afterFindModel = new NodeAfterFind ();
$afterFindModel -> recursive = 3 ;
2008-03-10 03:41:04 +00:00
$afterFindData = $afterFindModel -> find ( 'all' );
2007-10-22 02:11:58 +00:00
$duplicateModel = new NodeAfterFind ();
$duplicateModel -> recursive = 3 ;
2008-03-10 03:41:04 +00:00
$duplicateModelData = $duplicateModel -> find ( 'all' );
2007-10-22 02:11:58 +00:00
$noAfterFindModel = new NodeNoAfterFind ();
$noAfterFindModel -> recursive = 3 ;
2008-03-10 03:41:04 +00:00
$noAfterFindData = $noAfterFindModel -> find ( 'all' );
2007-10-22 02:11:58 +00:00
$this -> assertFalse ( $afterFindModel == $noAfterFindModel );
// Limitation of PHP 4 and PHP 5 > 5.1.6 when comparing recursive objects
if ( PHP_VERSION === '5.1.6' ) {
$this -> assertFalse ( $afterFindModel != $duplicateModel );
}
$this -> assertEqual ( $afterFindData , $noAfterFindData );
}
2007-10-22 20:58:55 +00:00
2008-02-26 06:20:16 +00:00
function testAutoSaveUuid () {
2008-03-01 03:12:12 +00:00
// SQLite does not support non-integer primary keys
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
if ( $db -> config [ 'driver' ] == 'sqlite' ) {
return ;
}
2008-02-26 06:20:16 +00:00
$this -> loadFixtures ( 'Uuid' );
$this -> model =& new Uuid ();
2008-03-01 05:15:53 +00:00
2008-02-26 06:20:16 +00:00
$this -> model -> save ( array ( 'title' => 'Test record' ));
$result = $this -> model -> findByTitle ( 'Test record' );
2008-03-08 17:27:32 +00:00
$this -> assertEqual ( array_keys ( $result [ 'Uuid' ]), array ( 'id' , 'title' , 'count' , 'created' , 'updated' ));
2008-02-26 06:20:16 +00:00
$this -> assertEqual ( strlen ( $result [ 'Uuid' ][ 'id' ]), 36 );
}
2008-03-08 17:27:32 +00:00
function testZeroDefaultFieldValue () {
2008-03-13 03:11:29 +00:00
$this -> loadFixtures ( 'DataTest' );
$this -> model =& new DataTest ();
2008-03-08 17:27:32 +00:00
2008-03-13 03:11:29 +00:00
$this -> model -> create ( array ( 'float' => '' )) && $this -> model -> save ();
2008-03-08 17:27:32 +00:00
$result = $this -> model -> findById ( $this -> model -> id );
2008-03-13 03:11:29 +00:00
$this -> assertIdentical ( $result [ 'DataTest' ][ 'count' ], '0' );
$this -> assertIdentical ( $result [ 'DataTest' ][ 'float' ], '0' );
2008-03-08 17:27:32 +00:00
}
2008-03-13 03:11:29 +00:00
function testNonNumericHabtmJoinKey () {
$this -> loadFixtures ( 'Post' , 'Tag' , 'PostsTag' );
$this -> Post =& new Post ();
$this -> Post -> bind ( 'Tag' , array ( 'type' => 'hasAndBelongsToMany' ));
$this -> Post -> Tag -> primaryKey = 'tag' ;
2008-01-03 18:50:59 +00:00
2008-03-13 03:11:29 +00:00
$result = $this -> Post -> find ( 'all' );
$expected = array (
array (
'Post' => array ( 'id' => '1' , 'author_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' ),
'Author' => array ( 'id' => null , 'user' => null , 'password' => null , 'created' => null , 'updated' => null , 'test' => 'working' ),
'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 (
'Post' => array ( 'id' => '2' , 'author_id' => '3' , 'title' => 'Second Post' , 'body' => 'Second Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ),
'Author' => array ( 'id' => null , 'user' => null , 'password' => null , 'created' => null , 'updated' => null , 'test' => 'working' ),
'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 (
'Post' => array ( 'id' => '3' , 'author_id' => '1' , 'title' => 'Third Post' , 'body' => 'Third Post Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' ),
'Author' => array ( 'id' => null , 'user' => null , 'password' => null , 'created' => null , 'updated' => null , 'test' => 'working' ),
'Tag' => array ()
)
);
$this -> assertEqual ( $result , $expected );
}
function testAfterFindAssociation () {
2008-01-01 23:57:17 +00:00
}
2007-12-14 04:21:58 +00:00
function testDeconstructFields () {
2008-01-11 06:45:00 +00:00
$this -> loadFixtures ( 'Apple' );
2007-12-14 04:21:58 +00:00
$this -> model =& new Apple ();
$data [ 'Apple' ][ 'created' ][ 'year' ] = '' ;
$data [ 'Apple' ][ 'created' ][ 'month' ] = '' ;
$data [ 'Apple' ][ 'created' ][ 'day' ] = '' ;
$data [ 'Apple' ][ 'created' ][ 'hour' ] = '' ;
$data [ 'Apple' ][ 'created' ][ 'min' ] = '' ;
$data [ 'Apple' ][ 'created' ][ 'sec' ] = '' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' ));
$this -> assertEqual ( $this -> model -> 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' ] = '' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '2007-08-20 00:00:00' ));
$this -> assertEqual ( $this -> model -> 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' ] = '' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '2007-08-20 10:12:00' ));
$this -> assertEqual ( $this -> model -> 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' ] = '' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' ));
$this -> assertEqual ( $this -> model -> data , $expected );
$data = array ();
$data [ 'Apple' ][ 'created' ][ 'hour' ] = '20' ;
$data [ 'Apple' ][ 'created' ][ 'min' ] = '33' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' ));
$this -> assertEqual ( $this -> model -> data , $expected );
$data = array ();
$data [ 'Apple' ][ 'created' ][ 'hour' ] = '20' ;
$data [ 'Apple' ][ 'created' ][ 'min' ] = '33' ;
$data [ 'Apple' ][ 'created' ][ 'sec' ] = '33' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' ));
$this -> assertEqual ( $this -> model -> 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' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' , 'date' => '2006-12-25' ));
$this -> assertEqual ( $this -> model -> 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' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '2007-08-20 10:12:09' , 'date' => '2006-12-25' ));
$this -> assertEqual ( $this -> model -> 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' ] = '--' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' , 'date' => '' ));
$this -> assertEqual ( $this -> model -> 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' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'created' => '' , 'date' => '2006-12-25' ));
$this -> assertEqual ( $this -> model -> data , $expected );
$data = array ();
$data [ 'Apple' ][ 'date' ][ 'year' ] = '2006' ;
$data [ 'Apple' ][ 'date' ][ 'month' ] = '12' ;
$data [ 'Apple' ][ 'date' ][ 'day' ] = '25' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'date' => '2006-12-25' ));
$this -> assertEqual ( $this -> model -> data , $expected );
2007-12-23 05:40:25 +00:00
$data = array ();
$data [ 'Apple' ][ 'mytime' ][ 'hour' ] = '03' ;
$data [ 'Apple' ][ 'mytime' ][ 'min' ] = '04' ;
$data [ 'Apple' ][ 'mytime' ][ 'sec' ] = '04' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'mytime' => '03:04:04' ));
$this -> assertEqual ( $this -> model -> data , $expected );
$data = array ();
$data [ 'Apple' ][ 'mytime' ][ 'hour' ] = '3' ;
$data [ 'Apple' ][ 'mytime' ][ 'min' ] = '4' ;
$data [ 'Apple' ][ 'mytime' ][ 'sec' ] = '4' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
2008-02-21 15:36:13 +00:00
$expected = array ( 'Apple' => array ( 'mytime' => '03:04:04' ));
2007-12-23 05:40:25 +00:00
$this -> assertEqual ( $this -> model -> data , $expected );
$data = array ();
$data [ 'Apple' ][ 'mytime' ][ 'hour' ] = '03' ;
$data [ 'Apple' ][ 'mytime' ][ 'min' ] = '4' ;
$data [ 'Apple' ][ 'mytime' ][ 'sec' ] = '4' ;
$this -> model -> data = null ;
$this -> model -> set ( $data );
$expected = array ( 'Apple' => array ( 'mytime' => '03:04:04' ));
$this -> assertEqual ( $this -> model -> data , $expected );
2007-12-14 04:21:58 +00:00
}
2008-03-01 05:15:53 +00:00
function testTablePrefixSwitching () {
$db =& ConnectionManager :: getDataSource ( 'test_suite' );
ConnectionManager :: create ( 'database1' , array_merge ( $db -> config , array ( 'prefix' => 'aaa_' )));
ConnectionManager :: create ( 'database2' , array_merge ( $db -> config , array ( 'prefix' => 'bbb_' )));
$db1 = ConnectionManager :: getDataSource ( 'database1' );
$db2 = ConnectionManager :: getDataSource ( 'database2' );
$this -> model = new Apple ();
$this -> model -> setDataSource ( 'database1' );
$this -> assertEqual ( $db -> fullTableName ( $this -> model , false ), 'aaa_apples' );
$this -> assertEqual ( $db1 -> fullTableName ( $this -> model , false ), 'aaa_apples' );
$this -> assertEqual ( $db2 -> fullTableName ( $this -> model , false ), 'aaa_apples' );
$this -> model -> setDataSource ( 'database2' );
$this -> assertEqual ( $db -> fullTableName ( $this -> model , false ), 'bbb_apples' );
$this -> assertEqual ( $db1 -> fullTableName ( $this -> model , false ), 'bbb_apples' );
$this -> assertEqual ( $db2 -> fullTableName ( $this -> model , false ), 'bbb_apples' );
$this -> model = new Apple ();
$this -> model -> tablePrefix = 'custom_' ;
$this -> assertEqual ( $db -> fullTableName ( $this -> model , false ), 'custom_apples' );
$this -> model -> setDataSource ( 'database1' );
$this -> assertEqual ( $db -> fullTableName ( $this -> model , false ), 'custom_apples' );
$this -> assertEqual ( $db1 -> fullTableName ( $this -> model , false ), 'custom_apples' );
}
2008-01-28 18:56:22 +00:00
function testDynamicBehaviorAttachment () {
$this -> loadFixtures ( 'Apple' );
$this -> model =& new Apple ();
2008-02-21 15:36:13 +00:00
$this -> assertEqual ( $this -> model -> Behaviors -> attached (), array ());
2008-01-28 18:56:22 +00:00
2008-02-21 15:36:13 +00:00
$this -> model -> Behaviors -> attach ( 'Tree' , array ( 'left' => 'left_field' , 'right' => 'right_field' ));
$this -> assertTrue ( is_object ( $this -> model -> Behaviors -> Tree ));
$this -> assertEqual ( $this -> model -> Behaviors -> attached (), array ( 'Tree' ));
2008-01-28 18:56:22 +00:00
$expected = array ( 'parent' => 'parent_id' , 'left' => 'left_field' , 'right' => 'right_field' , 'scope' => '1 = 1' , 'enabled' => true , 'type' => 'nested' , '__parentChange' => false );
2008-02-21 15:36:13 +00:00
$this -> assertEqual ( $this -> model -> Behaviors -> Tree -> settings [ 'Apple' ], $expected );
2008-01-28 18:56:22 +00:00
$expected [ 'enabled' ] = false ;
2008-02-21 15:36:13 +00:00
$this -> model -> Behaviors -> attach ( 'Tree' , array ( 'enabled' => false ));
$this -> assertEqual ( $this -> model -> Behaviors -> Tree -> settings [ 'Apple' ], $expected );
$this -> assertEqual ( $this -> model -> Behaviors -> attached (), array ( 'Tree' ));
2008-01-28 18:56:22 +00:00
2008-02-21 15:36:13 +00:00
$this -> model -> Behaviors -> detach ( 'Tree' );
$this -> assertEqual ( $this -> model -> Behaviors -> attached (), array ());
$this -> assertFalse ( isset ( $this -> model -> Behaviors -> Tree ));
2008-01-28 18:56:22 +00:00
}
2008-03-07 01:29:19 +00:00
/**
* 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 .
*/
function testCrossDatabaseJoins () {
$config = new DATABASE_CONFIG ();
if ( ! isset ( $config -> test ) || ! isset ( $config -> test2 )) {
echo " <br />Primary and secondary test databases not configured, skipping cross-database join tests<br /> " ;
return ;
}
$this -> loadFixtures ( 'Article' , 'Tag' , 'ArticlesTag' , 'User' , 'Comment' );
$this -> model =& new Article ();
$expected = array (
array (
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Comment' => array (
array ( 'id' => '1' , 'article_id' => '1' , 'user_id' => '2' , 'comment' => 'First Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:45:23' , 'updated' => '2007-03-18 10:47:31' ),
array ( 'id' => '2' , 'article_id' => '1' , 'user_id' => '4' , 'comment' => 'Second Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:47:23' , 'updated' => '2007-03-18 10:49:31' ),
array ( 'id' => '3' , 'article_id' => '1' , 'user_id' => '1' , 'comment' => 'Third Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:49:23' , 'updated' => '2007-03-18 10:51:31' ),
array ( 'id' => '4' , 'article_id' => '1' , 'user_id' => '1' , 'comment' => 'Fourth Comment for First Article' , 'published' => 'N' , 'created' => '2007-03-18 10:51:23' , 'updated' => '2007-03-18 10:53:31' )
),
'Tag' => array (
array ( 'id' => '1' , 'tag' => 'tag1' , 'created' => '2007-03-18 12:22:23' , 'updated' => '2007-03-18 12:24:31' ),
array ( 'id' => '2' , 'tag' => 'tag2' , 'created' => '2007-03-18 12:24:23' , 'updated' => '2007-03-18 12:26:31' )
)
),
array (
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'Second Article' , 'body' => 'Second Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' ),
'User' => array ( 'id' => '3' , 'user' => 'larry' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:20:23' , 'updated' => '2007-03-17 01:22:31' ),
'Comment' => array (
array ( 'id' => '5' , 'article_id' => '2' , 'user_id' => '1' , 'comment' => 'First Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:53:23' , 'updated' => '2007-03-18 10:55:31' ),
array ( 'id' => '6' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:55:23' , 'updated' => '2007-03-18 10:57:31' )
),
'Tag' => array (
array ( 'id' => '1' , 'tag' => 'tag1' , 'created' => '2007-03-18 12:22:23' , 'updated' => '2007-03-18 12:24:31' ),
array ( 'id' => '3' , 'tag' => 'tag3' , 'created' => '2007-03-18 12:26:23' , 'updated' => '2007-03-18 12:28:31' )
)
),
array (
'Article' => array ( 'id' => '3' , 'user_id' => '1' , 'title' => 'Third Article' , 'body' => 'Third Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:43:23' , 'updated' => '2007-03-18 10:45:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Comment' => array (),
'Tag' => array ()
)
);
$this -> assertEqual ( $this -> model -> find ( 'all' ), $expected );
$db2 =& ConnectionManager :: getDataSource ( 'test2' );
foreach ( array ( 'User' , 'Comment' ) as $class ) {
$this -> _fixtures [ $this -> _fixtureClassMap [ $class ]] -> create ( $db2 );
$this -> _fixtures [ $this -> _fixtureClassMap [ $class ]] -> insert ( $db2 );
$this -> db -> truncate ( Inflector :: pluralize ( Inflector :: underscore ( $class )));
}
$this -> assertEqual ( $this -> model -> User -> find ( 'all' ), array ());
$this -> assertEqual ( $this -> model -> Comment -> find ( 'all' ), array ());
$this -> assertEqual ( $this -> model -> find ( 'count' ), 3 );
$this -> model -> User -> setDataSource ( 'test2' );
$this -> model -> Comment -> setDataSource ( 'test2' );
$result = Set :: extract ( $this -> model -> User -> find ( 'all' ), '{n}.User.id' );
$this -> assertEqual ( $result , array ( '1' , '2' , '3' , '4' ));
$this -> assertEqual ( $this -> model -> find ( 'all' ), $expected );
$this -> model -> Comment -> unbindModel ( array ( 'hasOne' => array ( 'Attachment' )));
$expected = array (
array (
'Comment' => array ( 'id' => '1' , 'article_id' => '1' , 'user_id' => '2' , 'comment' => 'First Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:45:23' , 'updated' => '2007-03-18 10:47:31' ),
'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ),
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )
),
array (
'Comment' => array ( 'id' => '2' , 'article_id' => '1' , 'user_id' => '4' , 'comment' => 'Second Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:47:23' , 'updated' => '2007-03-18 10:49:31' ),
'User' => array ( 'id' => '4' , 'user' => 'garrett' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:22:23' , 'updated' => '2007-03-17 01:24:31' ),
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )
),
array (
'Comment' => array ( 'id' => '3' , 'article_id' => '1' , 'user_id' => '1' , 'comment' => 'Third Comment for First Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:49:23' , 'updated' => '2007-03-18 10:51:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )
),
array (
'Comment' => array ( 'id' => '4' , 'article_id' => '1' , 'user_id' => '1' , 'comment' => 'Fourth Comment for First Article' , 'published' => 'N' , 'created' => '2007-03-18 10:51:23' , 'updated' => '2007-03-18 10:53:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Article' => array ( 'id' => '1' , 'user_id' => '1' , 'title' => 'First Article' , 'body' => 'First Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:39:23' , 'updated' => '2007-03-18 10:41:31' )
),
array (
'Comment' => array ( 'id' => '5' , 'article_id' => '2' , 'user_id' => '1' , 'comment' => 'First Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:53:23' , 'updated' => '2007-03-18 10:55:31' ),
'User' => array ( 'id' => '1' , 'user' => 'mariano' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:16:23' , 'updated' => '2007-03-17 01:18:31' ),
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'Second Article' , 'body' => 'Second Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' )
),
array (
'Comment' => array ( 'id' => '6' , 'article_id' => '2' , 'user_id' => '2' , 'comment' => 'Second Comment for Second Article' , 'published' => 'Y' , 'created' => '2007-03-18 10:55:23' , 'updated' => '2007-03-18 10:57:31' ),
'User' => array ( 'id' => '2' , 'user' => 'nate' , 'password' => '5f4dcc3b5aa765d61d8327deb882cf99' , 'created' => '2007-03-17 01:18:23' , 'updated' => '2007-03-17 01:20:31' ),
'Article' => array ( 'id' => '2' , 'user_id' => '3' , 'title' => 'Second Article' , 'body' => 'Second Article Body' , 'published' => 'Y' , 'created' => '2007-03-18 10:41:23' , 'updated' => '2007-03-18 10:43:31' )
)
);
$this -> assertEqual ( $this -> model -> Comment -> find ( 'all' ), $expected );
foreach ( array ( 'User' , 'Comment' ) as $class ) {
2008-03-09 06:24:40 +00:00
$this -> _fixtures [ $this -> _fixtureClassMap [ $class ]] -> drop ( $db2 );
2008-03-07 01:29:19 +00:00
}
}
2007-10-22 20:58:55 +00:00
function endTest () {
ClassRegistry :: flush ();
}
2007-06-03 21:54:11 +00:00
}
2007-12-19 02:05:15 +00:00
2007-10-22 22:58:38 +00:00
?>