| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132 |
- <?php
- /**
- * FolderTest file
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @since 1.2.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Utility;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\File;
- use Cake\Utility\Folder;
- /**
- * FolderTest class
- */
- class FolderTest extends TestCase {
- /**
- * setUp clearstatcache() to flush file descriptors.
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- clearstatcache();
- }
- /**
- * Remove TMP/tests directory to its original state.
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- $cleaner = function ($dir) use (&$cleaner) {
- $files = array_diff(scandir($dir), ['.', '..']);
- foreach ($files as $file) {
- $path = $dir . '/' . $file;
- if (is_dir($path)) {
- $cleaner($path);
- } else {
- unlink($path);
- }
- }
- rmdir($dir);
- };
- if (file_exists(TMP . 'tests')) {
- $cleaner(TMP . 'tests');
- }
- parent::tearDown();
- }
- /**
- * testBasic method
- *
- * @return void
- */
- public function testBasic() {
- $path = __DIR__;
- $Folder = new Folder($path);
- $result = $Folder->pwd();
- $this->assertEquals($path, $result);
- $result = Folder::addPathElement($path, 'test');
- $expected = $path . DS . 'test';
- $this->assertEquals($expected, $result);
- $result = $Folder->cd(ROOT);
- $expected = ROOT;
- $this->assertEquals($expected, $result);
- $result = $Folder->cd(ROOT . DS . 'non-existent');
- $this->assertFalse($result);
- }
- /**
- * testInPath method
- *
- * @return void
- */
- public function testInPath() {
- $path = dirname(__DIR__);
- $inside = dirname($path) . DS;
- $Folder = new Folder($path);
- $result = $Folder->pwd();
- $this->assertEquals($path, $result);
- $result = Folder::isSlashTerm($inside);
- $this->assertTrue($result);
- $result = $Folder->realpath('tests/');
- $this->assertEquals($path . DS . 'tests' . DS, $result);
- $result = $Folder->inPath('tests' . DS);
- $this->assertTrue($result);
- $result = $Folder->inPath(DS . 'non-existing' . $inside);
- $this->assertFalse($result);
- $result = $Folder->inPath($path . DS . 'Model', true);
- $this->assertTrue($result);
- }
- /**
- * test creation of single and multiple paths.
- *
- * @return void
- */
- public function testCreation() {
- $Folder = new Folder(TMP . 'tests');
- $result = $Folder->create(TMP . 'tests' . DS . 'first' . DS . 'second' . DS . 'third');
- $this->assertTrue($result);
- rmdir(TMP . 'tests/first/second/third');
- rmdir(TMP . 'tests/first/second');
- rmdir(TMP . 'tests/first');
- $Folder = new Folder(TMP . 'tests');
- $result = $Folder->create(TMP . 'tests' . DS . 'first');
- $this->assertTrue($result);
- }
- /**
- * test that creation of folders with trailing ds works
- *
- * @return void
- */
- public function testCreateWithTrailingDs() {
- $Folder = new Folder(TMP . 'tests');
- $path = TMP . 'tests' . DS . 'trailing' . DS . 'dir' . DS;
- $result = $Folder->create($path);
- $this->assertTrue($result);
- $this->assertTrue(is_dir($path), 'Folder was not made');
- $Folder = new Folder(TMP . 'tests/trailing');
- $this->assertTrue($Folder->delete());
- }
- /**
- * test recursive directory create failure.
- *
- * @return void
- */
- public function testRecursiveCreateFailure() {
- $this->skipIf(DIRECTORY_SEPARATOR === '\\', 'Cant perform operations using permissions on windows.');
- $path = TMP . 'tests/one';
- mkdir($path, 0777, true);
- chmod($path, '0444');
- try {
- $Folder = new Folder($path);
- $result = $Folder->create($path . DS . 'two/three');
- $this->assertFalse($result);
- } catch (\PHPUnit_Framework_Error $e) {
- $this->assertTrue(true);
- }
- chmod($path, '0777');
- rmdir($path);
- }
- /**
- * testOperations method
- *
- * @return void
- */
- public function testOperations() {
- $path = CAKE . 'Console/Templates';
- $Folder = new Folder($path);
- $result = is_dir($Folder->pwd());
- $this->assertTrue($result);
- $new = TMP . 'tests/test_folder_new';
- $result = $Folder->create($new);
- $this->assertTrue($result);
- $copy = TMP . 'tests/test_folder_copy';
- $result = $Folder->copy($copy);
- $this->assertTrue($result);
- $copy = TMP . 'tests/test_folder_copy';
- $result = $Folder->copy($copy);
- $this->assertTrue($result);
- $copy = TMP . 'tests/test_folder_copy';
- $result = $Folder->chmod($copy, 0755, false);
- $this->assertTrue($result);
- $result = $Folder->cd($copy);
- $this->assertTrue((bool)$result);
- $mv = TMP . 'tests/test_folder_mv';
- $result = $Folder->move($mv);
- $this->assertTrue($result);
- $mv = TMP . 'tests/test_folder_mv_2';
- $result = $Folder->move($mv);
- $this->assertTrue($result);
- $result = $Folder->delete($new);
- $this->assertTrue($result);
- $result = $Folder->delete($mv);
- $this->assertTrue($result);
- $result = $Folder->delete($mv);
- $this->assertTrue($result);
- $new = APP . 'Config/acl.ini';
- $result = $Folder->create($new);
- $this->assertFalse($result);
- $expected = $new . ' is a file';
- $result = $Folder->errors();
- $this->assertEquals($expected, $result[0]);
- $new = TMP . 'tests/test_folder_new';
- $result = $Folder->create($new);
- $this->assertTrue($result);
- $result = $Folder->cd($new);
- $this->assertTrue((bool)$result);
- $result = $Folder->delete();
- $this->assertTrue($result);
- $Folder = new Folder('non-existent');
- $result = $Folder->pwd();
- $this->assertNull($result);
- }
- /**
- * testChmod method
- *
- * @return void
- */
- public function testChmod() {
- $this->skipIf(DIRECTORY_SEPARATOR === '\\', 'Folder permissions tests not supported on Windows.');
- $path = TMP . 'tests/';
- $Folder = new Folder($path);
- $subdir = 'test_folder_new';
- $new = $path . $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());
- $filePath = $new . DS . 'skip_me.php';
- $File = new File($filePath);
- $this->assertTrue($File->create());
- $this->assertTrue($Folder->chmod($new, 0755, true));
- $perms = substr(sprintf('%o', fileperms($new . DS . 'test2')), -4);
- $this->assertEquals('0755', $perms);
- $this->assertTrue($Folder->chmod($new, 0744, true, array('skip_me.php', 'test2')));
- $perms = substr(sprintf('%o', fileperms($new . DS . 'test2')), -4);
- $this->assertEquals('0755', $perms);
- $perms = substr(sprintf('%o', fileperms($new . DS . 'test1')), -4);
- $this->assertEquals('0744', $perms);
- }
- /**
- * testRealPathForWebroot method
- *
- * @return void
- */
- public function testRealPathForWebroot() {
- $Folder = new Folder('files/');
- $this->assertEquals(realpath('files/'), $Folder->path);
- }
- /**
- * testZeroAsDirectory method
- *
- * @return void
- */
- public function testZeroAsDirectory() {
- $path = TMP . 'tests';
- $Folder = new Folder($path, true);
- $new = $path . '/0';
- $this->assertTrue($Folder->create($new));
- $result = $Folder->read(true, true);
- $this->assertContains('0', $result[0]);
- $result = $Folder->read(true, array('logs'));
- $this->assertContains('0', $result[0]);
- $result = $Folder->delete($new);
- $this->assertTrue($result);
- }
- /**
- * test Adding path elements to a path
- *
- * @return void
- */
- public function testAddPathElement() {
- $expected = DS . 'some' . DS . 'dir' . DS . 'another_path';
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir', 'another_path');
- $this->assertEquals($expected, $result);
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir' . DS, 'another_path');
- $this->assertEquals($expected, $result);
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir', array('another_path'));
- $this->assertEquals($expected, $result);
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir' . DS, array('another_path'));
- $this->assertEquals($expected, $result);
- $expected = DS . 'some' . DS . 'dir' . DS . 'another_path' . DS . 'and' . DS . 'another';
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir', array('another_path', 'and', 'another'));
- $this->assertEquals($expected, $result);
- }
- /**
- * testFolderRead method
- *
- * @return void
- */
- public function testFolderRead() {
- $Folder = new Folder(CAKE);
- $result = $Folder->read(true, true);
- $this->assertContains('Core', $result[0]);
- $this->assertContains('Cache', $result[0]);
- $Folder = new Folder(TMP . 'non-existent');
- $expected = array(array(), array());
- $result = $Folder->read(true, true);
- $this->assertEquals($expected, $result);
- }
- /**
- * testFolderReadWithHiddenFiles method
- *
- * @return void
- */
- public function testFolderReadWithHiddenFiles() {
- $this->skipIf(!is_writable(TMP), 'Cant test Folder::read with hidden files unless the tmp folder is writable.');
- $path = TMP . 'tests/';
- $Folder = new Folder($path . 'folder_tree_hidden', true, 0777);
- mkdir($Folder->path . DS . '.svn');
- mkdir($Folder->path . DS . 'some_folder');
- touch($Folder->path . DS . 'not_hidden.txt');
- touch($Folder->path . DS . '.hidden.txt');
- $expected = array(
- array('some_folder'),
- array('not_hidden.txt'),
- );
- $result = $Folder->read(true, true);
- $this->assertEquals($expected, $result);
- $expected = array(
- array(
- '.svn',
- 'some_folder'
- ),
- array(
- '.hidden.txt',
- 'not_hidden.txt'
- ),
- );
- $result = $Folder->read(true);
- $this->assertEquals($expected, $result);
- }
- /**
- * testFolderTree method
- *
- * @return void
- */
- public function testFolderTree() {
- $Folder = new Folder();
- $expected = array(
- array(
- CAKE . 'Config',
- ),
- array(
- CAKE . 'Config' . DS . 'config.php',
- )
- );
- $result = $Folder->tree(CAKE . 'Config', false);
- $this->assertSame(array(), array_diff($expected[0], $result[0]));
- $this->assertSame(array(), array_diff($result[0], $expected[0]));
- $result = $Folder->tree(CAKE . 'Config', false, 'dir');
- $this->assertSame(array(), array_diff($expected[0], $result));
- $this->assertSame(array(), array_diff($expected[0], $result));
- $result = $Folder->tree(CAKE . 'Config', false, 'files');
- $this->assertSame(array(), array_diff($expected[1], $result));
- $this->assertSame(array(), array_diff($expected[1], $result));
- }
- /**
- * testFolderTreeWithHiddenFiles method
- *
- * @return void
- */
- public function testFolderTreeWithHiddenFiles() {
- $this->skipIf(!is_writable(TMP), 'Can\'t test Folder::tree with hidden files unless the tmp folder is writable.');
- $path = TMP . 'tests/';
- $Folder = new Folder($path . 'folder_tree_hidden', true, 0777);
- mkdir($Folder->path . DS . '.svn', 0777, true);
- touch($Folder->path . DS . '.svn/InHiddenFolder.php');
- mkdir($Folder->path . DS . '.svn/inhiddenfolder');
- touch($Folder->path . DS . '.svn/inhiddenfolder/NestedInHiddenFolder.php');
- touch($Folder->path . DS . 'not_hidden.txt');
- touch($Folder->path . DS . '.hidden.txt');
- mkdir($Folder->path . DS . 'visible_folder/.git', 0777, true);
- $expected = array(
- array(
- $Folder->path,
- $Folder->path . DS . 'visible_folder',
- ),
- array(
- $Folder->path . DS . 'not_hidden.txt',
- ),
- );
- $result = $Folder->tree(null, true);
- $this->assertEquals($expected, $result);
- $result = $Folder->tree(null, array('.'));
- $this->assertEquals($expected, $result);
- $expected = array(
- array(
- $Folder->path,
- $Folder->path . DS . 'visible_folder',
- $Folder->path . DS . 'visible_folder' . DS . '.git',
- $Folder->path . DS . '.svn',
- $Folder->path . DS . '.svn' . DS . 'inhiddenfolder',
- ),
- array(
- $Folder->path . DS . 'not_hidden.txt',
- $Folder->path . DS . '.hidden.txt',
- $Folder->path . DS . '.svn' . DS . 'inhiddenfolder' . DS . 'NestedInHiddenFolder.php',
- $Folder->path . DS . '.svn' . DS . 'InHiddenFolder.php',
- ),
- );
- $result = $Folder->tree(null, false);
- sort($result[0]);
- sort($expected[0]);
- sort($result[1]);
- sort($expected[1]);
- $this->assertEquals($expected, $result);
- $Folder->delete();
- }
- /**
- * testWindowsPath method
- *
- * @return void
- */
- public function testWindowsPath() {
- $this->assertFalse(Folder::isWindowsPath('0:\\cake\\is\\awesome'));
- $this->assertTrue(Folder::isWindowsPath('C:\\cake\\is\\awesome'));
- $this->assertTrue(Folder::isWindowsPath('d:\\cake\\is\\awesome'));
- $this->assertTrue(Folder::isWindowsPath('\\\\vmware-host\\Shared Folders\\file'));
- }
- /**
- * testIsAbsolute method
- *
- * @return void
- */
- public function testIsAbsolute() {
- $this->assertFalse(Folder::isAbsolute('path/to/file'));
- $this->assertFalse(Folder::isAbsolute('cake/'));
- $this->assertFalse(Folder::isAbsolute('path\\to\\file'));
- $this->assertFalse(Folder::isAbsolute('0:\\path\\to\\file'));
- $this->assertFalse(Folder::isAbsolute('\\path/to/file'));
- $this->assertFalse(Folder::isAbsolute('\\path\\to\\file'));
- $this->assertTrue(Folder::isAbsolute('/usr/local'));
- $this->assertTrue(Folder::isAbsolute('//path/to/file'));
- $this->assertTrue(Folder::isAbsolute('C:\\cake'));
- $this->assertTrue(Folder::isAbsolute('C:\\path\\to\\file'));
- $this->assertTrue(Folder::isAbsolute('d:\\path\\to\\file'));
- $this->assertTrue(Folder::isAbsolute('\\\\vmware-host\\Shared Folders\\file'));
- }
- /**
- * testIsSlashTerm method
- *
- * @return void
- */
- public function testIsSlashTerm() {
- $this->assertFalse(Folder::isSlashTerm('cake'));
- $this->assertTrue(Folder::isSlashTerm('C:\\cake\\'));
- $this->assertTrue(Folder::isSlashTerm('/usr/local/'));
- }
- /**
- * testStatic method
- *
- * @return void
- */
- public function testSlashTerm() {
- $result = Folder::slashTerm('/path/to/file');
- $this->assertEquals('/path/to/file/', $result);
- }
- /**
- * testNormalizePath method
- *
- * @return void
- */
- public function testNormalizePath() {
- $path = '/path/to/file';
- $result = Folder::normalizePath($path);
- $this->assertEquals('/', $result);
- $path = '\\path\\\to\\\file';
- $result = Folder::normalizePath($path);
- $this->assertEquals('/', $result);
- $path = 'C:\\path\\to\\file';
- $result = Folder::normalizePath($path);
- $this->assertEquals('\\', $result);
- }
- /**
- * correctSlashFor method
- *
- * @return void
- */
- public function testCorrectSlashFor() {
- $path = '/path/to/file';
- $result = Folder::correctSlashFor($path);
- $this->assertEquals('/', $result);
- $path = '\\path\\to\\file';
- $result = Folder::correctSlashFor($path);
- $this->assertEquals('/', $result);
- $path = 'C:\\path\to\\file';
- $result = Folder::correctSlashFor($path);
- $this->assertEquals('\\', $result);
- }
- /**
- * testInCakePath method
- *
- * @return void
- */
- public 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);
- $path = DS . 'src' . DS . 'Config';
- $Folder->cd(ROOT . DS . 'src' . DS . 'Config');
- $result = $Folder->inCakePath($path);
- $this->assertTrue($result);
- }
- /**
- * testFind method
- *
- * @return void
- */
- public function testFind() {
- $Folder = new Folder();
- $Folder->cd(CAKE . 'Config');
- $result = $Folder->find();
- $expected = array('config.php');
- $this->assertSame(array_diff($expected, $result), array());
- $this->assertSame(array_diff($expected, $result), array());
- $result = $Folder->find('.*', true);
- $expected = array('cacert.pem', 'config.php', 'routes.php');
- $this->assertSame($expected, $result);
- $result = $Folder->find('.*\.php');
- $expected = array('config.php');
- $this->assertSame(array_diff($expected, $result), array());
- $this->assertSame(array_diff($expected, $result), array());
- $result = $Folder->find('.*\.php', true);
- $expected = array('config.php', 'routes.php');
- $this->assertSame($expected, $result);
- $result = $Folder->find('.*ig\.php');
- $expected = array('config.php');
- $this->assertSame($expected, $result);
- $result = $Folder->find('config\.php');
- $expected = array('config.php');
- $this->assertSame($expected, $result);
- $Folder = new Folder(TMP . 'tests/', true);
- $File = new File($Folder->pwd() . DS . 'paths.php', true);
- $Folder->create($Folder->pwd() . DS . 'testme');
- $Folder->cd('testme');
- $result = $Folder->find('paths\.php');
- $expected = array();
- $this->assertSame($expected, $result);
- $Folder->cd($Folder->pwd() . '/..');
- $result = $Folder->find('paths\.php');
- $expected = array('paths.php');
- $this->assertSame($expected, $result);
- }
- /**
- * testFindRecursive method
- *
- * @return void
- */
- public function testFindRecursive() {
- $Folder = new Folder(CAKE);
- $result = $Folder->findRecursive('(config|paths)\.php');
- $expected = array(
- CAKE . 'Config' . DS . 'config.php'
- );
- $this->assertSame(array(), array_diff($expected, $result));
- $this->assertSame(array(), array_diff($expected, $result));
- $result = $Folder->findRecursive('(config|woot)\.php', true);
- $expected = array(
- CAKE . 'Config' . DS . 'config.php'
- );
- $this->assertSame($expected, $result);
- $path = TMP . 'tests' . DS;
- $Folder = new Folder($path, true);
- $Folder->create($path . 'sessions');
- $Folder->create($path . 'testme');
- $Folder->cd($path . 'testme');
- $File = new File($Folder->pwd() . DS . 'paths.php');
- $File->create();
- $Folder->cd($path . 'sessions');
- $result = $Folder->findRecursive('paths\.php');
- $expected = array();
- $this->assertSame($expected, $result);
- $Folder->cd($path . 'testme');
- $File = new File($Folder->pwd() . DS . 'my.php');
- $File->create();
- $Folder->cd($path);
- $result = $Folder->findRecursive('(paths|my)\.php');
- $expected = array(
- $path . 'testme' . DS . 'my.php',
- $path . 'testme' . DS . 'paths.php'
- );
- $this->assertSame(sort($expected), sort($result));
- $result = $Folder->findRecursive('(paths|my)\.php', true);
- $expected = array(
- $path . 'testme' . DS . 'my.php',
- $path . 'testme' . DS . 'paths.php'
- );
- $this->assertSame($expected, $result);
- }
- /**
- * testConstructWithNonExistentPath method
- *
- * @return void
- */
- public function testConstructWithNonExistentPath() {
- $path = TMP . 'tests/';
- $Folder = new Folder($path . 'config_non_existent', true);
- $this->assertTrue(is_dir($path . 'config_non_existent'));
- $Folder->cd($path);
- }
- /**
- * testDirSize method
- *
- * @return void
- */
- public function testDirSize() {
- $path = TMP . 'tests/';
- $Folder = new Folder($path . 'config_non_existent', true);
- $this->assertEquals(0, $Folder->dirSize());
- $File = new File($Folder->pwd() . DS . 'my.php', true, 0777);
- $File->create();
- $File->write('something here');
- $File->close();
- $this->assertEquals(14, $Folder->dirSize());
- }
- /**
- * test that errors and messages can be resetted
- *
- * @return void
- */
- public function testReset() {
- $path = TMP . 'tests' . DS . 'folder_delete_test';
- mkdir($path, 0777, true);
- $folder = $path . DS . 'sub';
- mkdir($folder);
- $file = $folder . DS . 'file';
- touch($file);
- chmod($folder, 0555);
- chmod($file, 0444);
- $Folder = new Folder($folder);
- $return = $Folder->delete();
- $this->assertFalse($return);
- $messages = $Folder->messages();
- $errors = $Folder->errors();
- $expected = array(
- $file . ' NOT removed',
- $folder . ' NOT removed',
- );
- sort($expected);
- sort($errors);
- $this->assertEmpty($messages);
- $this->assertEquals($expected, $errors);
- chmod($file, 0644);
- chmod($folder, 0755);
- $return = $Folder->delete();
- $this->assertTrue($return);
- $messages = $Folder->messages();
- $errors = $Folder->errors();
- $expected = array(
- $file . ' removed',
- $folder . ' removed',
- );
- sort($expected);
- sort($messages);
- $this->assertEmpty($errors);
- $this->assertEquals($expected, $messages);
- }
- /**
- * testDelete method
- *
- * @return void
- */
- public function testDelete() {
- $path = TMP . 'tests' . DS . 'folder_delete_test';
- mkdir($path, 0777, true);
- touch($path . DS . 'file_1');
- mkdir($path . DS . 'level_1_1');
- touch($path . DS . 'level_1_1/file_1_1');
- mkdir($path . DS . 'level_1_1/level_2_1');
- touch($path . DS . 'level_1_1/level_2_1/file_2_1');
- touch($path . DS . 'level_1_1/level_2_1/file_2_2');
- mkdir($path . DS . 'level_1_1/level_2_2');
- $Folder = new Folder($path, true);
- $return = $Folder->delete();
- $this->assertTrue($return);
- $messages = $Folder->messages();
- $errors = $Folder->errors();
- $this->assertEquals(array(), $errors);
- $expected = array(
- $path . DS . 'file_1 removed',
- $path . DS . 'level_1_1' . DS . 'file_1_1 removed',
- $path . DS . 'level_1_1' . DS . 'level_2_1' . DS . 'file_2_1 removed',
- $path . DS . 'level_1_1' . DS . 'level_2_1' . DS . 'file_2_2 removed',
- $path . DS . 'level_1_1' . DS . 'level_2_1 removed',
- $path . DS . 'level_1_1' . DS . 'level_2_2 removed',
- $path . DS . 'level_1_1 removed',
- $path . ' removed'
- );
- sort($expected);
- sort($messages);
- $this->assertEquals($expected, $messages);
- }
- /**
- * testCopy method
- *
- * Verify that subdirectories existing in both destination and source directory
- * are merged recursively.
- *
- * @return void
- */
- public function testCopy() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->copy($folderThree);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy($folderThree);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'file2.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderB' . DS . 'fileB.php'));
- $Folder = new Folder($path);
- $Folder->delete();
- }
- /**
- * testCopyWithMerge method
- *
- * Verify that subdirectories existing in both destination and source directory
- * are merged recursively.
- *
- * @return void
- */
- public function testCopyWithMerge() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->copy($folderThree);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy(array('to' => $folderThree, 'scheme' => Folder::MERGE));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'file2.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderB' . DS . 'fileB.php'));
- }
- /**
- * testCopyWithSkip method
- *
- * Verify that directories and files are copied recursively
- * even if the destination directory already exists.
- * Subdirectories existing in both destination and source directory
- * are skipped and not merged or overwritten.
- *
- * @return void
- */
- public function testCopyWithSkip() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(array('to' => $folderTwo, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderTwo . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(array('to' => $folderTwo, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderTwo . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- new Folder($folderTwo, true);
- new Folder($folderTwo . DS . 'folderB', true);
- file_put_contents($folderTwo . DS . 'file2.php', 'touched');
- file_put_contents($folderTwo . DS . 'folderB' . DS . 'fileB.php', 'untouched');
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy(array('to' => $folderThree, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file2.php'));
- $this->assertEquals('touched', file_get_contents($folderThree . DS . 'file2.php'));
- $this->assertEquals('untouched', file_get_contents($folderThree . DS . 'folderB' . DS . 'fileB.php'));
- }
- /**
- * testCopyWithOverwrite
- *
- * Verify that subdirectories existing in both destination and source directory
- * are overwritten/replaced recursively.
- *
- * @return void
- */
- public function testCopyWithOverwrite() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(array('to' => $folderThree, 'scheme' => Folder::OVERWRITE));
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy(array('to' => $folderThree, 'scheme' => Folder::OVERWRITE));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $Folder = new Folder($folderOne);
- unlink($fileOneA);
- $result = $Folder->copy(array('to' => $folderThree, 'scheme' => Folder::OVERWRITE));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderThree . DS . 'file1.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'file2.php'));
- $this->assertTrue(!file_exists($folderThree . DS . 'folderA' . DS . 'fileA.php'));
- $this->assertTrue(file_exists($folderThree . DS . 'folderB' . DS . 'fileB.php'));
- }
- /**
- * Setup filesystem for copy tests
- * $path: folder_test/
- * - folder1/file1.php
- * - folder1/folderA/fileA.php
- * - folder2/file2.php
- * - folder2/folderB/fileB.php
- * - folder3/
- *
- * @return array Filenames to extract in the test methods
- */
- protected function _setupFilesystem() {
- $path = TMP . 'tests';
- $folderOne = $path . DS . 'folder1';
- $folderOneA = $folderOne . DS . 'folderA';
- $folderTwo = $path . DS . 'folder2';
- $folderTwoB = $folderTwo . DS . 'folderB';
- $folderThree = $path . DS . 'folder3';
- $fileOne = $folderOne . DS . 'file1.php';
- $fileTwo = $folderTwo . DS . 'file2.php';
- $fileOneA = $folderOneA . DS . 'fileA.php';
- $fileTwoB = $folderTwoB . DS . 'fileB.php';
- new Folder($path, true);
- new Folder($folderOne, true);
- new Folder($folderOneA, true);
- new Folder($folderTwo, true);
- new Folder($folderTwoB, true);
- new Folder($folderThree, true);
- touch($fileOne);
- touch($fileTwo);
- touch($fileOneA);
- touch($fileTwoB);
- return compact(
- 'path',
- 'folderOne', 'folderOneA', 'folderTwo', 'folderTwoB', 'folderThree',
- 'fileOne', 'fileOneA', 'fileTwo', 'fileTwoB');
- }
- /**
- * testMove method
- *
- * Verify that directories and files are moved recursively
- * even if the destination directory already exists.
- * Subdirectories existing in both destination and source directory
- * are merged recursively.
- *
- * @return void
- */
- public function testMove() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->move($folderTwo);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertTrue(is_dir($folderTwo . '/folderB'));
- $this->assertTrue(file_exists($folderTwo . '/folderB/fileB.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertTrue(file_exists($folderTwo . '/folderA'));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- new Folder($folderOne, true);
- new Folder($folderOneA, true);
- touch($fileOne);
- touch($fileOneA);
- $Folder = new Folder($folderOne);
- $result = $Folder->move($folderTwo);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertTrue(is_dir($folderTwo . '/folderA'));
- $this->assertTrue(file_exists($folderTwo . '/folderA/fileA.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- new Folder($folderOne, true);
- new Folder($folderOneA, true);
- new Folder($folderTwo, true);
- new Folder($folderTwoB, true);
- touch($fileOne);
- touch($fileOneA);
- new Folder($folderOne . '/folderB', true);
- touch($folderOne . '/folderB/fileB.php');
- file_put_contents($folderTwoB . '/fileB.php', 'untouched');
- $Folder = new Folder($folderOne);
- $result = $Folder->move($folderTwo);
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertEquals('', file_get_contents($folderTwoB . '/fileB.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($path);
- $Folder->delete();
- }
- /**
- * testMoveWithSkip method
- *
- * Verify that directories and files are moved recursively
- * even if the destination directory already exists.
- * Subdirectories existing in both destination and source directory
- * are skipped and not merged or overwritten.
- *
- * @return void
- */
- public function testMoveWithSkip() {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->move(array('to' => $folderTwo, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertTrue(is_dir($folderTwo . '/folderB'));
- $this->assertTrue(file_exists($folderTwoB . '/fileB.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- new Folder($folderOne, true);
- new Folder($folderOneA, true);
- new Folder($folderTwo, true);
- touch($fileOne);
- touch($fileOneA);
- $Folder = new Folder($folderOne);
- $result = $Folder->move(array('to' => $folderTwo, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertTrue(is_dir($folderTwo . '/folderA'));
- $this->assertTrue(file_exists($folderTwo . '/folderA/fileA.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- new Folder($folderOne, true);
- new Folder($folderOneA, true);
- new Folder($folderTwo, true);
- new Folder($folderTwoB, true);
- touch($fileOne);
- touch($fileOneA);
- file_put_contents($folderTwoB . '/fileB.php', 'untouched');
- $Folder = new Folder($folderOne);
- $result = $Folder->move(array('to' => $folderTwo, 'scheme' => Folder::SKIP));
- $this->assertTrue($result);
- $this->assertTrue(file_exists($folderTwo . '/file1.php'));
- $this->assertEquals('untouched', file_get_contents($folderTwoB . '/fileB.php'));
- $this->assertFalse(file_exists($fileOne));
- $this->assertFalse(file_exists($folderOneA));
- $this->assertFalse(file_exists($fileOneA));
- $Folder = new Folder($path);
- $Folder->delete();
- }
- }
|