12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Filesystem\Tests;
- /**
- * Test class for Filesystem.
- */
- class FilesystemTest extends FilesystemTestCase
- {
- public function testCopyCreatesNewFile()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- $this->assertFileExists($targetFilePath);
- $this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testCopyFails()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testCopyUnreadableFileFails()
- {
- // skip test on Windows; PHP can't easily set file as unreadable on Windows
- if ('\\' === DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('This test cannot run on Windows.');
- }
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- // make sure target cannot be read
- $this->filesystem->chmod($sourceFilePath, 0222);
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- }
- public function testCopyOverridesExistingFileIfModified()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- file_put_contents($targetFilePath, 'TARGET FILE');
- touch($targetFilePath, time() - 1000);
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- $this->assertFileExists($targetFilePath);
- $this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath));
- }
- public function testCopyDoesNotOverrideExistingFileByDefault()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- file_put_contents($targetFilePath, 'TARGET FILE');
- // make sure both files have the same modification time
- $modificationTime = time() - 1000;
- touch($sourceFilePath, $modificationTime);
- touch($targetFilePath, $modificationTime);
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- $this->assertFileExists($targetFilePath);
- $this->assertEquals('TARGET FILE', file_get_contents($targetFilePath));
- }
- public function testCopyOverridesExistingFileIfForced()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- file_put_contents($targetFilePath, 'TARGET FILE');
- // make sure both files have the same modification time
- $modificationTime = time() - 1000;
- touch($sourceFilePath, $modificationTime);
- touch($targetFilePath, $modificationTime);
- $this->filesystem->copy($sourceFilePath, $targetFilePath, true);
- $this->assertFileExists($targetFilePath);
- $this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testCopyWithOverrideWithReadOnlyTargetFails()
- {
- // skip test on Windows; PHP can't easily set file as unwritable on Windows
- if ('\\' === DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('This test cannot run on Windows.');
- }
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- file_put_contents($targetFilePath, 'TARGET FILE');
- // make sure both files have the same modification time
- $modificationTime = time() - 1000;
- touch($sourceFilePath, $modificationTime);
- touch($targetFilePath, $modificationTime);
- // make sure target is read-only
- $this->filesystem->chmod($targetFilePath, 0444);
- $this->filesystem->copy($sourceFilePath, $targetFilePath, true);
- }
- public function testCopyCreatesTargetDirectoryIfItDoesNotExist()
- {
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFileDirectory = $this->workspace.DIRECTORY_SEPARATOR.'directory';
- $targetFilePath = $targetFileDirectory.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- $this->assertTrue(is_dir($targetFileDirectory));
- $this->assertFileExists($targetFilePath);
- $this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath));
- }
- public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy()
- {
- $sourceFilePath = 'http://symfony.com/images/common/logo/logo_symfony_header.png';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($targetFilePath, 'TARGET FILE');
- $this->filesystem->copy($sourceFilePath, $targetFilePath, false);
- $this->assertFileExists($targetFilePath);
- $this->assertEquals(file_get_contents($sourceFilePath), file_get_contents($targetFilePath));
- }
- public function testMkdirCreatesDirectoriesRecursively()
- {
- $directory = $this->workspace
- .DIRECTORY_SEPARATOR.'directory'
- .DIRECTORY_SEPARATOR.'sub_directory';
- $this->filesystem->mkdir($directory);
- $this->assertTrue(is_dir($directory));
- }
- public function testMkdirCreatesDirectoriesFromArray()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- $directories = array(
- $basePath.'1', $basePath.'2', $basePath.'3',
- );
- $this->filesystem->mkdir($directories);
- $this->assertTrue(is_dir($basePath.'1'));
- $this->assertTrue(is_dir($basePath.'2'));
- $this->assertTrue(is_dir($basePath.'3'));
- }
- public function testMkdirCreatesDirectoriesFromTraversableObject()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- $directories = new \ArrayObject(array(
- $basePath.'1', $basePath.'2', $basePath.'3',
- ));
- $this->filesystem->mkdir($directories);
- $this->assertTrue(is_dir($basePath.'1'));
- $this->assertTrue(is_dir($basePath.'2'));
- $this->assertTrue(is_dir($basePath.'3'));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testMkdirCreatesDirectoriesFails()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- $dir = $basePath.'2';
- file_put_contents($dir, '');
- $this->filesystem->mkdir($dir);
- }
- public function testTouchCreatesEmptyFile()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.'1';
- $this->filesystem->touch($file);
- $this->assertFileExists($file);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testTouchFails()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.'1'.DIRECTORY_SEPARATOR.'2';
- $this->filesystem->touch($file);
- }
- public function testTouchCreatesEmptyFilesFromArray()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- $files = array(
- $basePath.'1', $basePath.'2', $basePath.'3',
- );
- $this->filesystem->touch($files);
- $this->assertFileExists($basePath.'1');
- $this->assertFileExists($basePath.'2');
- $this->assertFileExists($basePath.'3');
- }
- public function testTouchCreatesEmptyFilesFromTraversableObject()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- $files = new \ArrayObject(array(
- $basePath.'1', $basePath.'2', $basePath.'3',
- ));
- $this->filesystem->touch($files);
- $this->assertFileExists($basePath.'1');
- $this->assertFileExists($basePath.'2');
- $this->assertFileExists($basePath.'3');
- }
- public function testRemoveCleansFilesAndDirectoriesIteratively()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR.'directory'.DIRECTORY_SEPARATOR;
- mkdir($basePath);
- mkdir($basePath.'dir');
- touch($basePath.'file');
- $this->filesystem->remove($basePath);
- $this->assertFileNotExists($basePath);
- }
- public function testRemoveCleansArrayOfFilesAndDirectories()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- mkdir($basePath.'dir');
- touch($basePath.'file');
- $files = array(
- $basePath.'dir', $basePath.'file',
- );
- $this->filesystem->remove($files);
- $this->assertFileNotExists($basePath.'dir');
- $this->assertFileNotExists($basePath.'file');
- }
- public function testRemoveCleansTraversableObjectOfFilesAndDirectories()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- mkdir($basePath.'dir');
- touch($basePath.'file');
- $files = new \ArrayObject(array(
- $basePath.'dir', $basePath.'file',
- ));
- $this->filesystem->remove($files);
- $this->assertFileNotExists($basePath.'dir');
- $this->assertFileNotExists($basePath.'file');
- }
- public function testRemoveIgnoresNonExistingFiles()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- mkdir($basePath.'dir');
- $files = array(
- $basePath.'dir', $basePath.'file',
- );
- $this->filesystem->remove($files);
- $this->assertFileNotExists($basePath.'dir');
- }
- public function testRemoveCleansInvalidLinks()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $basePath = $this->workspace.DIRECTORY_SEPARATOR.'directory'.DIRECTORY_SEPARATOR;
- mkdir($basePath);
- mkdir($basePath.'dir');
- // create symlink to nonexistent file
- @symlink($basePath.'file', $basePath.'file-link');
- // create symlink to dir using trailing forward slash
- $this->filesystem->symlink($basePath.'dir/', $basePath.'dir-link');
- $this->assertTrue(is_dir($basePath.'dir-link'));
- // create symlink to nonexistent dir
- rmdir($basePath.'dir');
- $this->assertFalse('\\' === DIRECTORY_SEPARATOR ? @readlink($basePath.'dir-link') : is_dir($basePath.'dir-link'));
- $this->filesystem->remove($basePath);
- $this->assertFileNotExists($basePath);
- }
- public function testFilesExists()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR.'directory'.DIRECTORY_SEPARATOR;
- mkdir($basePath);
- touch($basePath.'file1');
- mkdir($basePath.'folder');
- $this->assertTrue($this->filesystem->exists($basePath.'file1'));
- $this->assertTrue($this->filesystem->exists($basePath.'folder'));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testFilesExistsFails()
- {
- if ('\\' !== DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('Test covers edge case on Windows only.');
- }
- $basePath = $this->workspace.'\\directory\\';
- $oldPath = getcwd();
- mkdir($basePath);
- chdir($basePath);
- $file = str_repeat('T', 259 - strlen($basePath));
- $path = $basePath.$file;
- exec('TYPE NUL >>'.$file); // equivalent of touch, we can not use the php touch() here because it suffers from the same limitation
- $this->longPathNamesWindows[] = $path; // save this so we can clean up later
- chdir($oldPath);
- $this->filesystem->exists($path);
- }
- public function testFilesExistsTraversableObjectOfFilesAndDirectories()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- mkdir($basePath.'dir');
- touch($basePath.'file');
- $files = new \ArrayObject(array(
- $basePath.'dir', $basePath.'file',
- ));
- $this->assertTrue($this->filesystem->exists($files));
- }
- public function testFilesNotExistsTraversableObjectOfFilesAndDirectories()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR;
- mkdir($basePath.'dir');
- touch($basePath.'file');
- touch($basePath.'file2');
- $files = new \ArrayObject(array(
- $basePath.'dir', $basePath.'file', $basePath.'file2',
- ));
- unlink($basePath.'file');
- $this->assertFalse($this->filesystem->exists($files));
- }
- public function testInvalidFileNotExists()
- {
- $basePath = $this->workspace.DIRECTORY_SEPARATOR.'directory'.DIRECTORY_SEPARATOR;
- $this->assertFalse($this->filesystem->exists($basePath.time()));
- }
- public function testChmodChangesFileMode()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.DIRECTORY_SEPARATOR.'file';
- touch($file);
- $this->filesystem->chmod($file, 0400);
- $this->filesystem->chmod($dir, 0753);
- $this->assertFilePermissions(753, $dir);
- $this->assertFilePermissions(400, $file);
- }
- public function testChmodWrongMod()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'file';
- touch($dir);
- $this->filesystem->chmod($dir, 'Wrongmode');
- }
- public function testChmodRecursive()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.DIRECTORY_SEPARATOR.'file';
- touch($file);
- $this->filesystem->chmod($file, 0400, 0000, true);
- $this->filesystem->chmod($dir, 0753, 0000, true);
- $this->assertFilePermissions(753, $dir);
- $this->assertFilePermissions(753, $file);
- }
- public function testChmodAppliesUmask()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- touch($file);
- $this->filesystem->chmod($file, 0770, 0022);
- $this->assertFilePermissions(750, $file);
- }
- public function testChmodChangesModeOfArrayOfFiles()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $directory = $this->workspace.DIRECTORY_SEPARATOR.'directory';
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $files = array($directory, $file);
- mkdir($directory);
- touch($file);
- $this->filesystem->chmod($files, 0753);
- $this->assertFilePermissions(753, $file);
- $this->assertFilePermissions(753, $directory);
- }
- public function testChmodChangesModeOfTraversableFileObject()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $directory = $this->workspace.DIRECTORY_SEPARATOR.'directory';
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $files = new \ArrayObject(array($directory, $file));
- mkdir($directory);
- touch($file);
- $this->filesystem->chmod($files, 0753);
- $this->assertFilePermissions(753, $file);
- $this->assertFilePermissions(753, $directory);
- }
- public function testChmodChangesZeroModeOnSubdirectoriesOnRecursive()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $directory = $this->workspace.DIRECTORY_SEPARATOR.'directory';
- $subdirectory = $directory.DIRECTORY_SEPARATOR.'subdirectory';
- mkdir($directory);
- mkdir($subdirectory);
- chmod($subdirectory, 0000);
- $this->filesystem->chmod($directory, 0753, 0000, true);
- $this->assertFilePermissions(753, $subdirectory);
- }
- public function testChown()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $this->filesystem->chown($dir, $this->getFileOwner($dir));
- }
- public function testChownRecursive()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.DIRECTORY_SEPARATOR.'file';
- touch($file);
- $this->filesystem->chown($dir, $this->getFileOwner($dir), true);
- }
- public function testChownSymlink()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $this->filesystem->chown($link, $this->getFileOwner($link));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testChownSymlinkFails()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $this->filesystem->chown($link, 'user'.time().mt_rand(1000, 9999));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testChownFail()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $this->filesystem->chown($dir, 'user'.time().mt_rand(1000, 9999));
- }
- public function testChgrp()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $this->filesystem->chgrp($dir, $this->getFileGroup($dir));
- }
- public function testChgrpRecursive()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.DIRECTORY_SEPARATOR.'file';
- touch($file);
- $this->filesystem->chgrp($dir, $this->getFileGroup($dir), true);
- }
- public function testChgrpSymlink()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $this->filesystem->chgrp($link, $this->getFileGroup($link));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testChgrpSymlinkFails()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $this->filesystem->chgrp($link, 'user'.time().mt_rand(1000, 9999));
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testChgrpFail()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $this->filesystem->chgrp($dir, 'user'.time().mt_rand(1000, 9999));
- }
- public function testRename()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $newPath = $this->workspace.DIRECTORY_SEPARATOR.'new_file';
- touch($file);
- $this->filesystem->rename($file, $newPath);
- $this->assertFileNotExists($file);
- $this->assertFileExists($newPath);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testRenameThrowsExceptionIfTargetAlreadyExists()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $newPath = $this->workspace.DIRECTORY_SEPARATOR.'new_file';
- touch($file);
- touch($newPath);
- $this->filesystem->rename($file, $newPath);
- }
- public function testRenameOverwritesTheTargetIfItAlreadyExists()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $newPath = $this->workspace.DIRECTORY_SEPARATOR.'new_file';
- touch($file);
- touch($newPath);
- $this->filesystem->rename($file, $newPath, true);
- $this->assertFileNotExists($file);
- $this->assertFileExists($newPath);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testRenameThrowsExceptionOnError()
- {
- $file = $this->workspace.DIRECTORY_SEPARATOR.uniqid('fs_test_', true);
- $newPath = $this->workspace.DIRECTORY_SEPARATOR.'new_file';
- $this->filesystem->rename($file, $newPath);
- }
- public function testSymlink()
- {
- if ('\\' === DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('Windows does not support creating "broken" symlinks');
- }
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- // $file does not exists right now: creating "broken" links is a wanted feature
- $this->filesystem->symlink($file, $link);
- $this->assertTrue(is_link($link));
- // Create the linked file AFTER creating the link
- touch($file);
- $this->assertEquals($file, readlink($link));
- }
- /**
- * @depends testSymlink
- */
- public function testRemoveSymlink()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- $this->filesystem->remove($link);
- $this->assertTrue(!is_link($link));
- $this->assertTrue(!is_file($link));
- $this->assertTrue(!is_dir($link));
- }
- public function testSymlinkIsOverwrittenIfPointsToDifferentTarget()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- symlink($this->workspace, $link);
- $this->filesystem->symlink($file, $link);
- $this->assertTrue(is_link($link));
- $this->assertEquals($file, readlink($link));
- }
- public function testSymlinkIsNotOverwrittenIfAlreadyCreated()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.DIRECTORY_SEPARATOR.'link';
- touch($file);
- symlink($file, $link);
- $this->filesystem->symlink($file, $link);
- $this->assertTrue(is_link($link));
- $this->assertEquals($file, readlink($link));
- }
- public function testSymlinkCreatesTargetDirectoryIfItDoesNotExist()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.DIRECTORY_SEPARATOR.'file';
- $link1 = $this->workspace.DIRECTORY_SEPARATOR.'dir'.DIRECTORY_SEPARATOR.'link';
- $link2 = $this->workspace.DIRECTORY_SEPARATOR.'dir'.DIRECTORY_SEPARATOR.'subdir'.DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link1);
- $this->filesystem->symlink($file, $link2);
- $this->assertTrue(is_link($link1));
- $this->assertEquals($file, readlink($link1));
- $this->assertTrue(is_link($link2));
- $this->assertEquals($file, readlink($link2));
- }
- /**
- * @dataProvider providePathsForMakePathRelative
- */
- public function testMakePathRelative($endPath, $startPath, $expectedPath)
- {
- $path = $this->filesystem->makePathRelative($endPath, $startPath);
- $this->assertEquals($expectedPath, $path);
- }
- /**
- * @return array
- */
- public function providePathsForMakePathRelative()
- {
- $paths = array(
- array('/var/lib/symfony/src/Symfony/', '/var/lib/symfony/src/Symfony/Component', '../'),
- array('/var/lib/symfony/src/Symfony/', '/var/lib/symfony/src/Symfony/Component/', '../'),
- array('/var/lib/symfony/src/Symfony', '/var/lib/symfony/src/Symfony/Component', '../'),
- array('/var/lib/symfony/src/Symfony', '/var/lib/symfony/src/Symfony/Component/', '../'),
- array('var/lib/symfony/', 'var/lib/symfony/src/Symfony/Component', '../../../'),
- array('/usr/lib/symfony/', '/var/lib/symfony/src/Symfony/Component', '../../../../../../usr/lib/symfony/'),
- array('/var/lib/symfony/src/Symfony/', '/var/lib/symfony/', 'src/Symfony/'),
- array('/aa/bb', '/aa/bb', './'),
- array('/aa/bb', '/aa/bb/', './'),
- array('/aa/bb/', '/aa/bb', './'),
- array('/aa/bb/', '/aa/bb/', './'),
- array('/aa/bb/cc', '/aa/bb/cc/dd', '../'),
- array('/aa/bb/cc', '/aa/bb/cc/dd/', '../'),
- array('/aa/bb/cc/', '/aa/bb/cc/dd', '../'),
- array('/aa/bb/cc/', '/aa/bb/cc/dd/', '../'),
- array('/aa/bb/cc', '/aa', 'bb/cc/'),
- array('/aa/bb/cc', '/aa/', 'bb/cc/'),
- array('/aa/bb/cc/', '/aa', 'bb/cc/'),
- array('/aa/bb/cc/', '/aa/', 'bb/cc/'),
- array('/a/aab/bb', '/a/aa', '../aab/bb/'),
- array('/a/aab/bb', '/a/aa/', '../aab/bb/'),
- array('/a/aab/bb/', '/a/aa', '../aab/bb/'),
- array('/a/aab/bb/', '/a/aa/', '../aab/bb/'),
- array('/a/aab/bb/', '/', 'a/aab/bb/'),
- array('/a/aab/bb/', '/b/aab', '../../a/aab/bb/'),
- );
- if ('\\' === DIRECTORY_SEPARATOR) {
- $paths[] = array('c:\var\lib/symfony/src/Symfony/', 'c:/var/lib/symfony/', 'src/Symfony/');
- }
- return $paths;
- }
- public function testMirrorCopiesFilesAndDirectoriesRecursively()
- {
- $sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
- $directory = $sourcePath.'directory'.DIRECTORY_SEPARATOR;
- $file1 = $directory.'file1';
- $file2 = $sourcePath.'file2';
- mkdir($sourcePath);
- mkdir($directory);
- file_put_contents($file1, 'FILE1');
- file_put_contents($file2, 'FILE2');
- $targetPath = $this->workspace.DIRECTORY_SEPARATOR.'target'.DIRECTORY_SEPARATOR;
- $this->filesystem->mirror($sourcePath, $targetPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertTrue(is_dir($targetPath.'directory'));
- $this->assertFileEquals($file1, $targetPath.'directory'.DIRECTORY_SEPARATOR.'file1');
- $this->assertFileEquals($file2, $targetPath.'file2');
- $this->filesystem->remove($file1);
- $this->filesystem->mirror($sourcePath, $targetPath, null, array('delete' => false));
- $this->assertTrue($this->filesystem->exists($targetPath.'directory'.DIRECTORY_SEPARATOR.'file1'));
- $this->filesystem->mirror($sourcePath, $targetPath, null, array('delete' => true));
- $this->assertFalse($this->filesystem->exists($targetPath.'directory'.DIRECTORY_SEPARATOR.'file1'));
- file_put_contents($file1, 'FILE1');
- $this->filesystem->mirror($sourcePath, $targetPath, null, array('delete' => true));
- $this->assertTrue($this->filesystem->exists($targetPath.'directory'.DIRECTORY_SEPARATOR.'file1'));
- $this->filesystem->remove($directory);
- $this->filesystem->mirror($sourcePath, $targetPath, null, array('delete' => true));
- $this->assertFalse($this->filesystem->exists($targetPath.'directory'));
- $this->assertFalse($this->filesystem->exists($targetPath.'directory'.DIRECTORY_SEPARATOR.'file1'));
- }
- public function testMirrorCreatesEmptyDirectory()
- {
- $sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
- mkdir($sourcePath);
- $targetPath = $this->workspace.DIRECTORY_SEPARATOR.'target'.DIRECTORY_SEPARATOR;
- $this->filesystem->mirror($sourcePath, $targetPath);
- $this->assertTrue(is_dir($targetPath));
- $this->filesystem->remove($sourcePath);
- }
- public function testMirrorCopiesLinks()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
- mkdir($sourcePath);
- file_put_contents($sourcePath.'file1', 'FILE1');
- symlink($sourcePath.'file1', $sourcePath.'link1');
- $targetPath = $this->workspace.DIRECTORY_SEPARATOR.'target'.DIRECTORY_SEPARATOR;
- $this->filesystem->mirror($sourcePath, $targetPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertFileEquals($sourcePath.'file1', $targetPath.'link1');
- $this->assertTrue(is_link($targetPath.DIRECTORY_SEPARATOR.'link1'));
- }
- public function testMirrorCopiesLinkedDirectoryContents()
- {
- $this->markAsSkippedIfSymlinkIsMissing(true);
- $sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
- mkdir($sourcePath.'nested/', 0777, true);
- file_put_contents($sourcePath.'/nested/file1.txt', 'FILE1');
- // Note: We symlink directory, not file
- symlink($sourcePath.'nested', $sourcePath.'link1');
- $targetPath = $this->workspace.DIRECTORY_SEPARATOR.'target'.DIRECTORY_SEPARATOR;
- $this->filesystem->mirror($sourcePath, $targetPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertFileEquals($sourcePath.'/nested/file1.txt', $targetPath.'link1/file1.txt');
- $this->assertTrue(is_link($targetPath.DIRECTORY_SEPARATOR.'link1'));
- }
- public function testMirrorCopiesRelativeLinkedContents()
- {
- $this->markAsSkippedIfSymlinkIsMissing(true);
- $sourcePath = $this->workspace.DIRECTORY_SEPARATOR.'source'.DIRECTORY_SEPARATOR;
- $oldPath = getcwd();
- mkdir($sourcePath.'nested/', 0777, true);
- file_put_contents($sourcePath.'/nested/file1.txt', 'FILE1');
- // Note: Create relative symlink
- chdir($sourcePath);
- symlink('nested', 'link1');
- chdir($oldPath);
- $targetPath = $this->workspace.DIRECTORY_SEPARATOR.'target'.DIRECTORY_SEPARATOR;
- $this->filesystem->mirror($sourcePath, $targetPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertFileEquals($sourcePath.'/nested/file1.txt', $targetPath.'link1/file1.txt');
- $this->assertTrue(is_link($targetPath.DIRECTORY_SEPARATOR.'link1'));
- $this->assertEquals('\\' === DIRECTORY_SEPARATOR ? realpath($sourcePath.'\nested') : 'nested', readlink($targetPath.DIRECTORY_SEPARATOR.'link1'));
- }
- /**
- * @dataProvider providePathsForIsAbsolutePath
- */
- public function testIsAbsolutePath($path, $expectedResult)
- {
- $result = $this->filesystem->isAbsolutePath($path);
- $this->assertEquals($expectedResult, $result);
- }
- /**
- * @return array
- */
- public function providePathsForIsAbsolutePath()
- {
- return array(
- array('/var/lib', true),
- array('c:\\\\var\\lib', true),
- array('\\var\\lib', true),
- array('var/lib', false),
- array('../var/lib', false),
- array('', false),
- array(null, false),
- );
- }
- public function testTempnam()
- {
- $dirname = $this->workspace;
- $filename = $this->filesystem->tempnam($dirname, 'foo');
- $this->assertFileExists($filename);
- }
- public function testTempnamWithFileScheme()
- {
- $scheme = 'file://';
- $dirname = $scheme.$this->workspace;
- $filename = $this->filesystem->tempnam($dirname, 'foo');
- $this->assertStringStartsWith($scheme, $filename);
- $this->assertFileExists($filename);
- }
- public function testTempnamWithMockScheme()
- {
- stream_wrapper_register('mock', 'Symfony\Component\Filesystem\Tests\Fixtures\MockStream\MockStream');
- $scheme = 'mock://';
- $dirname = $scheme.$this->workspace;
- $filename = $this->filesystem->tempnam($dirname, 'foo');
- $this->assertStringStartsWith($scheme, $filename);
- $this->assertFileExists($filename);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testTempnamWithZlibSchemeFails()
- {
- $scheme = 'compress.zlib://';
- $dirname = $scheme.$this->workspace;
- // The compress.zlib:// stream does not support mode x: creates the file, errors "failed to open stream: operation failed" and returns false
- $this->filesystem->tempnam($dirname, 'bar');
- }
- public function testTempnamWithPHPTempSchemeFails()
- {
- $scheme = 'php://temp';
- $dirname = $scheme;
- $filename = $this->filesystem->tempnam($dirname, 'bar');
- $this->assertStringStartsWith($scheme, $filename);
- // The php://temp stream deletes the file after close
- $this->assertFileNotExists($filename);
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testTempnamWithPharSchemeFails()
- {
- // Skip test if Phar disabled phar.readonly must be 0 in php.ini
- if (!\Phar::canWrite()) {
- $this->markTestSkipped('This test cannot run when phar.readonly is 1.');
- }
- $scheme = 'phar://';
- $dirname = $scheme.$this->workspace;
- $pharname = 'foo.phar';
- new \Phar($this->workspace.'/'.$pharname, 0, $pharname);
- // The phar:// stream does not support mode x: fails to create file, errors "failed to open stream: phar error: "$filename" is not a file in phar "$pharname"" and returns false
- $this->filesystem->tempnam($dirname, $pharname.'/bar');
- }
- /**
- * @expectedException \Symfony\Component\Filesystem\Exception\IOException
- */
- public function testTempnamWithHTTPSchemeFails()
- {
- $scheme = 'http://';
- $dirname = $scheme.$this->workspace;
- // The http:// scheme is read-only
- $this->filesystem->tempnam($dirname, 'bar');
- }
- public function testTempnamOnUnwritableFallsBackToSysTmp()
- {
- $scheme = 'file://';
- $dirname = $scheme.$this->workspace.DIRECTORY_SEPARATOR.'does_not_exist';
- $filename = $this->filesystem->tempnam($dirname, 'bar');
- $realTempDir = realpath(sys_get_temp_dir());
- $this->assertStringStartsWith(rtrim($scheme.$realTempDir, DIRECTORY_SEPARATOR), $filename);
- $this->assertFileExists($filename);
- // Tear down
- @unlink($filename);
- }
- public function testDumpFile()
- {
- $filename = $this->workspace.DIRECTORY_SEPARATOR.'foo'.DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, 'bar');
- $this->assertFileExists($filename);
- $this->assertSame('bar', file_get_contents($filename));
- // skip mode check on Windows
- if ('\\' !== DIRECTORY_SEPARATOR) {
- $this->assertFilePermissions(666, $filename);
- }
- }
- public function testDumpFileOverwritesAnExistingFile()
- {
- $filename = $this->workspace.DIRECTORY_SEPARATOR.'foo.txt';
- file_put_contents($filename, 'FOO BAR');
- $this->filesystem->dumpFile($filename, 'bar');
- $this->assertFileExists($filename);
- $this->assertSame('bar', file_get_contents($filename));
- }
- public function testDumpFileWithFileScheme()
- {
- if (defined('HHVM_VERSION')) {
- $this->markTestSkipped('HHVM does not handle the file:// scheme correctly');
- }
- $scheme = 'file://';
- $filename = $scheme.$this->workspace.DIRECTORY_SEPARATOR.'foo'.DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, 'bar', null);
- $this->assertFileExists($filename);
- $this->assertSame('bar', file_get_contents($filename));
- }
- public function testDumpFileWithZlibScheme()
- {
- $scheme = 'compress.zlib://';
- $filename = $this->workspace.DIRECTORY_SEPARATOR.'foo'.DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, 'bar', null);
- // Zlib stat uses file:// wrapper so remove scheme
- $this->assertFileExists(str_replace($scheme, '', $filename));
- $this->assertSame('bar', file_get_contents($filename));
- }
- public function testCopyShouldKeepExecutionPermission()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $sourceFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_source_file';
- $targetFilePath = $this->workspace.DIRECTORY_SEPARATOR.'copy_target_file';
- file_put_contents($sourceFilePath, 'SOURCE FILE');
- chmod($sourceFilePath, 0745);
- $this->filesystem->copy($sourceFilePath, $targetFilePath);
- $this->assertFilePermissions(767, $targetFilePath);
- }
- }
|