123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\cases\console\command;
- use lithium\tests\mocks\console\command\MockCreate;
- use lithium\console\Request;
- use lithium\core\Libraries;
- use lithium\data\Connections;
- class CreateTest extends \lithium\test\Unit {
- public $request;
- protected $_backup = array();
- protected $_testPath = null;
- public function skip() {
- $this->_testPath = Libraries::get(true, 'resources') . '/tmp/tests';
- $this->skipIf(!is_writable($this->_testPath), "Path `{$this->_testPath}` is not writable.");
- }
- public function setUp() {
- $this->_backup['cwd'] = getcwd();
- $this->_backup['_SERVER'] = $_SERVER;
- $_SERVER['argv'] = array();
- Libraries::add('create_test', array('path' => $this->_testPath . '/create_test'));
- $this->request = new Request(array('input' => fopen('php://temp', 'w+')));
- $this->request->params = array('library' => 'create_test', 'action' => null);
- Connections::add('default', array(
- 'type' => null,
- 'adapter' => 'lithium\tests\mocks\data\model\MockDatabase'
- ));
- }
- public function tearDown() {
- $_SERVER = $this->_backup['_SERVER'];
- chdir($this->_backup['cwd']);
- $this->_cleanUp();
- }
- public function testConstruct() {
- $create = new MockCreate(array('request' => $this->request));
- $expected = 'create_test';
- $result = $create->library;
- $this->assertEqual($expected, $result);
- }
- public function testNonExistentCommand() {
- $this->request->params['args'] = array('does_not_exist', 'anywhere');
- $create = new MockCreate(array('request' => $this->request));
- $result = $create->run('does_not_exist');
- $this->assertFalse($result);
- $expected = "does_not_exist could not be created.\n";
- $result = $create->response->error;
- $this->assertEqual($expected, $result);
- }
- public function testNamespace() {
- $create = new MockCreate(array('request' => $this->request));
- $this->request->params['command'] = 'one';
- $expected = 'create_test\\two';
- $result = $create->invokeMethod('_namespace', array(
- $this->request, array(
- 'spaces' => array('one' => 'two')
- )
- ));
- $this->assertEqual($expected, $result);
- }
- public function testSave() {
- chdir($this->_testPath);
- $this->request->params = array('library' => 'create_test', 'template' => 'test');
- $create = new MockCreate(array('request' => $this->request));
- $result = $create->save(array(
- 'namespace' => 'create_test\tests\cases\models',
- 'use' => 'create_test\models\Posts',
- 'class' => 'PostTest',
- 'methods' => "\tpublic function testCreate() {\n\n\t}\n"
- ));
- $this->assertTrue($result);
- $result = $this->_testPath . '/create_test/tests/cases/models/PostTest.php';
- $this->assertTrue(file_exists($result));
- $this->_cleanUp();
- }
- public function testRunWithoutCommand() {
- $create = new MockCreate(array('request' => $this->request));
- $result = $create->run();
- $this->assertFalse($result);
- $result = $create->response->output;
- $this->assertFalse($result);
- }
- public function testRunNotSaved() {
- $this->request->params = array(
- 'library' => 'not_here', 'command' => 'create', 'action' => 'model',
- 'args' => array('model', 'Posts')
- );
- $create = new MockCreate(array('request' => $this->request));
- $result = $create->run('model');
- $this->assertFalse($result);
- $expected = "model could not be created.\n";
- $result = $create->response->error;
- $this->assertEqual($expected, $result);
- }
- public function testRunWithModelCommand() {
- $this->request->params = array(
- 'library' => 'create_test', 'command' => 'create', 'action' => 'model',
- 'args' => array('Posts')
- );
- $create = new MockCreate(array('request' => $this->request));
- $create->run('model');
- $expected = 'model';
- $result = $create->request->command;
- $this->assertEqual($expected, $result);
- $result = $this->_testPath . '/create_test/models/Posts.php';
- $this->assertTrue(file_exists($result));
- }
- public function testRunWithTestModelCommand() {
- $this->request->params = array(
- 'library' => 'create_test', 'command' => 'create', 'action' => 'test',
- 'args' => array('model', 'Posts')
- );
- $create = new MockCreate(array('request' => $this->request));
- $create->run('test');
- $expected = 'model';
- $result = $create->request->command;
- $this->assertEqual($expected, $result);
- $result = $this->_testPath . '/create_test/tests/cases/models/PostsTest.php';
- $this->assertTrue(file_exists($result));
- }
- public function testRunWithTestControllerCommand() {
- $this->request->params = array(
- 'library' => 'create_test', 'command' => 'create', 'action' => 'test',
- 'args' => array('controller', 'Posts')
- );
- $create = new MockCreate(array('request' => $this->request));
- $create->run('test');
- $expected = 'controller';
- $result = $create->request->command;
- $this->assertEqual($expected, $result);
- $result = $this->_testPath . '/create_test/tests/cases/controllers/PostsControllerTest.php';
- $this->assertTrue(file_exists($result));
- }
- public function testRunWithTestOtherCommand() {
- $this->request->params = array(
- 'library' => 'create_test', 'command' => 'create', 'action' => 'test',
- 'args' => array('something', 'Posts')
- );
- $create = new MockCreate(array('request' => $this->request));
- $create->run('test');
- $expected = 'something';
- $result = $create->request->command;
- $this->assertEqual($expected, $result);
- $result = $this->_testPath . '/create_test/tests/cases/something/PostsTest.php';
- $this->assertTrue(file_exists($result));
- }
- public function testRunAll() {
- $this->request->params = array(
- 'library' => 'create_test', 'command' => 'create', 'action' => 'Posts',
- 'args' => array()
- );
- $create = new MockCreate(array('request' => $this->request));
- $create->run('Posts');
- $result = $this->_testPath . '/create_test/models/Posts.php';
- $this->assertTrue(file_exists($result));
- $result = $this->_testPath . '/create_test/controllers/PostsController.php';
- $this->assertTrue(file_exists($result));
- $result = $this->_testPath . '/create_test/tests/cases/models/PostsTest.php';
- $this->assertTrue(file_exists($result));
- $result = $this->_testPath . '/create_test/tests/cases/controllers/PostsControllerTest.php';
- $this->assertTrue(file_exists($result));
- }
- }
- ?>
|