Adding test for reopened Ticket #2613.

Test proves the ticket comment that reopened it is invalid

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5599 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-08-29 02:56:53 +00:00
parent 981c117ae6
commit f053eb7d26

View file

@ -56,7 +56,7 @@ class Test extends Model {
array('name' => 'updated', 'type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null) array('name' => 'updated', 'type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null)
)); ));
} }
function schema() { function schema() {
return new Set(array( return new Set(array(
'id'=> array('type' => 'integer', 'null' => '', 'default' => '1', 'length' => '8', 'key'=>'primary'), 'id'=> array('type' => 'integer', 'null' => '', 'default' => '1', 'length' => '8', 'key'=>'primary'),
@ -373,6 +373,35 @@ class Bid extends CakeTestModel {
var $name = 'Bid'; var $name = 'Bid';
var $belongsTo = array('Message'); var $belongsTo = array('Message');
} }
class NodeAfterFind extends CakeTestModel {
var $name = 'NodeAfterFind';
var $validate = array('name' => VALID_NOT_EMPTY);
var $useTable = 'apples';
var $hasOne = array('Sample');
var $hasMany = array('Child' => array(
'className' => 'NodeAfterFind',
'dependent' => true));
var $belongsTo = array('Parent' => array(
'className' => 'NodeAfterFind',
'foreignKey' => 'apple_id'));
function afterFind($results) {
return $results;
}
}
class NodeNoAfterFind extends CakeTestModel {
var $name = 'NodeAfterFind';
var $validate = array('name' => VALID_NOT_EMPTY);
var $useTable = 'apples';
var $hasOne = array('Sample');
var $hasMany = array('Child' => array(
'className' => 'NodeAfterFind',
'dependent' => true));
var $belongsTo = array('Parent' => array(
'className' => 'NodeAfterFind',
'foreignKey' => 'apple_id'));
}
/** /**
* Short description for class. * Short description for class.
* *
@ -1396,6 +1425,17 @@ function testRecursiveFindAllWithLimit() {
$this->assertEqual($result, $expected); $this->assertEqual($result, $expected);
} }
function testSelFAssociationAfterFind() {
$afterFindModel =& new NodeAfterFind();
$afterFindData = $afterFindModel->findAll();
$noAfterFindModel =& new NodeNoAfterFind();
$noAfterFindData = $noAfterFindModel->findAll();
$this->assertNotEqual($afterFindModel, $noAfterFindModel);
$this->assertEqual($afterFindData, $noAfterFindData);
}
function testValidatesBackwards() { function testValidatesBackwards() {
$this->model =& new TestValidate(); $this->model =& new TestValidate();