array('type' => 'integer', 'null' => false, 'default' => 0, 'key' => 'primary'), 'post_id' => array('type' => 'integer', 'null' => false, 'default' => 0), 'user_id' => array('type' => 'integer', 'null' => false), 'title' => array('type' => 'string', 'null' => false, 'length' => 100), 'comment' => array('type' => 'text', 'null' => false, 'default' => null), 'published' => array('type' => 'string', 'null' => true, 'default' => 'N', 'length' => 1), 'created' => array('type' => 'datetime', 'null' => true, 'default' => null), 'updated' => array('type' => 'datetime', 'null' => true, 'default' => null), 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => true)), ); /** * posts property * * @var array * @access public */ var $articles = array( 'id' => array('type' => 'integer', 'null' => false, 'default' => 0, 'key' => 'primary'), 'user_id' => array('type' => 'integer', 'null' => true, 'default' => ''), 'title' => array('type' => 'string', 'null' => false, 'default' => 'Title'), 'body' => array('type' => 'text', 'null' => true, 'default' => null), 'summary' => array('type' => 'text', 'null' => true), 'published' => array('type' => 'string', 'null' => true, 'default' => 'Y', 'length' => 1), 'created' => array('type' => 'datetime', 'null' => true, 'default' => null), 'updated' => array('type' => 'datetime', 'null' => true, 'default' => null), 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => true)), ); } /** * SchemaShellTest class * * @package cake * @subpackage cake.tests.cases.console.libs.Shells */ class SchemaShellTest extends CakeTestCase { var $fixtures = array('core.article', 'core.user'); /** * startTest method * * @return void * @access public */ function startTest() { $this->Dispatcher =& new TestSchemaShellMockShellDispatcher(); $this->Shell =& new MockSchemaShell($this->Dispatcher); $this->Shell->Dispatch =& $this->Dispatcher; } /** * endTest method * * @return void * @access public */ function endTest() { ClassRegistry::flush(); } /** * test startup method * * @return void **/ function testStartup() { $this->Shell->startup(); $this->assertTrue(isset($this->Shell->Schema)); $this->assertTrue(is_a($this->Shell->Schema, 'CakeSchema')); $this->assertEqual(strtolower($this->Shell->Schema->name), strtolower(APP_DIR)); $this->assertEqual($this->Shell->Schema->file, 'schema.php'); unset($this->Shell->Schema); $this->Shell->params = array( 'name' => 'TestSchema' ); $this->Shell->startup(); $this->assertEqual($this->Shell->Schema->name, 'TestSchema'); $this->assertEqual($this->Shell->Schema->file, 'test_schema.php'); $this->assertEqual($this->Shell->Schema->connection, 'default'); $this->assertEqual($this->Shell->Schema->path, APP . 'config' . DS . 'schema'); unset($this->Shell->Schema); $this->Shell->params = array( 'file' => 'other_file.php', 'connection' => 'test_suite', 'path' => '/test/path' ); $this->Shell->startup(); $this->assertEqual(strtolower($this->Shell->Schema->name), strtolower(APP_DIR)); $this->assertEqual($this->Shell->Schema->file, 'other_file.php'); $this->assertEqual($this->Shell->Schema->connection, 'test_suite'); $this->assertEqual($this->Shell->Schema->path, '/test/path'); } /** * Test View - and that it dumps the schema file to stdout * * @return void **/ function testView() { $this->Shell->startup(); $this->Shell->Schema->path = APP . 'config' . DS . 'schema'; $this->Shell->params['file'] = 'i18n.php'; $this->Shell->expectOnce('_stop'); $this->Shell->view(); } /** * test dump() with sql file generation * * @return void **/ function testDumpWithFileWriting() { $file =& new File(APP . 'config' . DS . 'schema' . DS . 'i18n.php'); $contents = $file->read(); $file =& new File(TMP . 'tests' . DS . 'i18n.php'); $file->write($contents); $this->Shell->params = array('name' => 'i18n'); $this->Shell->args = array('write'); $this->Shell->startup(); $this->Shell->Schema->path = TMP . 'tests'; $this->Shell->dump(); $sql =& new File(TMP . 'tests' . DS . 'i18n.sql'); $contents = $sql->read(); $this->assertPattern('/DROP TABLE/', $contents); $this->assertPattern('/CREATE TABLE `i18n`/', $contents); $this->assertPattern('/id/', $contents); $this->assertPattern('/model/', $contents); $this->assertPattern('/field/', $contents); $this->assertPattern('/locale/', $contents); $this->assertPattern('/foreign_key/', $contents); $this->assertPattern('/content/', $contents); $sql->delete(); $file->delete(); } /** * test generate with snapshot generation * * @return void */ function testGenerateSnaphot() { $this->Shell->path = TMP; $this->Shell->params['file'] = 'schema.php'; $this->Shell->args = array('snapshot'); $this->Shell->Schema =& new MockSchemaCakeSchema(); $this->Shell->Schema->setReturnValue('read', array('schema data')); $this->Shell->Schema->setReturnValue('write', true); $this->Shell->Schema->expectOnce('read'); $this->Shell->Schema->expectOnce('write', array(array('schema data', 'file' => 'schema_1.php'))); $this->Shell->generate(); } /** * test generate without a snapshot. * * @return void **/ function testGenerateNoOverwrite() { touch(TMP . 'schema.php'); $this->Shell->params['file'] = 'schema.php'; $this->Shell->args = array(); $this->Shell->setReturnValue('in', 'q'); $this->Shell->Schema =& new MockSchemaCakeSchema(); $this->Shell->Schema->path = TMP; $this->Shell->Schema->expectNever('read'); $result = $this->Shell->generate(); unlink(TMP . 'schema.php'); } /** * test generate with overwriting of the schema files. * * @return void **/ function testGenerateOverwrite() { touch(TMP . 'schema.php'); $this->Shell->params['file'] = 'schema.php'; $this->Shell->args = array(); $this->Shell->setReturnValue('in', 'o'); $this->Shell->expectAt(1, 'out', array(new PatternExpectation('/Schema file:\s[a-z\.]+\sgenerated/'))); $this->Shell->Schema =& new MockSchemaCakeSchema(); $this->Shell->Schema->path = TMP; $this->Shell->Schema->setReturnValue('read', array('schema data')); $this->Shell->Schema->setReturnValue('write', true); $this->Shell->Schema->expectOnce('read'); $this->Shell->Schema->expectOnce('write', array(array('schema data', 'file' => 'schema.php'))); $this->Shell->generate(); unlink(TMP . 'schema.php'); } /** * Test schema run create with no table args. * * @return void **/ function testRunCreateNoArgs() { $this->Shell->params = array( 'connection' => 'test_suite', 'path' => APP . 'config' . DS . 'sql' ); $this->Shell->args = array('i18n'); $this->Shell->startup(); $this->Shell->setReturnValue('in', 'y'); $this->Shell->create(); $db =& ConnectionManager::getDataSource('test_suite'); $sources = $db->listSources(); $this->assertTrue(in_array($db->config['prefix'] . 'i18n', $sources)); $schema =& new i18nSchema(); $db->execute($db->dropSchema($schema)); } /** * Test schema run create with no table args. * * @return void **/ function testRunCreateWithTableArgs() { $this->Shell->params = array( 'connection' => 'test_suite', 'name' => 'DbAcl', 'path' => APP . 'config' . DS . 'schema' ); $this->Shell->args = array('DbAcl', 'acos'); $this->Shell->startup(); $this->Shell->setReturnValue('in', 'y'); $this->Shell->create(); $db =& ConnectionManager::getDataSource('test_suite'); $sources = $db->listSources(); $this->assertTrue(in_array($db->config['prefix'] . 'acos', $sources)); $this->assertFalse(in_array($db->config['prefix'] . 'aros', $sources)); $this->assertFalse(in_array('aros_acos', $sources)); $db->execute('DROP TABLE ' . $db->config['prefix'] . 'acos'); } /** * test run update with a table arg. * * @return void **/ function testRunUpdateWithTable() { $this->Shell->params = array( 'connection' => 'test_suite', 'f' => true ); $this->Shell->args = array('SchemaShellTest', 'articles'); $this->Shell->startup(); $this->Shell->setReturnValue('in', 'y'); $this->Shell->update(); $article =& new Model(array('name' => 'Article', 'ds' => 'test_suite')); $fields = $article->schema(); $this->assertTrue(isset($fields['summary'])); $this->_fixtures['core.article']->drop($this->db); $this->_fixtures['core.article']->create($this->db); } /** * test that the plugin param creates the correct path in the schema object. * * @return void **/ function testPluginParam() { App::build(array( 'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS) )); $this->Shell->params = array( 'plugin' => 'TestPlugin', 'connection' => 'test_suite' ); $this->Shell->startup(); $expected = TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS . 'test_plugin' . DS . 'config' . DS . 'schema' . DS; $this->assertEqual($this->Shell->Schema->path, $expected); unset($this->Shell->Schema); $this->Shell->params = array( 'plugin' => 'TestPlugin', 'connection' => 'test_suite', 'path' => '/some/path' ); $this->Shell->startup(); $expected = '/some/path'; $this->assertEqual($this->Shell->Schema->path, $expected); } } ?>