mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding test cases for startup()
This commit is contained in:
parent
32754c4261
commit
3c46b51b7f
2 changed files with 34 additions and 4 deletions
|
@ -1,6 +1,4 @@
|
|||
<?php
|
||||
/* SVN FILE: $Id$ */
|
||||
|
||||
/**
|
||||
* Command-line database management utility to automate programmer chores.
|
||||
*
|
||||
|
@ -26,7 +24,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
||||
*/
|
||||
App::import('File');
|
||||
App::import('Core', 'File', false);
|
||||
App::import('Model', 'CakeSchema', false);
|
||||
|
||||
/**
|
||||
|
|
|
@ -52,7 +52,6 @@ Mock::generatePartial(
|
|||
*/
|
||||
class SchemaShellTest extends CakeTestCase {
|
||||
|
||||
|
||||
/**
|
||||
* startTest method
|
||||
*
|
||||
|
@ -75,6 +74,39 @@ class SchemaShellTest extends CakeTestCase {
|
|||
ClassRegistry::flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* test startup method
|
||||
*
|
||||
* @return void
|
||||
**/
|
||||
function testStartup() {
|
||||
$this->Task->startup();
|
||||
$this->assertTrue(isset($this->Task->Schema));
|
||||
$this->assertTrue(is_a($this->Task->Schema, 'CakeSchema'));
|
||||
$this->assertEqual($this->Task->Schema->name, 'App');
|
||||
$this->assertEqual($this->Task->Schema->file, 'schema.php');
|
||||
|
||||
unset($this->Task->Schema);
|
||||
$this->Task->params = array(
|
||||
'name' => 'TestSchema'
|
||||
);
|
||||
$this->Task->startup();
|
||||
$this->assertEqual($this->Task->Schema->name, 'TestSchema');
|
||||
$this->assertEqual($this->Task->Schema->file, 'test_schema.php');
|
||||
$this->assertEqual($this->Task->Schema->connection, 'default');
|
||||
$this->assertEqual($this->Task->Schema->path, APP . 'config' . DS . 'schema');
|
||||
|
||||
unset($this->Task->Schema);
|
||||
$this->Task->params = array(
|
||||
'file' => 'other_file.php',
|
||||
'connection' => 'test_suite',
|
||||
'path' => '/test/path'
|
||||
);
|
||||
$this->Task->startup();
|
||||
$this->assertEqual($this->Task->Schema->name, 'App');
|
||||
$this->assertEqual($this->Task->Schema->file, 'other_file.php');
|
||||
$this->assertEqual($this->Task->Schema->connection, 'test_suite');
|
||||
$this->assertEqual($this->Task->Schema->path, '/test/path');
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in a new issue