123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?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\View;
- use lithium\console\Request;
- use lithium\core\Libraries;
- class ViewTest 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 testRun() {
- $this->request->params += array(
- 'command' => 'create', 'template' => 'test-view', 'action' => 'view',
- 'args' => array('Posts', 'index.html')
- );
- $plateFolder = $this->_testPath . '/create_test/extensions/command/create/template';
- if (!is_dir($plateFolder)) {
- mkdir($plateFolder, 0755, true);
- }
- file_put_contents($plateFolder . '/test-view.txt.php', '|{:name}|{:plural}|{:singular}|');
- $view = new View(array(
- 'request' => $this->request, 'classes' => $this->classes
- ));
- $view->path = $this->_testPath;
- $view->run('view');
- $expected = "index.html.php created in views/posts.\n";
- $result = $view->response->output;
- $this->assertEqual($expected, $result);
- $expected = '|Posts|posts|post|';
- $result = file_get_contents($this->_testPath . '/create_test/views/posts/index.html.php');
- $this->assertEqual($expected, $result);
- }
- }
- ?>
|