12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?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\create;
- use lithium\console\command\create\Mock;
- use lithium\console\Request;
- use lithium\core\Libraries;
- class MockTest 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->classes = array('response' => 'lithium\tests\mocks\console\MockResponse');
- $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');
- }
- public function tearDown() {
- $_SERVER = $this->_backup['_SERVER'];
- chdir($this->_backup['cwd']);
- $this->_cleanUp();
- }
- public function testMockModel() {
- $this->request->params += array(
- 'command' => 'create', 'action' => 'mock',
- 'args' => array('model', 'Posts')
- );
- $mock = new Mock(array(
- 'request' => $this->request, 'classes' => $this->classes
- ));
- $mock->path = $this->_testPath;
- $mock->run('mock');
- $expected = "MockPosts created in tests/mocks/models/MockPosts.php.\n";
- $result = $mock->response->output;
- $this->assertEqual($expected, $result);
- $expected = <<<'test'
- namespace create_test\tests\mocks\models;
- class MockPosts extends \create_test\models\Posts {
- }
- test;
- $replace = array("<?php", "?>");
- $result = str_replace($replace, '',
- file_get_contents($this->_testPath . '/create_test/tests/mocks/models/MockPosts.php')
- );
- $this->assertEqual($expected, $result);
- }
- }
- ?>
|