1226 lines
37 KiB
PHP
Executable File
1226 lines
37 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* ModelTaskTest file
|
|
*
|
|
* Test Case for test generation shell task
|
|
*
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP Project
|
|
* @package Cake.Test.Case.Console.Command.Task
|
|
* @since CakePHP v 1.2.6
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
*/
|
|
|
|
App::uses('ShellDispatcher', 'Console');
|
|
App::uses('Shell', 'Console');
|
|
App::uses('ConsoleOutput', 'Console');
|
|
App::uses('ConsoleInput', 'Console');
|
|
App::uses('FixtureTask', 'Console/Command/Task');
|
|
App::uses('TemplateTask', 'Console/Command/Task');
|
|
App::uses('ModelTask', 'Console/Command/Task');
|
|
|
|
/**
|
|
* ModelTaskTest class
|
|
*
|
|
* @package Cake.Test.Case.Console.Command.Task
|
|
*/
|
|
class ModelTaskTest extends CakeTestCase {
|
|
|
|
/**
|
|
* fixtures
|
|
*
|
|
* @var array
|
|
*/
|
|
public $fixtures = array(
|
|
'core.bake_article', 'core.bake_comment', 'core.bake_articles_bake_tag',
|
|
'core.bake_tag', 'core.category_thread', 'core.number_tree'
|
|
);
|
|
|
|
/**
|
|
* setUp method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', 'createFile', '_stop', '_checkUnitTest'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
}
|
|
|
|
/**
|
|
* Setup a mock that has out mocked. Normally this is not used as it makes $this->at() really tricky.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function _useMockedOut() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'out', 'err', 'hr', 'createFile', '_stop', '_checkUnitTest'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
}
|
|
|
|
/**
|
|
* sets up the rest of the dependencies for Model Task
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function _setupOtherMocks() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
|
|
$this->Task->Fixture = $this->getMock('FixtureTask', array(), array($out, $out, $in));
|
|
$this->Task->Test = $this->getMock('FixtureTask', array(), array($out, $out, $in));
|
|
$this->Task->Template = new TemplateTask($out, $out, $in);
|
|
|
|
$this->Task->name = 'Model';
|
|
$this->Task->interactive = true;
|
|
}
|
|
|
|
/**
|
|
* tearDown method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function tearDown() {
|
|
parent::tearDown();
|
|
unset($this->Task);
|
|
}
|
|
|
|
/**
|
|
* Test that listAll scans the database connection and lists all the tables in it.s
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testListAllArgument() {
|
|
$this->_useMockedOut();
|
|
|
|
$result = $this->Task->listAll('test');
|
|
$this->assertContains('bake_articles', $result);
|
|
$this->assertContains('bake_articles_bake_tags', $result);
|
|
$this->assertContains('bake_tags', $result);
|
|
$this->assertContains('bake_comments', $result);
|
|
$this->assertContains('category_threads', $result);
|
|
}
|
|
|
|
/**
|
|
* Test that listAll uses the connection property
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testListAllConnection() {
|
|
$this->_useMockedOut();
|
|
|
|
$this->Task->connection = 'test';
|
|
$result = $this->Task->listAll();
|
|
$this->assertContains('bake_articles', $result);
|
|
$this->assertContains('bake_articles_bake_tags', $result);
|
|
$this->assertContains('bake_tags', $result);
|
|
$this->assertContains('bake_comments', $result);
|
|
$this->assertContains('category_threads', $result);
|
|
}
|
|
|
|
/**
|
|
* Test that getName interacts with the user and returns the model name.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetNameQuit() {
|
|
$this->Task->expects($this->once())->method('in')->will($this->returnValue('q'));
|
|
$this->Task->expects($this->once())->method('_stop');
|
|
$this->Task->getName('test');
|
|
}
|
|
|
|
/**
|
|
* test getName with a valid option.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetNameValidOption() {
|
|
$listing = $this->Task->listAll('test');
|
|
$this->Task->expects($this->any())->method('in')->will($this->onConsecutiveCalls(1, 4));
|
|
|
|
$result = $this->Task->getName('test');
|
|
$this->assertEquals(Inflector::classify($listing[0]), $result);
|
|
|
|
$result = $this->Task->getName('test');
|
|
$this->assertEquals(Inflector::classify($listing[3]), $result);
|
|
}
|
|
|
|
/**
|
|
* test that an out of bounds option causes an error.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetNameWithOutOfBoundsOption() {
|
|
$this->Task->expects($this->any())->method('in')->will($this->onConsecutiveCalls(99, 1));
|
|
$this->Task->expects($this->once())->method('err');
|
|
|
|
$this->Task->getName('test');
|
|
}
|
|
|
|
/**
|
|
* Test table name interactions
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableName() {
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('y'));
|
|
$result = $this->Task->getTable('BakeArticle', 'test');
|
|
$expected = 'bake_articles';
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test getting a custom table name.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableNameCustom() {
|
|
$this->Task->expects($this->any())->method('in')->will($this->onConsecutiveCalls('n', 'my_table'));
|
|
$result = $this->Task->getTable('BakeArticle', 'test');
|
|
$expected = 'my_table';
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test getTable with non-conventional tablenames
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableOddTableInteractive() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->interactive = true;
|
|
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('articles', 'bake_odd')));
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls(
|
|
2 // bake_odd
|
|
));
|
|
|
|
$result = $this->Task->getName();
|
|
$expected = 'BakeOdd';
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->getTable($result);
|
|
$expected = 'bake_odd';
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test getTable with non-conventional tablenames
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGetTableOddTable() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->interactive = false;
|
|
$this->Task->args = array('BakeOdd');
|
|
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('articles', 'bake_odd')));
|
|
|
|
$this->Task->listAll();
|
|
|
|
$result = $this->Task->getTable('BakeOdd');
|
|
$expected = 'bake_odd';
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that initializing the validations works.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInitValidations() {
|
|
$result = $this->Task->initValidations();
|
|
$this->assertTrue(in_array('notEmpty', $result));
|
|
}
|
|
|
|
/**
|
|
* test that individual field validation works, with interactive = false
|
|
* tests the guessing features of validation
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFieldValidationGuessing() {
|
|
$this->Task->interactive = false;
|
|
$this->Task->initValidations();
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
|
|
$expected = array('notEmpty' => 'notEmpty');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'date', 'length' => 10, 'null' => false));
|
|
$expected = array('date' => 'date');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'time', 'length' => 10, 'null' => false));
|
|
$expected = array('time' => 'time');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->fieldValidation('email', array('type' => 'string', 'length' => 10, 'null' => false));
|
|
$expected = array('email' => 'email');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->fieldValidation('test', array('type' => 'integer', 'length' => 10, 'null' => false));
|
|
$expected = array('numeric' => 'numeric');
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$result = $this->Task->fieldValidation('test', array('type' => 'boolean', 'length' => 10, 'null' => false));
|
|
$expected = array('boolean' => 'boolean');
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that interactive field validation works and returns multiple validators.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInteractiveFieldValidation() {
|
|
$this->Task->initValidations();
|
|
$this->Task->interactive = true;
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls('24', 'y', '18', 'n'));
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
|
|
$expected = array('notEmpty' => 'notEmpty', 'maxLength' => 'maxLength');
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that a bogus response doesn't cause errors to bubble up.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInteractiveFieldValidationWithBogusResponse() {
|
|
$this->_useMockedOut();
|
|
$this->Task->initValidations();
|
|
$this->Task->interactive = true;
|
|
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls('999999', '24', 'n'));
|
|
|
|
$this->Task->expects($this->at(10))->method('out')
|
|
->with($this->stringContains('make a valid'));
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
|
|
$expected = array('notEmpty' => 'notEmpty');
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that a regular expression can be used for validation.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInteractiveFieldValidationWithRegexp() {
|
|
$this->Task->initValidations();
|
|
$this->Task->interactive = true;
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls('/^[a-z]{0,9}$/', 'n'));
|
|
|
|
$result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
|
|
$expected = array('a_z_0_9' => '/^[a-z]{0,9}$/');
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test the validation Generation routine
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testNonInteractiveDoValidation() {
|
|
$Model = $this->getMock('Model');
|
|
$Model->primaryKey = 'id';
|
|
$Model->expects($this->any())->method('schema')->will($this->returnValue(array(
|
|
'id' => array(
|
|
'type' => 'integer',
|
|
'length' => 11,
|
|
'null' => false,
|
|
'key' => 'primary',
|
|
),
|
|
'name' => array(
|
|
'type' => 'string',
|
|
'length' => 20,
|
|
'null' => false,
|
|
),
|
|
'email' => array(
|
|
'type' => 'string',
|
|
'length' => 255,
|
|
'null' => false,
|
|
),
|
|
'some_date' => array(
|
|
'type' => 'date',
|
|
'length' => '',
|
|
'null' => false,
|
|
),
|
|
'some_time' => array(
|
|
'type' => 'time',
|
|
'length' => '',
|
|
'null' => false,
|
|
),
|
|
'created' => array(
|
|
'type' => 'datetime',
|
|
'length' => '',
|
|
'null' => false,
|
|
)
|
|
)));
|
|
$this->Task->interactive = false;
|
|
|
|
$result = $this->Task->doValidation($Model);
|
|
$expected = array(
|
|
'name' => array(
|
|
'notEmpty' => 'notEmpty'
|
|
),
|
|
'email' => array(
|
|
'email' => 'email',
|
|
),
|
|
'some_date' => array(
|
|
'date' => 'date'
|
|
),
|
|
'some_time' => array(
|
|
'time' => 'time'
|
|
),
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that finding primary key works
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFindPrimaryKey() {
|
|
$fields = array(
|
|
'one' => array(),
|
|
'two' => array(),
|
|
'key' => array('key' => 'primary')
|
|
);
|
|
$anything = new PHPUnit_Framework_Constraint_IsAnything();
|
|
$this->Task->expects($this->once())->method('in')
|
|
->with($anything, null, 'key')
|
|
->will($this->returnValue('my_field'));
|
|
|
|
$result = $this->Task->findPrimaryKey($fields);
|
|
$expected = 'my_field';
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test finding Display field
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFindDisplayFieldNone() {
|
|
$fields = array(
|
|
'id' => array(), 'tagname' => array(), 'body' => array(),
|
|
'created' => array(), 'modified' => array()
|
|
);
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('n'));
|
|
$result = $this->Task->findDisplayField($fields);
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* Test finding a displayname from user input
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFindDisplayName() {
|
|
$fields = array(
|
|
'id' => array(), 'tagname' => array(), 'body' => array(),
|
|
'created' => array(), 'modified' => array()
|
|
);
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls('y', 2));
|
|
|
|
$result = $this->Task->findDisplayField($fields);
|
|
$this->assertEquals('tagname', $result);
|
|
}
|
|
|
|
/**
|
|
* test that belongsTo generation works.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBelongsToGeneration() {
|
|
$model = new Model(array('ds' => 'test', 'name' => 'BakeComment'));
|
|
$result = $this->Task->findBelongsTo($model, array());
|
|
$expected = array(
|
|
'belongsTo' => array(
|
|
array(
|
|
'alias' => 'BakeArticle',
|
|
'className' => 'BakeArticle',
|
|
'foreignKey' => 'bake_article_id',
|
|
),
|
|
array(
|
|
'alias' => 'BakeUser',
|
|
'className' => 'BakeUser',
|
|
'foreignKey' => 'bake_user_id',
|
|
),
|
|
)
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$model = new Model(array('ds' => 'test', 'name' => 'CategoryThread'));
|
|
$result = $this->Task->findBelongsTo($model, array());
|
|
$expected = array(
|
|
'belongsTo' => array(
|
|
array(
|
|
'alias' => 'ParentCategoryThread',
|
|
'className' => 'CategoryThread',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
)
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that hasOne and/or hasMany relations are generated properly.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testHasManyHasOneGeneration() {
|
|
$model = new Model(array('ds' => 'test', 'name' => 'BakeArticle'));
|
|
$this->Task->connection = 'test';
|
|
$this->Task->listAll();
|
|
$result = $this->Task->findHasOneAndMany($model, array());
|
|
$expected = array(
|
|
'hasMany' => array(
|
|
array(
|
|
'alias' => 'BakeComment',
|
|
'className' => 'BakeComment',
|
|
'foreignKey' => 'bake_article_id',
|
|
),
|
|
),
|
|
'hasOne' => array(
|
|
array(
|
|
'alias' => 'BakeComment',
|
|
'className' => 'BakeComment',
|
|
'foreignKey' => 'bake_article_id',
|
|
),
|
|
),
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
|
|
$model = new Model(array('ds' => 'test', 'name' => 'CategoryThread'));
|
|
$result = $this->Task->findHasOneAndMany($model, array());
|
|
$expected = array(
|
|
'hasOne' => array(
|
|
array(
|
|
'alias' => 'ChildCategoryThread',
|
|
'className' => 'CategoryThread',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
),
|
|
'hasMany' => array(
|
|
array(
|
|
'alias' => 'ChildCategoryThread',
|
|
'className' => 'CategoryThread',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
)
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* Test that HABTM generation works
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testHasAndBelongsToManyGeneration() {
|
|
$model = new Model(array('ds' => 'test', 'name' => 'BakeArticle'));
|
|
$this->Task->connection = 'test';
|
|
$this->Task->listAll();
|
|
$result = $this->Task->findHasAndBelongsToMany($model, array());
|
|
$expected = array(
|
|
'hasAndBelongsToMany' => array(
|
|
array(
|
|
'alias' => 'BakeTag',
|
|
'className' => 'BakeTag',
|
|
'foreignKey' => 'bake_article_id',
|
|
'joinTable' => 'bake_articles_bake_tags',
|
|
'associationForeignKey' => 'bake_tag_id',
|
|
),
|
|
),
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test non interactive doAssociations
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testDoAssociationsNonInteractive() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->interactive = false;
|
|
$model = new Model(array('ds' => 'test', 'name' => 'BakeArticle'));
|
|
$result = $this->Task->doAssociations($model);
|
|
$expected = array(
|
|
'belongsTo' => array(
|
|
array(
|
|
'alias' => 'BakeUser',
|
|
'className' => 'BakeUser',
|
|
'foreignKey' => 'bake_user_id',
|
|
),
|
|
),
|
|
'hasMany' => array(
|
|
array(
|
|
'alias' => 'BakeComment',
|
|
'className' => 'BakeComment',
|
|
'foreignKey' => 'bake_article_id',
|
|
),
|
|
),
|
|
'hasAndBelongsToMany' => array(
|
|
array(
|
|
'alias' => 'BakeTag',
|
|
'className' => 'BakeTag',
|
|
'foreignKey' => 'bake_article_id',
|
|
'joinTable' => 'bake_articles_bake_tags',
|
|
'associationForeignKey' => 'bake_tag_id',
|
|
),
|
|
),
|
|
);
|
|
$this->assertEquals($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test non interactive doActsAs
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testDoActsAs() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->interactive = false;
|
|
$model = new Model(array('ds' => 'test', 'name' => 'NumberTree'));
|
|
$result = $this->Task->doActsAs($model);
|
|
|
|
$this->assertEquals(array('Tree'), $result);
|
|
}
|
|
|
|
/**
|
|
* Ensure that the fixture object is correctly called.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeFixture() {
|
|
$this->Task->plugin = 'TestPlugin';
|
|
$this->Task->interactive = true;
|
|
$this->Task->Fixture->expects($this->at(0))->method('bake')->with('BakeArticle', 'bake_articles');
|
|
$this->Task->bakeFixture('BakeArticle', 'bake_articles');
|
|
|
|
$this->assertEquals($this->Task->plugin, $this->Task->Fixture->plugin);
|
|
$this->assertEquals($this->Task->connection, $this->Task->Fixture->connection);
|
|
$this->assertEquals($this->Task->interactive, $this->Task->Fixture->interactive);
|
|
}
|
|
|
|
/**
|
|
* Ensure that the test object is correctly called.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeTest() {
|
|
$this->Task->plugin = 'TestPlugin';
|
|
$this->Task->interactive = true;
|
|
$this->Task->Test->expects($this->at(0))->method('bake')->with('Model', 'BakeArticle');
|
|
$this->Task->bakeTest('BakeArticle');
|
|
|
|
$this->assertEquals($this->Task->plugin, $this->Task->Test->plugin);
|
|
$this->assertEquals($this->Task->connection, $this->Task->Test->connection);
|
|
$this->assertEquals($this->Task->interactive, $this->Task->Test->interactive);
|
|
}
|
|
|
|
/**
|
|
* test confirming of associations, and that when an association is hasMany
|
|
* a question for the hasOne is also not asked.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testConfirmAssociations() {
|
|
$associations = array(
|
|
'hasOne' => array(
|
|
array(
|
|
'alias' => 'ChildCategoryThread',
|
|
'className' => 'CategoryThread',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
),
|
|
'hasMany' => array(
|
|
array(
|
|
'alias' => 'ChildCategoryThread',
|
|
'className' => 'CategoryThread',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
),
|
|
'belongsTo' => array(
|
|
array(
|
|
'alias' => 'User',
|
|
'className' => 'User',
|
|
'foreignKey' => 'user_id',
|
|
),
|
|
)
|
|
);
|
|
$model = new Model(array('ds' => 'test', 'name' => 'CategoryThread'));
|
|
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls('n', 'y', 'n', 'n', 'n'));
|
|
|
|
$result = $this->Task->confirmAssociations($model, $associations);
|
|
$this->assertTrue(empty($result['hasOne']));
|
|
|
|
$result = $this->Task->confirmAssociations($model, $associations);
|
|
$this->assertTrue(empty($result['hasMany']));
|
|
$this->assertTrue(empty($result['hasOne']));
|
|
}
|
|
|
|
/**
|
|
* test that inOptions generates questions and only accepts a valid answer
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInOptions() {
|
|
$this->_useMockedOut();
|
|
|
|
$options = array('one', 'two', 'three');
|
|
$this->Task->expects($this->at(0))->method('out')->with('1. one');
|
|
$this->Task->expects($this->at(1))->method('out')->with('2. two');
|
|
$this->Task->expects($this->at(2))->method('out')->with('3. three');
|
|
$this->Task->expects($this->at(3))->method('in')->will($this->returnValue(10));
|
|
|
|
$this->Task->expects($this->at(4))->method('out')->with('1. one');
|
|
$this->Task->expects($this->at(5))->method('out')->with('2. two');
|
|
$this->Task->expects($this->at(6))->method('out')->with('3. three');
|
|
$this->Task->expects($this->at(7))->method('in')->will($this->returnValue(2));
|
|
$result = $this->Task->inOptions($options, 'Pick a number');
|
|
$this->assertEquals(1, $result);
|
|
}
|
|
|
|
/**
|
|
* test baking validation
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeValidation() {
|
|
$validate = array(
|
|
'name' => array(
|
|
'notempty' => 'notEmpty'
|
|
),
|
|
'email' => array(
|
|
'email' => 'email',
|
|
),
|
|
'some_date' => array(
|
|
'date' => 'date'
|
|
),
|
|
'some_time' => array(
|
|
'time' => 'time'
|
|
)
|
|
);
|
|
$result = $this->Task->bake('BakeArticle', compact('validate'));
|
|
$this->assertRegExp('/class BakeArticle extends AppModel \{/', $result);
|
|
$this->assertRegExp('/\$validate \= array\(/', $result);
|
|
$expected = <<< STRINGEND
|
|
array(
|
|
'notempty' => array(
|
|
'rule' => array('notEmpty'),
|
|
//'message' => 'Your custom message here',
|
|
//'allowEmpty' => false,
|
|
//'required' => false,
|
|
//'last' => false, // Stop validation after this rule
|
|
//'on' => 'create', // Limit validation to 'create' or 'update' operations
|
|
),
|
|
STRINGEND;
|
|
$this->assertRegExp('/' . preg_quote(str_replace("\r\n", "\n", $expected), '/') . '/', $result);
|
|
}
|
|
|
|
/**
|
|
* test baking relations
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeRelations() {
|
|
$associations = array(
|
|
'belongsTo' => array(
|
|
array(
|
|
'alias' => 'SomethingElse',
|
|
'className' => 'SomethingElse',
|
|
'foreignKey' => 'something_else_id',
|
|
),
|
|
array(
|
|
'alias' => 'BakeUser',
|
|
'className' => 'BakeUser',
|
|
'foreignKey' => 'bake_user_id',
|
|
),
|
|
),
|
|
'hasOne' => array(
|
|
array(
|
|
'alias' => 'OtherModel',
|
|
'className' => 'OtherModel',
|
|
'foreignKey' => 'other_model_id',
|
|
),
|
|
),
|
|
'hasMany' => array(
|
|
array(
|
|
'alias' => 'BakeComment',
|
|
'className' => 'BakeComment',
|
|
'foreignKey' => 'parent_id',
|
|
),
|
|
),
|
|
'hasAndBelongsToMany' => array(
|
|
array(
|
|
'alias' => 'BakeTag',
|
|
'className' => 'BakeTag',
|
|
'foreignKey' => 'bake_article_id',
|
|
'joinTable' => 'bake_articles_bake_tags',
|
|
'associationForeignKey' => 'bake_tag_id',
|
|
),
|
|
)
|
|
);
|
|
$result = $this->Task->bake('BakeArticle', compact('associations'));
|
|
$this->assertContains(' * @property BakeUser $BakeUser', $result);
|
|
$this->assertContains(' * @property OtherModel $OtherModel', $result);
|
|
$this->assertContains(' * @property BakeComment $BakeComment', $result);
|
|
$this->assertContains(' * @property BakeTag $BakeTag', $result);
|
|
$this->assertRegExp('/\$hasAndBelongsToMany \= array\(/', $result);
|
|
$this->assertRegExp('/\$hasMany \= array\(/', $result);
|
|
$this->assertRegExp('/\$belongsTo \= array\(/', $result);
|
|
$this->assertRegExp('/\$hasOne \= array\(/', $result);
|
|
$this->assertRegExp('/BakeTag/', $result);
|
|
$this->assertRegExp('/OtherModel/', $result);
|
|
$this->assertRegExp('/SomethingElse/', $result);
|
|
$this->assertRegExp('/BakeComment/', $result);
|
|
}
|
|
|
|
/**
|
|
* test bake() with a -plugin param
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeWithPlugin() {
|
|
$this->Task->plugin = 'ControllerTest';
|
|
|
|
//fake plugin path
|
|
CakePlugin::load('ControllerTest', array('path' => APP . 'Plugin' . DS . 'ControllerTest' . DS));
|
|
$path = APP . 'Plugin' . DS . 'ControllerTest' . DS . 'Model' . DS . 'BakeArticle.php';
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($path, $this->stringContains('BakeArticle extends ControllerTestAppModel'));
|
|
|
|
$result = $this->Task->bake('BakeArticle', array(), array());
|
|
$this->assertContains("App::uses('ControllerTestAppModel', 'ControllerTest.Model');", $result);
|
|
|
|
$this->assertEquals(count(ClassRegistry::keys()), 0);
|
|
$this->assertEquals(count(ClassRegistry::mapKeys()), 0);
|
|
}
|
|
|
|
/**
|
|
* test bake() for models with behaviors
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBakeWithBehaviors() {
|
|
$result = $this->Task->bake('NumberTree', array('actsAs' => array('Tree', 'PluginName.Sluggable')));
|
|
$expected = <<<TEXT
|
|
/**
|
|
* Behaviors
|
|
*
|
|
* @var array
|
|
*/
|
|
public \$actsAs = array(
|
|
'Tree',
|
|
'PluginName.Sluggable',
|
|
);
|
|
TEXT;
|
|
$this->assertTextContains($expected, $result);
|
|
}
|
|
|
|
/**
|
|
* test that execute passes runs bake depending with named model.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteWithNamedModel() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('BakeArticle');
|
|
$filename = '/my/path/BakeArticle.php';
|
|
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(1));
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticle extends AppModel'));
|
|
|
|
$this->Task->execute();
|
|
|
|
$this->assertEquals(count(ClassRegistry::keys()), 0);
|
|
$this->assertEquals(count(ClassRegistry::mapKeys()), 0);
|
|
}
|
|
|
|
/**
|
|
* data provider for testExecuteWithNamedModelVariations
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function nameVariations() {
|
|
return array(
|
|
array('BakeArticles'), array('BakeArticle'), array('bake_article'), array('bake_articles')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* test that execute passes with different inflections of the same name.
|
|
*
|
|
* @dataProvider nameVariations
|
|
* @return void
|
|
*/
|
|
public function testExecuteWithNamedModelVariations($name) {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(1));
|
|
|
|
$this->Task->args = array($name);
|
|
$filename = '/my/path/BakeArticle.php';
|
|
|
|
$this->Task->expects($this->at(0))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticle extends AppModel'));
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test that execute with a model name picks up hasMany associations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteWithNamedModelHasManyCreated() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('BakeArticle');
|
|
$filename = '/my/path/BakeArticle.php';
|
|
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(1));
|
|
$this->Task->expects($this->at(0))->method('createFile')
|
|
->with($filename, $this->stringContains("'BakeComment' => array("));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test that execute runs all() when args[0] = all
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteIntoAll() {
|
|
$count = count($this->Task->listAll('test'));
|
|
if ($count != count($this->fixtures)) {
|
|
$this->markTestSkipped('Additional tables detected.');
|
|
}
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('all');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
|
|
$this->Task->Fixture->expects($this->exactly(5))->method('bake');
|
|
$this->Task->Test->expects($this->exactly(5))->method('bake');
|
|
|
|
$filename = '/my/path/BakeArticle.php';
|
|
$this->Task->expects($this->at(1))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticle'));
|
|
|
|
$filename = '/my/path/BakeArticlesBakeTag.php';
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticlesBakeTag'));
|
|
|
|
$filename = '/my/path/BakeComment.php';
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeComment'));
|
|
|
|
$filename = '/my/path/BakeComment.php';
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
|
->with($filename, $this->stringContains('public $primaryKey = \'otherid\';'));
|
|
|
|
$filename = '/my/path/BakeTag.php';
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeTag'));
|
|
|
|
$filename = '/my/path/BakeTag.php';
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
->with($filename, $this->logicalNot($this->stringContains('public $primaryKey')));
|
|
|
|
$filename = '/my/path/CategoryThread.php';
|
|
$this->Task->expects($this->at(5))->method('createFile')
|
|
->with($filename, $this->stringContains('class CategoryThread'));
|
|
|
|
$this->Task->execute();
|
|
|
|
$this->assertEquals(count(ClassRegistry::keys()), 0);
|
|
$this->assertEquals(count(ClassRegistry::mapKeys()), 0);
|
|
}
|
|
|
|
/**
|
|
* test that odd tablenames aren't inflected back from modelname
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteIntoAllOddTables() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables', '_getModelObject', 'bake', 'bakeFixture'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('all');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('bake_odd')));
|
|
$object = new Model(array('name' => 'BakeOdd', 'table' => 'bake_odd', 'ds' => 'test'));
|
|
$this->Task->expects($this->once())->method('_getModelObject')->with('BakeOdd', 'bake_odd')->will($this->returnValue($object));
|
|
$this->Task->expects($this->at(3))->method('bake')->with($object, false)->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('bakeFixture')->with('BakeOdd', 'bake_odd');
|
|
|
|
$this->Task->execute();
|
|
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables', '_getModelObject', 'doAssociations', 'doValidation', 'doActsAs', 'createFile'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('all');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('bake_odd')));
|
|
$object = new Model(array('name' => 'BakeOdd', 'table' => 'bake_odd', 'ds' => 'test'));
|
|
$this->Task->expects($this->once())->method('_getModelObject')->will($this->returnValue($object));
|
|
$this->Task->expects($this->once())->method('doAssociations')->will($this->returnValue(array()));
|
|
$this->Task->expects($this->once())->method('doValidation')->will($this->returnValue(array()));
|
|
$this->Task->expects($this->once())->method('doActsAs')->will($this->returnValue(array()));
|
|
|
|
$filename = '/my/path/BakeOdd.php';
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeOdd'));
|
|
|
|
$filename = '/my/path/BakeOdd.php';
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('public $useTable = \'bake_odd\''));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test that odd tablenames aren't inflected back from modelname
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteIntoBakeOddTables() {
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables', '_getModelObject', 'bake', 'bakeFixture'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('BakeOdd');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('articles', 'bake_odd')));
|
|
$object = new Model(array('name' => 'BakeOdd', 'table' => 'bake_odd', 'ds' => 'test'));
|
|
$this->Task->expects($this->once())->method('_getModelObject')->with('BakeOdd', 'bake_odd')->will($this->returnValue($object));
|
|
$this->Task->expects($this->once())->method('bake')->with($object, false)->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('bakeFixture')->with('BakeOdd', 'bake_odd');
|
|
|
|
$this->Task->execute();
|
|
|
|
$out = $this->getMock('ConsoleOutput', array(), array(), '', false);
|
|
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
|
|
$this->Task = $this->getMock('ModelTask',
|
|
array('in', 'err', '_stop', '_checkUnitTest', 'getAllTables', '_getModelObject', 'doAssociations', 'doValidation', 'doActsAs', 'createFile'),
|
|
array($out, $out, $in)
|
|
);
|
|
$this->_setupOtherMocks();
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('BakeOdd');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
$this->Task->expects($this->once())->method('getAllTables')->will($this->returnValue(array('articles', 'bake_odd')));
|
|
$object = new Model(array('name' => 'BakeOdd', 'table' => 'bake_odd', 'ds' => 'test'));
|
|
$this->Task->expects($this->once())->method('_getModelObject')->will($this->returnValue($object));
|
|
$this->Task->expects($this->once())->method('doAssociations')->will($this->returnValue(array()));
|
|
$this->Task->expects($this->once())->method('doValidation')->will($this->returnValue(array()));
|
|
$this->Task->expects($this->once())->method('doActsAs')->will($this->returnValue(array()));
|
|
|
|
$filename = '/my/path/BakeOdd.php';
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeOdd'));
|
|
|
|
$filename = '/my/path/BakeOdd.php';
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('public $useTable = \'bake_odd\''));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test that skipTables changes how all() works.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSkipTablesAndAll() {
|
|
$count = count($this->Task->listAll('test'));
|
|
if ($count != count($this->fixtures)) {
|
|
$this->markTestSkipped('Additional tables detected.');
|
|
}
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->args = array('all');
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
$this->Task->skipTables = array('bake_tags');
|
|
|
|
$this->Task->Fixture->expects($this->exactly(4))->method('bake');
|
|
$this->Task->Test->expects($this->exactly(4))->method('bake');
|
|
|
|
$filename = '/my/path/BakeArticle.php';
|
|
$this->Task->expects($this->at(1))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticle'));
|
|
|
|
$filename = '/my/path/BakeArticlesBakeTag.php';
|
|
$this->Task->expects($this->at(2))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticlesBakeTag'));
|
|
|
|
$filename = '/my/path/BakeComment.php';
|
|
$this->Task->expects($this->at(3))->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeComment'));
|
|
|
|
$filename = '/my/path/CategoryThread.php';
|
|
$this->Task->expects($this->at(4))->method('createFile')
|
|
->with($filename, $this->stringContains('class CategoryThread'));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test the interactive side of bake.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteIntoInteractive() {
|
|
$tables = $this->Task->listAll('test');
|
|
$article = array_search('bake_articles', $tables) + 1;
|
|
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
$this->Task->interactive = true;
|
|
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls(
|
|
$article, // article
|
|
'n', // no validation
|
|
'y', // associations
|
|
'y', // comment relation
|
|
'y', // user relation
|
|
'y', // tag relation
|
|
'n', // additional assocs
|
|
'y' // looks good?
|
|
));
|
|
$this->Task->expects($this->once())->method('_checkUnitTest')->will($this->returnValue(true));
|
|
|
|
$this->Task->Test->expects($this->once())->method('bake');
|
|
$this->Task->Fixture->expects($this->once())->method('bake');
|
|
|
|
$filename = '/my/path/BakeArticle.php';
|
|
|
|
$this->Task->expects($this->once())->method('createFile')
|
|
->with($filename, $this->stringContains('class BakeArticle'));
|
|
|
|
$this->Task->execute();
|
|
|
|
$this->assertEquals(count(ClassRegistry::keys()), 0);
|
|
$this->assertEquals(count(ClassRegistry::mapKeys()), 0);
|
|
}
|
|
|
|
/**
|
|
* test using bake interactively with a table that does not exist.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExecuteWithNonExistantTableName() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls(
|
|
'Foobar', // Or type in the name of the model
|
|
'y', // Do you want to use this table
|
|
'n' // Doesn't exist, continue anyway?
|
|
));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
/**
|
|
* test using bake interactively with a table that does not exist.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testForcedExecuteWithNonExistantTableName() {
|
|
$this->Task->connection = 'test';
|
|
$this->Task->path = '/my/path/';
|
|
|
|
$this->Task->expects($this->any())->method('in')
|
|
->will($this->onConsecutiveCalls(
|
|
'Foobar', // Or type in the name of the model
|
|
'y', // Do you want to use this table
|
|
'y', // Doesn't exist, continue anyway?
|
|
'id', // Primary key
|
|
'y' // Looks good?
|
|
));
|
|
|
|
$this->Task->execute();
|
|
}
|
|
|
|
}
|