| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290 |
- <?php
- /**
- * 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
- * @since CakePHP v 1.2.6
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console\Command\Task;
- use Cake\Console\Command\Task\ModelTask;
- use Cake\Console\Command\Task\TemplateTask;
- use Cake\Core\Plugin;
- use Cake\Model\Model;
- use Cake\ORM\TableRegistry;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\ClassRegistry;
- use Cake\Utility\Inflector;
- /**
- * ModelTaskTest class
- *
- */
- class ModelTaskTest extends TestCase {
- /**
- * 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('Cake\Console\ConsoleOutput', [], [], '', false);
- $in = $this->getMock('Cake\Console\ConsoleInput', [], [], '', false);
- $this->Task = $this->getMock('Cake\Console\Command\Task\ModelTask',
- array('in', 'err', 'createFile', '_stop', '_checkUnitTest'),
- array($out, $out, $in)
- );
- $this->Task->connection = 'test';
- $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('Cake\Console\ConsoleOutput', [], [], '', false);
- $in = $this->getMock('Cake\Console\ConsoleInput', [], [], '', false);
- $this->Task = $this->getMock('Cake\Console\Command\Task\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('Cake\Console\ConsoleOutput', [], [], '', false);
- $in = $this->getMock('Cake\Console\ConsoleInput', [], [], '', false);
- $this->Task->Fixture = $this->getMock('Cake\Console\Command\Task\FixtureTask', [], [$out, $out, $in]);
- $this->Task->Test = $this->getMock('Cake\Console\Command\Task\FixtureTask', [], [$out, $out, $in]);
- $this->Task->Template = new TemplateTask($out, $out, $in);
- $this->Task->name = 'Model';
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- unset($this->Task);
- }
- /**
- * 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 getName() method.
- *
- * @return void
- */
- public function testGetTable() {
- $this->Task->args[0] = 'BakeArticle';
- $result = $this->Task->getTable();
- $this->assertEquals('bake_articles', $result);
- $this->Task->args[0] = 'BakeArticles';
- $result = $this->Task->getTable();
- $this->assertEquals('bake_articles', $result);
- $this->Task->args[0] = 'Article';
- $this->Task->params['table'] = 'bake_articles';
- $result = $this->Task->getTable();
- $this->assertEquals('bake_articles', $result);
- }
- /**
- * Test getting the a table class.
- *
- * @return void
- */
- public function testGetTableObject() {
- $result = $this->Task->getTableObject('Article', 'bake_articles');
- $this->assertInstanceOf('Cake\ORM\Table', $result);
- $this->assertEquals('bake_articles', $result->table());
- $this->assertEquals('Article', $result->alias());
- }
- /**
- * Test getAssociations with off flag.
- *
- * @return void
- */
- public function testGetAssociationsNoFlag() {
- $this->Task->params['no-associations'] = true;
- $articles = TableRegistry::get('BakeArticle');
- $this->assertEquals([], $this->Task->getAssociations($articles));
- }
- /**
- * Test getAssociations
- *
- * @return void
- */
- public function testGetAssociations() {
- $articles = TableRegistry::get('BakeArticles');
- $result = $this->Task->getAssociations($articles);
- $expected = [
- 'belongsTo' => [
- [
- 'alias' => 'BakeUsers',
- 'className' => 'BakeUsers',
- 'foreignKey' => 'bake_user_id',
- ],
- ],
- 'hasMany' => [
- [
- 'alias' => 'BakeComments',
- 'className' => 'BakeComments',
- 'foreignKey' => 'bake_article_id',
- ],
- ],
- 'belongsToMany' => [
- [
- 'alias' => 'BakeTags',
- 'className' => 'BakeTags',
- 'foreignKey' => 'bake_article_id',
- 'joinTable' => 'bake_articles_bake_tags',
- 'targetForeignKey' => 'bake_tag_id',
- ],
- ],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * test that belongsTo generation works.
- *
- * @return void
- */
- public function testBelongsToGeneration() {
- $model = TableRegistry::get('BakeComments');
- $result = $this->Task->findBelongsTo($model, []);
- $expected = [
- 'belongsTo' => [
- [
- 'alias' => 'BakeArticles',
- 'className' => 'BakeArticles',
- 'foreignKey' => 'bake_article_id',
- ],
- [
- 'alias' => 'BakeUsers',
- 'className' => 'BakeUsers',
- 'foreignKey' => 'bake_user_id',
- ],
- ]
- ];
- $this->assertEquals($expected, $result);
- $model = TableRegistry::get('CategoryThreads');
- $result = $this->Task->findBelongsTo($model, array());
- $expected = [
- 'belongsTo' => [
- [
- 'alias' => 'ParentCategoryThreads',
- 'className' => 'CategoryThreads',
- 'foreignKey' => 'parent_id',
- ],
- ]
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * test that hasOne and/or hasMany relations are generated properly.
- *
- * @return void
- */
- public function testHasManyGeneration() {
- $this->Task->connection = 'test';
- $model = TableRegistry::get('BakeArticles');
- $result = $this->Task->findHasMany($model, []);
- $expected = [
- 'hasMany' => [
- [
- 'alias' => 'BakeComments',
- 'className' => 'BakeComments',
- 'foreignKey' => 'bake_article_id',
- ],
- ],
- ];
- $this->assertEquals($expected, $result);
- $model = TableRegistry::get('CategoryThreads');
- $result = $this->Task->findHasMany($model, []);
- $expected = [
- 'hasMany' => [
- [
- 'alias' => 'ChildCategoryThreads',
- 'className' => 'CategoryThreads',
- 'foreignKey' => 'parent_id',
- ],
- ]
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that HABTM generation works
- *
- * @return void
- */
- public function testHasAndBelongsToManyGeneration() {
- $this->Task->connection = 'test';
- $model = TableRegistry::get('BakeArticles');
- $result = $this->Task->findBelongsToMany($model, []);
- $expected = [
- 'belongsToMany' => [
- [
- 'alias' => 'BakeTags',
- 'className' => 'BakeTags',
- 'foreignKey' => 'bake_article_id',
- 'joinTable' => 'bake_articles_bake_tags',
- 'targetForeignKey' => 'bake_tag_id',
- ],
- ],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test getting accessible fields.
- *
- * @return void
- */
- public function testFields() {
- $model = TableRegistry::get('BakeArticles');
- $result = $this->Task->getFields($model);
- $expected = [
- 'id',
- 'bake_user_id',
- 'title',
- 'body',
- 'published',
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test getting field with the no- option
- *
- * @return void
- */
- public function testFieldsDisabled() {
- $model = TableRegistry::get('BakeArticles');
- $this->Task->params['no-fields'] = true;
- $result = $this->Task->getFields($model);
- $this->assertEquals([], $result);
- }
- /**
- * Test getting field with a whitelist
- *
- * @return void
- */
- public function testFieldsWhiteList() {
- $model = TableRegistry::get('BakeArticles');
- $this->Task->params['fields'] = 'id, title , , body , created';
- $result = $this->Task->getFields($model);
- $expected = [
- 'id',
- 'title',
- 'body',
- 'created',
- ];
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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 that skipping fields during rule choice works when doing interactive field validation.
- *
- * @return void
- */
- public function testSkippingChoiceInteractiveFieldValidation() {
- $this->markTestIncomplete('Not done here yet');
- $this->Task->initValidations();
- $this->Task->interactive = true;
- $this->Task->expects($this->any())->method('in')
- ->will($this->onConsecutiveCalls('24', 'y', 's'));
- $result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
- $expected = array('notEmpty' => 'notEmpty', '_skipFields' => true);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that skipping fields after rule choice works when doing interactive field validation.
- *
- * @return void
- */
- public function testSkippingAnotherInteractiveFieldValidation() {
- $this->markTestIncomplete('Not done here yet');
- $this->Task->initValidations();
- $this->Task->interactive = true;
- $this->Task->expects($this->any())->method('in')
- ->will($this->onConsecutiveCalls('24', 's'));
- $result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
- $expected = array('notEmpty' => 'notEmpty', '_skipFields' => true);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the validation generation routine with skipping the rest of the fields
- * when doing interactive field validation.
- *
- * @return void
- */
- public function testInteractiveDoValidationWithSkipping() {
- $this->markTestIncomplete('Not done here yet');
- $this->Task->expects($this->any())
- ->method('in')
- ->will($this->onConsecutiveCalls('35', '24', 'n', '11', 's'));
- $this->Task->interactive = true;
- $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,
- )
- )
- ));
- $result = $this->Task->doValidation($Model);
- $expected = array(
- 'name' => array(
- 'notEmpty' => 'notEmpty'
- ),
- 'email' => array(
- 'email' => 'email',
- ),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test the validation Generation routine
- *
- * @return void
- */
- public function testNonInteractiveDoValidation() {
- $this->markTestIncomplete('Not done here yet');
- $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 non interactive doAssociations
- *
- * @return void
- */
- public function testDoAssociationsNonInteractive() {
- $this->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->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 fixture baking can be disabled
- *
- * @return void
- */
- public function testBakeFixtureDisabled() {
- $this->Task->params['no-fixture'] = true;
- $this->Task->plugin = 'TestPlugin';
- $this->Task->Fixture->expects($this->never())
- ->method('bake');
- $this->Task->bakeFixture('BakeArticle', 'bake_articles');
- }
- /**
- * Ensure that the test object is correctly called.
- *
- * @return void
- */
- public function testBakeTest() {
- $this->Task->plugin = 'TestPlugin';
- $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);
- }
- /**
- * Ensure that test baking can be disabled.
- *
- * @return void
- */
- public function testBakeTestDisabled() {
- $this->Task->params['no-test'] = true;
- $this->Task->plugin = 'TestPlugin';
- $this->Task->Test->expects($this->never())
- ->method('bake');
- $this->Task->bakeTest('BakeArticle');
- }
- /**
- * 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() {
- $this->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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() {
- $this->markTestIncomplete('Not done here yet');
- $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() {
- $this->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $this->Task->plugin = 'ControllerTest';
- //fake plugin path
- Plugin::load('ControllerTest', array('path' => APP . 'Plugin/ControllerTest/'));
- $path = APP . 'Plugin/ControllerTest/Model/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() {
- $this->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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() {
- $this->markTestIncomplete('Not done here yet');
- $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() {
- $this->markTestIncomplete('Not done here yet');
- $out = $this->getMock('Cake\Console\ConsoleOutput', array(), array(), '', false);
- $in = $this->getMock('Cake\Console\ConsoleInput', array(), array(), '', false);
- $this->Task = $this->getMock('Cake\Console\Command\Task\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() {
- $this->markTestIncomplete('Not done here yet');
- $out = $this->getMock('Cake\Console\ConsoleOutput', array(), array(), '', false);
- $in = $this->getMock('Cake\Console\ConsoleInput', array(), array(), '', false);
- $this->Task = $this->getMock('Cake\Console\Command\Task\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() {
- $this->markTestIncomplete('Not done here yet');
- $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() {
- $this->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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->markTestIncomplete('Not done here yet');
- $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();
- }
- }
|