2007-05-03 23:25:21 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-07-09 17:02:55 +00:00
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-07-09 17:02:55 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2007-05-03 23:25:21 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-07-09 17:02:55 +00:00
|
|
|
* @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
|
2007-05-03 23:25:21 +00:00
|
|
|
*/
|
2007-07-08 01:17:57 +00:00
|
|
|
uses('folder');
|
2007-05-03 23:25:21 +00:00
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
2007-07-09 17:02:55 +00:00
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
2007-05-03 23:25:21 +00:00
|
|
|
*/
|
|
|
|
class FolderTest extends UnitTestCase {
|
2007-07-08 01:17:57 +00:00
|
|
|
|
|
|
|
var $Folder = null;
|
|
|
|
|
2007-05-04 00:29:33 +00:00
|
|
|
function testBasic() {
|
|
|
|
$path = dirname(__FILE__);
|
2007-09-11 19:41:57 +00:00
|
|
|
$Folder =& new Folder($path);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->pwd();
|
2007-05-04 00:29:33 +00:00
|
|
|
$this->assertEqual($result, $path);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->addPathElement($path, 'test');
|
2007-05-04 00:29:33 +00:00
|
|
|
$expected = $path . DS . 'test';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->cd(ROOT);
|
2007-05-04 00:29:33 +00:00
|
|
|
$expected = ROOT;
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-05-04 00:29:33 +00:00
|
|
|
function testInPath() {
|
|
|
|
$path = dirname(dirname(__FILE__));
|
2007-05-04 00:38:26 +00:00
|
|
|
$inside = dirname($path) . DS;
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$Folder =& new Folder($path);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->pwd();
|
2007-05-04 00:29:33 +00:00
|
|
|
$this->assertEqual($result, $path);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->isSlashTerm($inside);
|
2007-05-04 00:29:33 +00:00
|
|
|
$this->assertTrue($result);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->realpath('tests/');
|
2008-02-28 15:35:00 +00:00
|
|
|
$this->assertEqual($result, $path . DS .'tests' . DS);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2008-02-28 15:35:00 +00:00
|
|
|
$result = $Folder->inPath('tests' . DS);
|
2007-08-04 05:31:36 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->inPath(DS . 'non-existing' . $inside);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testOperations() {
|
2007-11-23 08:16:23 +00:00
|
|
|
$path = TEST_CAKE_CORE_INCLUDE_PATH.'console'.DS.'libs'.DS.'templates'.DS.'skel';
|
2007-09-11 19:41:57 +00:00
|
|
|
$Folder =& new Folder($path);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = is_dir($Folder->pwd());
|
2007-05-04 00:29:33 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
$new = TMP . 'test_folder_new';
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->create($new);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
$copy = TMP . 'test_folder_copy';
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->copy($copy);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
$copy = TMP . 'test_folder_copy';
|
2007-09-17 06:02:44 +00:00
|
|
|
$result = $Folder->chmod($copy, 0755, false);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->cd($copy);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
$mv = TMP . 'test_folder_mv';
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->move($mv);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->delete($new);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-07-08 01:17:57 +00:00
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->delete($mv);
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->assertTrue($result);
|
2007-05-04 00:29:33 +00:00
|
|
|
}
|
2007-08-04 05:31:36 +00:00
|
|
|
|
|
|
|
function testRealPathForWebroot() {
|
|
|
|
$Folder = new Folder('files/');
|
|
|
|
$this->assertEqual(realpath('files/'), $Folder->path);
|
|
|
|
}
|
2007-09-11 19:41:57 +00:00
|
|
|
|
|
|
|
function testZeroAsDirectory() {
|
|
|
|
$Folder =& new Folder(TMP);
|
|
|
|
$new = TMP . '0';
|
|
|
|
$result = $Folder->create($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2007-10-21 23:37:31 +00:00
|
|
|
$result = $Folder->read(true, true);
|
2007-09-11 19:41:57 +00:00
|
|
|
$expected = array(array('0', 'cache', 'logs', 'sessions', 'tests'), array());
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
|
2007-10-21 23:37:31 +00:00
|
|
|
$result = $Folder->read(true, array('.', '..', 'logs', '.svn'));
|
2007-10-16 09:05:25 +00:00
|
|
|
$expected = array(array('0', 'cache', 'sessions', 'tests'), array());
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
$result = $Folder->delete($new);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2007-10-16 09:05:25 +00:00
|
|
|
|
|
|
|
function testFolderRead() {
|
|
|
|
$Folder =& new Folder(TMP);
|
|
|
|
$expected = array('cache', 'logs', 'sessions', 'tests');
|
2007-10-21 23:37:31 +00:00
|
|
|
$results = $Folder->read(true, true);
|
2007-10-16 09:05:25 +00:00
|
|
|
$this->assertEqual($results[0], $expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testFolderTree() {
|
|
|
|
$Folder =& new Folder();
|
2007-11-23 08:16:23 +00:00
|
|
|
$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 . '0000_007f.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 . '0300_036f.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 . '10400_1044f.php',
|
|
|
|
TEST_CAKE_CORE_INCLUDE_PATH . 'config' . DS . 'unicode' . DS . 'casefolding' . DS . '10a0_10ff.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 . 'fb00_fb4f.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);
|
2007-10-16 09:05:25 +00:00
|
|
|
$this->assertEqual($results, $expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testWindowsPath(){
|
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isWindowsPath('C:\cake'));
|
|
|
|
$this->assertTrue($Folder->isWindowsPath('c:\cake'));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testIsAbsolute(){
|
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isAbsolute('C:\cake'));
|
|
|
|
$this->assertTrue($Folder->isAbsolute('/usr/local'));
|
|
|
|
$this->assertFalse($Folder->isAbsolute('cake/'));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testIsSlashTerm(){
|
|
|
|
$Folder =& new Folder();
|
|
|
|
$this->assertTrue($Folder->isSlashTerm('C:\cake\\'));
|
|
|
|
$this->assertTrue($Folder->isSlashTerm('/usr/local/'));
|
|
|
|
$this->assertFalse($Folder->isSlashTerm('cake'));
|
|
|
|
}
|
2007-12-21 02:54:45 +00:00
|
|
|
function testStatic() {
|
|
|
|
$result = Folder::slashTerm('/path/to/file');
|
|
|
|
$this->assertEqual($result, '/path/to/file/');
|
|
|
|
}
|
2007-05-03 23:25:21 +00:00
|
|
|
}
|
|
|
|
?>
|