mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
7e42c6cf12
Added Folder::tree() that will return an array of nested directories and files in each directory. Refactored Folder::chmod() to allow changing permission recursively on a directory structure git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5666 3807eeeb-6ff5-0310-8944-8be069107fe0
143 lines
No EOL
3.6 KiB
PHP
143 lines
No EOL
3.6 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
/**
|
|
* Short description for file.
|
|
*
|
|
* Long description for file
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The Open Group Test Suite License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
* @package cake.tests
|
|
* @subpackage cake.tests.cases.libs
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
*/
|
|
uses('folder');
|
|
/**
|
|
* Short description for class.
|
|
*
|
|
* @package cake.tests
|
|
* @subpackage cake.tests.cases.libs
|
|
*/
|
|
class FolderTest extends UnitTestCase {
|
|
|
|
var $Folder = null;
|
|
|
|
function testBasic() {
|
|
$path = dirname(__FILE__);
|
|
$Folder =& new Folder($path);
|
|
|
|
$result = $Folder->pwd();
|
|
$this->assertEqual($result, $path);
|
|
|
|
$result = $Folder->isWindowsPath($path);
|
|
$expected = (DS == '\\' ? true : false);
|
|
$this->assertEqual($result, $expected);
|
|
|
|
$result = $Folder->isAbsolute($path);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->isSlashTerm($path);
|
|
$this->assertFalse($result);
|
|
|
|
$result = $Folder->isSlashTerm($path . DS);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->addPathElement($path, 'test');
|
|
$expected = $path . DS . 'test';
|
|
$this->assertEqual($result, $expected);
|
|
|
|
$result = $Folder->cd(ROOT);
|
|
$expected = ROOT;
|
|
$this->assertEqual($result, $expected);
|
|
}
|
|
|
|
function testInPath() {
|
|
$path = dirname(dirname(__FILE__));
|
|
$inside = dirname($path) . DS;
|
|
|
|
$Folder =& new Folder($path);
|
|
|
|
$result = $Folder->pwd();
|
|
$this->assertEqual($result, $path);
|
|
|
|
$result = $Folder->isSlashTerm($inside);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->realpath('tests/');
|
|
$this->assertEqual($result, $path . DS .'tests/');
|
|
|
|
$result = $Folder->inPath('tests/');
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->inPath(DS . 'non-existing' . $inside);
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
function testOperations() {
|
|
$path = CAKE_CORE_INCLUDE_PATH.DS.'cake'.DS.'console'.DS.'libs'.DS.'templates'.DS.'skel';
|
|
$Folder =& new Folder($path);
|
|
|
|
$result = is_dir($Folder->pwd());
|
|
$this->assertTrue($result);
|
|
|
|
$new = TMP . 'test_folder_new';
|
|
$result = $Folder->create($new);
|
|
$this->assertTrue($result);
|
|
|
|
$copy = TMP . 'test_folder_copy';
|
|
$result = $Folder->copy($copy);
|
|
$this->assertTrue($result);
|
|
|
|
$copy = TMP . 'test_folder_copy';
|
|
$result = $Folder->chmod($copy, 0755, false);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->cd($copy);
|
|
$this->assertTrue($result);
|
|
|
|
$mv = TMP . 'test_folder_mv';
|
|
$result = $Folder->move($mv);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->delete($new);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->delete($mv);
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
function testRealPathForWebroot() {
|
|
$Folder = new Folder('files/');
|
|
$this->assertEqual(realpath('files/'), $Folder->path);
|
|
}
|
|
|
|
function testZeroAsDirectory() {
|
|
$Folder =& new Folder(TMP);
|
|
$new = TMP . '0';
|
|
$result = $Folder->create($new);
|
|
$this->assertTrue($result);
|
|
|
|
$result = $Folder->read(true, '.');
|
|
$expected = array(array('0', 'cache', 'logs', 'sessions', 'tests'), array());
|
|
$this->assertEqual($expected, $result);
|
|
|
|
$result = $Folder->delete($new);
|
|
$this->assertTrue($result);
|
|
}
|
|
}
|
|
?>
|