| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397 |
- <?php
- /**
- * FolderTest file
- *
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Filesystem;
- use Cake\Filesystem\File;
- use Cake\Filesystem\Folder;
- use Cake\TestSuite\TestCase;
- /**
- * 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 . DS . $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()
- {
- // "/tests/test_app/"
- $basePath = TEST_APP;
- $Base = new Folder($basePath);
- $result = $Base->pwd();
- $this->assertEquals($basePath, $result);
- // is "/" in "/tests/test_app/"
- $result = $Base->inPath(realpath(DS), true);
- $this->assertFalse($result, true);
- // is "/tests/test_app/" in "/tests/test_app/"
- $result = $Base->inPath($basePath, true);
- $this->assertTrue($result);
- // is "/tests/test_app" in "/tests/test_app/"
- $result = $Base->inPath(mb_substr($basePath, 0, -1), true);
- $this->assertTrue($result);
- // is "/tests/test_app/sub" in "/tests/test_app/"
- $result = $Base->inPath($basePath . 'sub', true);
- $this->assertTrue($result);
- // is "/tests" in "/tests/test_app/"
- $result = $Base->inPath(dirname($basePath), true);
- $this->assertFalse($result);
- // is "/tests/other/(...)tests/test_app" in "/tests/test_app/"
- $result = $Base->inPath(TMP . 'tests' . DS . 'other' . DS . $basePath, true);
- $this->assertFalse($result);
- // is "/tests/test_app/" in "/"
- $result = $Base->inPath(realpath(DS));
- $this->assertTrue($result);
- // is "/tests/test_app/" in "/tests/test_app/"
- $result = $Base->inPath($basePath);
- $this->assertTrue($result);
- // is "/tests/test_app/" in "/tests/test_app"
- $result = $Base->inPath(mb_substr($basePath, 0, -1));
- $this->assertTrue($result);
- // is "/tests/test_app/" in "/tests"
- $result = $Base->inPath(dirname($basePath));
- $this->assertTrue($result);
- // is "/tests/test_app/" in "/tests/test_app/sub"
- $result = $Base->inPath($basePath . 'sub');
- $this->assertFalse($result);
- // is "/other/tests/test_app/" in "/tests/test_app/"
- $VirtualBase = new Folder();
- $VirtualBase->path = '/other/tests/test_app';
- $result = $VirtualBase->inPath('/tests/test_app/');
- $this->assertFalse($result);
- }
- /**
- * Data provider for the testInPathInvalidPathArgument test
- *
- * @return array
- */
- public function inPathInvalidPathArgumentDataProvider()
- {
- return [
- [''],
- ['relative/path/'],
- ['unknown://stream-wrapper']
- ];
- }
- /**
- * @dataProvider inPathInvalidPathArgumentDataProvider
- * @param string $path
- */
- public function testInPathInvalidPathArgument($path)
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The $path argument is expected to be an absolute path.');
- $Folder = new Folder();
- $Folder->inPath($path);
- }
- /**
- * 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' . DS . 'first' . DS . 'second' . DS . 'third');
- rmdir(TMP . 'tests' . DS . 'first' . DS . 'second');
- rmdir(TMP . 'tests' . DS . '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->assertDirectoryExists($path, 'Folder was not made');
- $Folder = new Folder(TMP . 'tests' . DS . 'trailing');
- $this->assertTrue($Folder->delete());
- }
- /**
- * Test that relative paths to create() are added to cwd.
- *
- * @return void
- */
- public function testCreateRelative()
- {
- $folder = new Folder(TMP);
- $path = TMP . 'tests' . DS . 'relative-test';
- $result = $folder->create('tests' . DS . 'relative-test');
- $this->assertTrue($result, 'should create');
- $this->assertDirectoryExists($path, 'Folder was not made');
- $folder = new Folder($path);
- $folder->delete();
- }
- /**
- * test recursive directory create failure.
- *
- * @return void
- */
- public function testRecursiveCreateFailure()
- {
- $this->skipIf(DS === '\\', '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 (\Exception $e) {
- $this->assertInstanceOf('PHPUnit\Framework\Error\Error', $e);
- }
- chmod($path, '0777');
- rmdir($path);
- }
- /**
- * testOperations method
- *
- * @return void
- */
- public function testOperations()
- {
- $path = CAKE . 'Template';
- $Folder = new Folder($path);
- $result = $Folder->pwd();
- $this->assertSame($path, $result);
- $new = TMP . 'tests' . DS . 'test_folder_new';
- $result = $Folder->create($new);
- $this->assertTrue($result);
- $copy = TMP . 'tests' . DS . 'test_folder_copy';
- $result = $Folder->copy($copy);
- $this->assertTrue($result);
- $copy = TMP . 'tests' . DS . 'test_folder_copy';
- $result = $Folder->copy($copy);
- $this->assertTrue($result);
- $copy = TMP . 'tests' . DS . 'test_folder_copy';
- $result = $Folder->chmod($copy, 0755, false);
- $this->assertTrue($result);
- $result = $Folder->cd($copy);
- $this->assertTrue((bool)$result);
- $mv = TMP . 'tests' . DS . 'test_folder_mv';
- $result = $Folder->move($mv);
- $this->assertTrue($result);
- $mv = TMP . 'tests' . DS . '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 = 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' . DS . '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(DS === '\\', '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, ['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' . DS);
- $this->assertEquals(realpath('files' . DS), $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, ['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', ['another_path']);
- $this->assertEquals($expected, $result);
- $result = Folder::addPathElement(DS . 'some' . DS . 'dir' . DS, ['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', ['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 = [[], []];
- $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' . DS;
- $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 = [
- ['some_folder'],
- ['not_hidden.txt'],
- ];
- $result = $Folder->read(true, true);
- $this->assertEquals($expected, $result);
- $expected = [
- [
- '.svn',
- 'some_folder'
- ],
- [
- '.hidden.txt',
- 'not_hidden.txt'
- ],
- ];
- $result = $Folder->read(true);
- $this->assertEquals($expected, $result);
- }
- /**
- * testFolderSubdirectories method
- *
- * @return void
- */
- public function testFolderSubdirectories()
- {
- $path = CAKE . 'Network';
- $folder = new Folder($path);
- $expected = [
- $path . DS . 'Exception',
- $path . DS . 'Http',
- $path . DS . 'Session'
- ];
- $result = $folder->subdirectories();
- $this->assertSame([], array_diff($expected, $result));
- $result = $folder->subdirectories($path);
- $this->assertSame([], array_diff($expected, $result));
- $expected = [
- 'Exception',
- 'Http',
- 'Session'
- ];
- $result = $folder->subdirectories(null, false);
- $this->assertSame([], array_diff($expected, $result));
- $result = $folder->subdirectories($path, false);
- $this->assertSame([], array_diff($expected, $result));
- $expected = [];
- $result = $folder->subdirectories('NonExistentPath');
- $this->assertSame([], array_diff($expected, $result));
- $result = $folder->subdirectories($path . DS . 'Exception');
- $this->assertSame([], array_diff($expected, $result));
- }
- /**
- * testFolderTree method
- *
- * @return void
- */
- public function testFolderTree()
- {
- $Folder = new Folder();
- $expected = [
- [
- CORE_PATH . 'config',
- ],
- [
- CORE_PATH . 'config' . DS . 'config.php',
- ]
- ];
- $result = $Folder->tree(CORE_PATH . 'config', false);
- $this->assertSame([], array_diff($expected[0], $result[0]));
- $this->assertSame([], array_diff($result[0], $expected[0]));
- $result = $Folder->tree(CORE_PATH . 'config', false, 'dir');
- $this->assertSame([], array_diff($expected[0], $result));
- $this->assertSame([], array_diff($expected[0], $result));
- $result = $Folder->tree(CORE_PATH . 'config', false, 'files');
- $this->assertSame([], array_diff($expected[1], $result));
- $this->assertSame([], 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' . DS;
- $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 = [
- [
- $Folder->path,
- $Folder->path . DS . 'visible_folder',
- ],
- [
- $Folder->path . DS . 'not_hidden.txt',
- ],
- ];
- $result = $Folder->tree(null, true);
- $this->assertEquals($expected, $result);
- $result = $Folder->tree(null, ['.']);
- $this->assertEquals($expected, $result);
- $expected = [
- [
- $Folder->path,
- $Folder->path . DS . 'visible_folder',
- $Folder->path . DS . 'visible_folder' . DS . '.git',
- $Folder->path . DS . '.svn',
- $Folder->path . DS . '.svn' . DS . 'inhiddenfolder',
- ],
- [
- $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->assertFalse(Folder::isAbsolute('notRegisteredStreamWrapper://example'));
- $this->assertFalse(Folder::isAbsolute('://example'));
- $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'));
- $this->assertTrue(Folder::isAbsolute('http://www.example.com'));
- }
- /**
- * 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
- *
- * @group deprecated
- * @return void
- */
- public function testInCakePath()
- {
- $this->deprecated(function () {
- $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 . 'config';
- $Folder->cd(ROOT . DS . 'config');
- $result = $Folder->inCakePath($path);
- $this->assertTrue($result);
- });
- }
- /**
- * testFind method
- *
- * @return void
- */
- public function testFind()
- {
- $Folder = new Folder();
- $Folder->cd(CORE_PATH . 'config');
- $result = $Folder->find();
- $expected = ['config.php'];
- $this->assertSame(array_diff($expected, $result), []);
- $this->assertSame(array_diff($expected, $result), []);
- $result = $Folder->find('.*', true);
- $expected = ['bootstrap.php', 'cacert.pem', 'config.php'];
- $this->assertSame($expected, $result);
- $result = $Folder->find('.*\.php');
- $expected = ['bootstrap.php', 'config.php'];
- $this->assertSame(array_diff($expected, $result), []);
- $this->assertSame(array_diff($expected, $result), []);
- $result = $Folder->find('.*\.php', true);
- $expected = ['bootstrap.php', 'config.php'];
- $this->assertSame($expected, $result);
- $result = $Folder->find('.*ig\.php');
- $expected = ['config.php'];
- $this->assertSame($expected, $result);
- $result = $Folder->find('config\.php');
- $expected = ['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 = [];
- $this->assertSame($expected, $result);
- $Folder->cd($Folder->pwd() . '/..');
- $result = $Folder->find('paths\.php');
- $expected = ['paths.php'];
- $this->assertSame($expected, $result);
- }
- /**
- * testFindRecursive method
- *
- * @return void
- */
- public function testFindRecursive()
- {
- $Folder = new Folder(CORE_PATH . 'config');
- $result = $Folder->findRecursive('(config|paths)\.php');
- $expected = [
- CORE_PATH . 'config' . DS . 'config.php'
- ];
- $this->assertSame([], array_diff($expected, $result));
- $result = $Folder->findRecursive('(config|bootstrap)\.php', true);
- $expected = [
- CORE_PATH . 'config' . DS . 'bootstrap.php',
- CORE_PATH . '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 = [];
- $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 = [
- $path . 'testme' . DS . 'my.php',
- $path . 'testme' . DS . 'paths.php'
- ];
- $this->assertSame(sort($expected), sort($result));
- $result = $Folder->findRecursive('(paths|my)\.php', true);
- $expected = [
- $path . 'testme' . DS . 'my.php',
- $path . 'testme' . DS . 'paths.php'
- ];
- $this->assertSame($expected, $result);
- }
- /**
- * testConstructWithNonExistentPath method
- *
- * @return void
- */
- public function testConstructWithNonExistentPath()
- {
- $path = TMP . 'tests' . DS;
- $Folder = new Folder($path . 'config_non_existent', true);
- $this->assertDirectoryExists($path . 'config_non_existent');
- $Folder->cd($path);
- }
- /**
- * testDirSize method
- *
- * @return void
- */
- public function testDirSize()
- {
- $path = TMP . 'tests' . DS;
- $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 restarted
- *
- * @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 = [
- $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 = [
- $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([], $errors);
- $expected = [
- $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->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy($folderThree);
- $this->assertTrue($result);
- $this->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'file2.php');
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $this->assertFileExists($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->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy(['to' => $folderThree, 'scheme' => Folder::MERGE]);
- $this->assertTrue($result);
- $this->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'file2.php');
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $this->assertFileExists($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(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . DS . 'file1.php');
- $this->assertFileExists($folderTwo . DS . 'folderA' . DS . 'fileA.php');
- $Folder = new Folder($folderTwo);
- $Folder->delete();
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . DS . 'file1.php');
- $this->assertFileExists($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(['to' => $folderThree, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderThree . DS . 'file2.php');
- $this->assertStringEqualsFile($folderThree . DS . 'file2.php', 'touched');
- $this->assertStringEqualsFile($folderThree . DS . 'folderB' . DS . 'fileB.php', 'untouched');
- }
- /**
- * Test that SKIP mode skips files too.
- *
- * @return void
- */
- public function testCopyWithSkipFileSkipped()
- {
- $path = TMP . 'folder_test';
- $folderOne = $path . DS . 'folder1';
- $folderTwo = $path . DS . 'folder2';
- new Folder($path, true);
- new Folder($folderOne, true);
- new Folder($folderTwo, true);
- file_put_contents($folderOne . DS . 'fileA.txt', 'Folder One File');
- file_put_contents($folderTwo . DS . 'fileA.txt', 'Folder Two File');
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertStringEqualsFile($folderTwo . DS . 'fileA.txt', 'Folder Two File');
- }
- /**
- * 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(['to' => $folderThree, 'scheme' => Folder::OVERWRITE]);
- $this->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $Folder = new Folder($folderTwo);
- $result = $Folder->copy(['to' => $folderThree, 'scheme' => Folder::OVERWRITE]);
- $this->assertTrue($result);
- $this->assertFileExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $Folder = new Folder($folderOne);
- unlink($fileOneA);
- $result = $Folder->copy(['to' => $folderThree, 'scheme' => Folder::OVERWRITE]);
- $this->assertTrue($result);
- $this->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertFileExists($folderThree . DS . 'file2.php');
- $this->assertFileNotExists($folderThree . DS . 'folderA' . DS . 'fileA.php');
- $this->assertFileExists($folderThree . DS . 'folderB' . DS . 'fileB.php');
- }
- /**
- * testCopyWithoutRecursive
- *
- * Verify that only the files exist in the target directory.
- *
- * @return void
- */
- public function testCopyWithoutRecursive()
- {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->copy(['to' => $folderThree, 'recursive' => false]);
- $this->assertFileExists($folderThree . DS . 'file1.php');
- $this->assertDirectoryNotExists($folderThree . DS . 'folderA');
- $this->assertFileNotExists($folderThree . DS . 'folderA' . DS . 'fileA.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->assertFileExists($folderTwo . '/file1.php');
- $this->assertDirectoryExists($folderTwo . '/folderB');
- $this->assertFileExists($folderTwo . '/folderB/fileB.php');
- $this->assertFileNotExists($fileOne);
- $this->assertFileExists($folderTwo . '/folderA');
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($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->assertFileExists($folderTwo . '/file1.php');
- $this->assertDirectoryExists($folderTwo . '/folderA');
- $this->assertFileExists($folderTwo . '/folderA/fileA.php');
- $this->assertFileNotExists($fileOne);
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($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->assertFileExists($folderTwo . '/file1.php');
- $this->assertStringEqualsFile($folderTwoB . '/fileB.php', '');
- $this->assertFileNotExists($fileOne);
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($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(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . '/file1.php');
- $this->assertDirectoryExists($folderTwo . '/folderB');
- $this->assertFileExists($folderTwoB . '/fileB.php');
- $this->assertFileNotExists($fileOne);
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($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(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . '/file1.php');
- $this->assertDirectoryExists($folderTwo . '/folderA');
- $this->assertFileExists($folderTwo . '/folderA/fileA.php');
- $this->assertFileNotExists($fileOne);
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($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(['to' => $folderTwo, 'scheme' => Folder::SKIP]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . '/file1.php');
- $this->assertStringEqualsFile($folderTwoB . '/fileB.php', 'untouched');
- $this->assertFileNotExists($fileOne);
- $this->assertFileNotExists($folderOneA);
- $this->assertFileNotExists($fileOneA);
- $Folder = new Folder($path);
- $Folder->delete();
- }
- public function testMoveWithoutRecursive()
- {
- extract($this->_setupFilesystem());
- $Folder = new Folder($folderOne);
- $result = $Folder->move(['to' => $folderTwo, 'recursive' => false]);
- $this->assertTrue($result);
- $this->assertFileExists($folderTwo . '/file1.php');
- $this->assertDirectoryNotExists($folderTwo . '/folderA');
- $this->assertFileNotExists($folderTwo . '/folderA/fileA.php');
- }
- /**
- * testSortByTime method
- *
- * Verify that the order using modified time is correct.
- *
- * @return void
- */
- public function testSortByTime()
- {
- $Folder = new Folder(TMP . 'tests', true);
- $file2 = new File($Folder->pwd() . DS . 'file_2.tmp');
- $file2->create();
- sleep(1);
- $file1 = new File($Folder->pwd() . DS . 'file_1.tmp');
- $file1->create();
- $results = $Folder->find('.*', Folder::SORT_TIME);
- $this->assertSame(['file_2.tmp', 'file_1.tmp'], $results);
- }
- /**
- * Verify that the order using name is correct.
- */
- public function testSortByName()
- {
- $Folder = new Folder(TMP . 'tests', true);
- $fileA = new File($Folder->pwd() . DS . 'a.txt');
- $fileA->create();
- $fileC = new File($Folder->pwd() . DS . 'c.txt');
- $fileC->create();
- sleep(1);
- $fileB = new File($Folder->pwd() . DS . 'b.txt');
- $fileB->create();
- $results = $Folder->find('.*', Folder::SORT_NAME);
- $this->assertSame(['a.txt', 'b.txt', 'c.txt'], $results);
- }
- }
|