2008-05-30 11:40:08 +00:00
|
|
|
<?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>
|
2008-10-30 17:30:26 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-10-30 17:30:26 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
|
|
* @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
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-07-21 02:40:58 +00:00
|
|
|
App::import('Core', 'File');
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-07-21 02:40:58 +00:00
|
|
|
class FolderTest extends CakeTestCase {
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* Folder property
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @var mixed null
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
var $Folder = null;
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testBasic method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testBasic() {
|
|
|
|
$path = dirname(__FILE__);
|
|
|
|
$Folder =& new Folder($path);
|
|
|
|
|
|
|
|
$result = $Folder->pwd();
|
|
|
|
$this->assertEqual($result, $path);
|
|
|
|
|
|
|
|
$result = $Folder->addPathElement($path, 'test');
|
|
|
|
$expected = $path . DS . 'test';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $Folder->cd(ROOT);
|
|
|
|
$expected = ROOT;
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testInPath method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
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' . DS);
|
|
|
|
|
|
|
|
$result = $Folder->inPath('tests' . DS);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->inPath(DS . 'non-existing' . $inside);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testOperations method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testOperations() {
|
2008-09-09 04:34:11 +00:00
|
|
|
$path = TEST_CAKE_CORE_INCLUDE_PATH . 'console' . DS . 'libs' . DS . 'templates' . DS . 'skel';
|
2008-05-30 11:40:08 +00:00
|
|
|
$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->cp($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);
|
|
|
|
|
|
|
|
$mv = TMP . 'test_folder_mv_2';
|
|
|
|
$result = $Folder->mv($mv);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->delete($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->delete($mv);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->rm($mv);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$new = TMP . 'test_folder_new';
|
|
|
|
$result = $Folder->create($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->cd($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = $Folder->delete();
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$Folder =& new Folder('non-existent');
|
|
|
|
$result = $Folder->pwd();
|
|
|
|
$this->assertNull($result);
|
|
|
|
}
|
2008-09-09 04:34:11 +00:00
|
|
|
/**
|
|
|
|
* testChmod method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function testChmod() {
|
|
|
|
$path = TEST_CAKE_CORE_INCLUDE_PATH . 'console' . DS . 'libs' . DS . 'templates' . DS . 'skel';
|
|
|
|
$Folder =& new Folder($path);
|
|
|
|
|
|
|
|
$subdir = 'test_folder_new';
|
|
|
|
$new = TMP . $subdir;
|
|
|
|
|
|
|
|
$this->assertTrue($Folder->create($new));
|
|
|
|
$this->assertTrue($Folder->create($new . DS . 'test1'));
|
|
|
|
$this->assertTrue($Folder->create($new . DS . 'test2'));
|
|
|
|
|
|
|
|
$filePath = $new . DS . 'test1.php';
|
|
|
|
$File =& new File($filePath);
|
|
|
|
$this->assertTrue($File->create());
|
2008-09-12 05:11:34 +00:00
|
|
|
$copy = TMP . 'test_folder_copy';
|
2008-09-09 04:34:11 +00:00
|
|
|
|
|
|
|
$this->assertTrue($Folder->chmod($new, 0777, true));
|
|
|
|
$this->assertEqual($File->perms(), '0777');
|
|
|
|
|
|
|
|
$Folder->delete($new);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testRealPathForWebroot method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testRealPathForWebroot() {
|
|
|
|
$Folder = new Folder('files/');
|
|
|
|
$this->assertEqual(realpath('files/'), $Folder->path);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testZeroAsDirectory method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testZeroAsDirectory() {
|
|
|
|
$Folder =& new Folder(TMP);
|
|
|
|
$new = TMP . '0';
|
2008-09-09 04:34:11 +00:00
|
|
|
$this->assertTrue($Folder->create($new));
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $Folder->read(true, true);
|
|
|
|
$expected = array(array('0', 'cache', 'logs', 'sessions', 'tests'), array());
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
|
|
|
|
$result = $Folder->read(true, array('.', '..', 'logs', '.svn'));
|
|
|
|
$expected = array(array('0', 'cache', 'sessions', 'tests'), array());
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
|
|
|
|
$result = $Folder->delete($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testFolderRead method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testFolderRead() {
|
|
|
|
$Folder =& new Folder(TMP);
|
|
|
|
$expected = array('cache', 'logs', 'sessions', 'tests');
|
|
|
|
$results = $Folder->read(true, true);
|
|
|
|
$this->assertEqual($results[0], $expected);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testFolderTree method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testFolderTree() {
|
|
|
|
$Folder =& new Folder();
|
|
|
|
$expected = array(
|
|
|
|
array(
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'config.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'paths.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0080_00ff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0100_017f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0180_024F.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0250_02af.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0370_03ff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0400_04ff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0500_052f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '0530_058f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '1e00_1eff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '1f00_1fff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2100_214f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2150_218f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2460_24ff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2c00_2c5f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2c60_2c7f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '2c80_2cff.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . 'ff00_ffef.php'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$results = $Folder->tree(TEST_CAKE_CORE_INCLUDE_PATH . 'config', false);
|
|
|
|
$this->assertEqual($results, $expected);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testWindowsPath method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-06-20 20:17:23 +00:00
|
|
|
function testWindowsPath() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isWindowsPath('C:\cake'));
|
|
|
|
$this->assertTrue($Folder->isWindowsPath('c:\cake'));
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testIsAbsolute method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-06-20 20:17:23 +00:00
|
|
|
function testIsAbsolute() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isAbsolute('C:\cake'));
|
|
|
|
$this->assertTrue($Folder->isAbsolute('/usr/local'));
|
|
|
|
$this->assertFalse($Folder->isAbsolute('cake/'));
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testIsSlashTerm method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-06-20 20:17:23 +00:00
|
|
|
function testIsSlashTerm() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isSlashTerm('C:\cake\\'));
|
|
|
|
$this->assertTrue($Folder->isSlashTerm('/usr/local/'));
|
|
|
|
$this->assertFalse($Folder->isSlashTerm('cake'));
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testStatic method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testStatic() {
|
|
|
|
$result = Folder::slashTerm('/path/to/file');
|
|
|
|
$this->assertEqual($result, '/path/to/file/');
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testNormalizePath method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testNormalizePath() {
|
|
|
|
$path = '/path/to/file';
|
|
|
|
$result = Folder::normalizePath($path);
|
|
|
|
$this->assertEqual($result, '/');
|
|
|
|
|
|
|
|
$path = '\path\to\file';
|
|
|
|
$result = Folder::normalizePath($path);
|
|
|
|
$this->assertEqual($result, '/');
|
|
|
|
|
|
|
|
$path = 'C:\path\to\file';
|
|
|
|
$result = Folder::normalizePath($path);
|
|
|
|
$this->assertEqual($result, '\\');
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* correctSlashFor method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function correctSlashFor() {
|
|
|
|
$path = '/path/to/file';
|
|
|
|
$result = Folder::correctSlashFor($path);
|
|
|
|
$this->assertEqual($result, '/');
|
|
|
|
|
|
|
|
$path = '\path\to\file';
|
|
|
|
$result = Folder::correctSlashFor($path);
|
|
|
|
$this->assertEqual($result, '/');
|
|
|
|
|
|
|
|
$path = 'C:\path\to\file';
|
|
|
|
$result = Folder::correctSlashFor($path);
|
|
|
|
$this->assertEqual($result, '\\');
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testInCakePath method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testInCakePath() {
|
|
|
|
$Folder =& new Folder();
|
|
|
|
$Folder->cd(ROOT);
|
|
|
|
$path = 'C:\path\to\file';
|
|
|
|
$result = $Folder->inCakePath($path);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
$path = ROOT;
|
|
|
|
$Folder->cd(ROOT);
|
|
|
|
$result = $Folder->inCakePath($path);
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
// WHY DOES THIS FAIL ??
|
|
|
|
$path = DS.'cake'.DS.'config';
|
|
|
|
$Folder->cd(ROOT.DS.'cake'.DS.'config');
|
|
|
|
$result = $Folder->inCakePath($path);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testFind method
|
2008-06-05 15:20:45 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testFind() {
|
|
|
|
$folder =& new Folder();
|
|
|
|
$folder->cd(TEST_CAKE_CORE_INCLUDE_PATH . 'config');
|
|
|
|
$result = $folder->find();
|
|
|
|
$expected = array('config.php', 'paths.php');
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
|
|
|
$result = $folder->find('.*\.php');
|
|
|
|
$expected = array('config.php', 'paths.php');
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
|
|
|
$result = $folder->find('.*ig\.php');
|
|
|
|
$expected = array('config.php');
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
|
|
|
$result = $folder->find('paths\.php');
|
|
|
|
$expected = array('paths.php');
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder->cd(TMP);
|
|
|
|
$file = new File($folder->pwd().DS.'paths.php', true);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->mkdir($folder->pwd().DS.'testme');
|
|
|
|
$folder->cd('testme');
|
|
|
|
$result = $folder->find('paths\.php');
|
|
|
|
$expected = array();
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
|
|
|
$folder->cd($folder->pwd().'/..');
|
|
|
|
$result = $folder->find('paths\.php');
|
|
|
|
$expected = array('paths.php');
|
|
|
|
$this->assertIdentical($result, $expected);
|
2008-06-27 08:04:54 +00:00
|
|
|
|
|
|
|
$folder->cd(TMP);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->delete($folder->pwd().DS.'testme');
|
2008-06-27 08:04:54 +00:00
|
|
|
$file->delete();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testFindRecursive method
|
2008-06-27 08:04:54 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testFindRecursive() {
|
|
|
|
$folder =& new Folder();
|
|
|
|
$folder->cd(TEST_CAKE_CORE_INCLUDE_PATH);
|
|
|
|
$result = $folder->findRecursive('(config|paths)\.php');
|
|
|
|
$expected = array(
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH.'config'.DS.'config.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH.'config'.DS.'paths.php'
|
|
|
|
);
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder->cd(TMP);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->mkdir($folder->pwd().DS.'testme');
|
|
|
|
$folder->cd('testme');
|
2008-06-27 08:04:54 +00:00
|
|
|
$file =& new File($folder->pwd().DS.'paths.php');
|
|
|
|
$file->create();
|
|
|
|
$folder->cd(TMP.'sessions');
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $folder->findRecursive('paths\.php');
|
|
|
|
$expected = array();
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder->cd(TMP.'testme');
|
2008-05-30 11:40:08 +00:00
|
|
|
$file =& new File($folder->pwd().DS.'my.php');
|
|
|
|
$file->create();
|
|
|
|
$folder->cd($folder->pwd().'/../..');
|
|
|
|
|
|
|
|
$result = $folder->findRecursive('(paths|my)\.php');
|
|
|
|
$expected = array(
|
2008-06-27 08:04:54 +00:00
|
|
|
TMP.'testme'.DS.'my.php',
|
|
|
|
TMP.'testme'.DS.'paths.php'
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
|
|
|
|
$folder->cd(TEST_CAKE_CORE_INCLUDE_PATH.'config');
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder->cd(TMP);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->delete($folder->pwd().DS.'testme');
|
2008-06-27 08:04:54 +00:00
|
|
|
$file->delete();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testConstructWithNonExistantPath method
|
2008-06-27 08:04:54 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testConstructWithNonExistantPath() {
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder =& new Folder(TMP.'config_non_existant', true);
|
|
|
|
$this->assertTrue(is_dir(TMP.'config_non_existant'));
|
|
|
|
$folder->cd(TMP);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->delete($folder->pwd().'config_non_existant');
|
|
|
|
}
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testDirSize method
|
2008-06-27 08:04:54 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testDirSize() {
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder =& new Folder(TMP.'config_non_existant', true);
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->assertEqual($folder->dirSize(), 0);
|
|
|
|
|
|
|
|
$file =& new File($folder->pwd().DS.'my.php', true, 0777);
|
|
|
|
$file->create();
|
|
|
|
$file->write('something here');
|
|
|
|
$file->close();
|
|
|
|
$this->assertEqual($folder->dirSize(), 14);
|
|
|
|
|
2008-06-27 08:04:54 +00:00
|
|
|
$folder->cd(TMP);
|
2008-05-30 11:40:08 +00:00
|
|
|
$folder->delete($folder->pwd().'config_non_existant');
|
|
|
|
}
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-09-08 16:44:06 +00:00
|
|
|
/**
|
|
|
|
* testDelete method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testDelete() {
|
|
|
|
$path = TMP . 'folder_delete_test';
|
|
|
|
$Folder =& new Folder($path, true);
|
|
|
|
touch(TMP.'folder_delete_test' . DS . 'file1');
|
|
|
|
touch(TMP.'folder_delete_test' . DS . 'file2');
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-09-08 16:44:06 +00:00
|
|
|
$return = $Folder->delete();
|
|
|
|
$this->assertTrue($return);
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-09-08 16:44:06 +00:00
|
|
|
$messages = $Folder->messages();
|
|
|
|
$errors = $Folder->errors();
|
|
|
|
$this->assertEqual($errors, array());
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-09-08 16:44:06 +00:00
|
|
|
$expected = array(
|
2008-09-12 05:11:34 +00:00
|
|
|
$path . ' created',
|
|
|
|
$path . DS . 'file1 removed',
|
|
|
|
$path . DS . 'file2 removed',
|
2008-09-08 16:44:06 +00:00
|
|
|
$path . ' removed'
|
|
|
|
);
|
|
|
|
$this->assertEqual($expected, $messages);
|
|
|
|
}
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-27 08:04:54 +00:00
|
|
|
?>
|