123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338 |
- <?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->assertStringEqualsFile($targetFilePath, 'SOURCE FILE');
- }
- /**
- * @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.');
- }
- if (!getenv('USER') || 'root' === getenv('USER')) {
- $this->markTestSkipped('This test will fail if run under superuser');
- }
- $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->assertStringEqualsFile($targetFilePath, 'SOURCE FILE');
- }
- 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->assertStringEqualsFile($targetFilePath, 'TARGET FILE');
- }
- 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->assertStringEqualsFile($targetFilePath, 'SOURCE FILE');
- }
- /**
- * @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.');
- }
- if (!getenv('USER') || 'root' === getenv('USER')) {
- $this->markTestSkipped('This test will fail if run under superuser');
- }
- $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->assertStringEqualsFile($targetFilePath, 'SOURCE FILE');
- }
- /**
- * @group network
- */
- public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy()
- {
- if (!\in_array('https', stream_get_wrappers())) {
- $this->markTestSkipped('"https" stream wrapper is not enabled.');
- }
- $sourceFilePath = 'https://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('Long file names are an issue on Windows');
- }
- $basePath = $this->workspace.'\\directory\\';
- $maxPathLength = PHP_MAXPATHLEN - 2;
- $oldPath = getcwd();
- mkdir($basePath);
- chdir($basePath);
- $file = str_repeat('T', $maxPathLength - \strlen($basePath) + 1);
- $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 testChmodWithWrongModLeavesPreviousPermissionsUntouched()
- {
- $this->markAsSkippedIfChmodIsMissing();
- if (\defined('HHVM_VERSION')) {
- $this->markTestSkipped('chmod() changes permissions even when passing invalid modes on HHVM');
- }
- $dir = $this->workspace.\DIRECTORY_SEPARATOR.'file';
- touch($dir);
- $permissions = fileperms($dir);
- $this->filesystem->chmod($dir, 'Wrongmode');
- $this->assertSame($permissions, fileperms($dir));
- }
- 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);
- $owner = $this->getFileOwner($dir);
- $this->filesystem->chown($dir, $owner);
- $this->assertSame($owner, $this->getFileOwner($dir));
- }
- public function testChownRecursive()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.\DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.\DIRECTORY_SEPARATOR.'file';
- touch($file);
- $owner = $this->getFileOwner($dir);
- $this->filesystem->chown($dir, $owner, true);
- $this->assertSame($owner, $this->getFileOwner($file));
- }
- public function testChownSymlink()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.\DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.\DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $owner = $this->getFileOwner($link);
- $this->filesystem->chown($link, $owner);
- $this->assertSame($owner, $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);
- $group = $this->getFileGroup($dir);
- $this->filesystem->chgrp($dir, $group);
- $this->assertSame($group, $this->getFileGroup($dir));
- }
- public function testChgrpRecursive()
- {
- $this->markAsSkippedIfPosixIsMissing();
- $dir = $this->workspace.\DIRECTORY_SEPARATOR.'dir';
- mkdir($dir);
- $file = $dir.\DIRECTORY_SEPARATOR.'file';
- touch($file);
- $group = $this->getFileGroup($dir);
- $this->filesystem->chgrp($dir, $group, true);
- $this->assertSame($group, $this->getFileGroup($file));
- }
- public function testChgrpSymlink()
- {
- $this->markAsSkippedIfSymlinkIsMissing();
- $file = $this->workspace.\DIRECTORY_SEPARATOR.'file';
- $link = $this->workspace.\DIRECTORY_SEPARATOR.'link';
- touch($file);
- $this->filesystem->symlink($file, $link);
- $group = $this->getFileGroup($link);
- $this->filesystem->chgrp($link, $group);
- $this->assertSame($group, $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->assertFalse(is_link($link));
- $this->assertFalse(is_file($link));
- $this->assertFalse(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);
- }
- 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('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/'),
- array('/aab/bb', '/aa', '../aab/bb/'),
- array('/aab', '/aa', '../aab/'),
- array('/aa/bb/cc', '/aa/dd/..', 'bb/cc/'),
- array('/aa/../bb/cc', '/aa/dd/..', '../bb/cc/'),
- array('/aa/bb/../../cc', '/aa/../dd/..', 'cc/'),
- array('/../aa/bb/cc', '/aa/dd/..', 'bb/cc/'),
- array('/../../aa/../bb/cc', '/aa/dd/..', '../bb/cc/'),
- array('C:/aa/bb/cc', 'C:/aa/dd/..', 'bb/cc/'),
- array('c:/aa/../bb/cc', 'c:/aa/dd/..', '../bb/cc/'),
- array('C:/aa/bb/../../cc', 'C:/aa/../dd/..', 'cc/'),
- array('C:/../aa/bb/cc', 'C:/aa/dd/..', 'bb/cc/'),
- array('C:/../../aa/../bb/cc', 'C:/aa/dd/..', '../bb/cc/'),
- array('aa/bb', 'aa/cc', '../bb/'),
- array('aa/cc', 'bb/cc', '../../aa/cc/'),
- array('aa/bb', 'aa/./cc', '../bb/'),
- array('aa/./bb', 'aa/cc', '../bb/'),
- array('aa/./bb', 'aa/./cc', '../bb/'),
- array('../../', '../../', './'),
- array('../aa/bb/', 'aa/bb/', '../../../aa/bb/'),
- array('../../../', '../../', '../'),
- array('', '', './'),
- array('', 'aa/', '../'),
- array('aa/', '', 'aa/'),
- );
- 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'));
- }
- public function testMirrorContentsWithSameNameAsSourceOrTargetWithoutDeleteOption()
- {
- $sourcePath = $this->workspace.\DIRECTORY_SEPARATOR.'source'.\DIRECTORY_SEPARATOR;
- mkdir($sourcePath);
- touch($sourcePath.'source');
- touch($sourcePath.'target');
- $targetPath = $this->workspace.\DIRECTORY_SEPARATOR.'target'.\DIRECTORY_SEPARATOR;
- $oldPath = getcwd();
- chdir($this->workspace);
- $this->filesystem->mirror('source', $targetPath);
- chdir($oldPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertFileExists($targetPath.'source');
- $this->assertFileExists($targetPath.'target');
- }
- public function testMirrorContentsWithSameNameAsSourceOrTargetWithDeleteOption()
- {
- $sourcePath = $this->workspace.\DIRECTORY_SEPARATOR.'source'.\DIRECTORY_SEPARATOR;
- mkdir($sourcePath);
- touch($sourcePath.'source');
- $targetPath = $this->workspace.\DIRECTORY_SEPARATOR.'target'.\DIRECTORY_SEPARATOR;
- mkdir($targetPath);
- touch($targetPath.'source');
- touch($targetPath.'target');
- $oldPath = getcwd();
- chdir($this->workspace);
- $this->filesystem->mirror('source', 'target', null, array('delete' => true));
- chdir($oldPath);
- $this->assertTrue(is_dir($targetPath));
- $this->assertFileExists($targetPath.'source');
- $this->assertFileNotExists($targetPath.'target');
- }
- /**
- * @dataProvider providePathsForIsAbsolutePath
- */
- public function testIsAbsolutePath($path, $expectedResult)
- {
- $result = $this->filesystem->isAbsolutePath($path);
- $this->assertEquals($expectedResult, $result);
- }
- 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->assertStringEqualsFile($filename, 'bar');
- }
- public function testDumpFileWithArray()
- {
- $filename = $this->workspace.\DIRECTORY_SEPARATOR.'foo'.\DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, array('bar'));
- $this->assertFileExists($filename);
- $this->assertStringEqualsFile($filename, 'bar');
- }
- public function testDumpFileWithResource()
- {
- $filename = $this->workspace.\DIRECTORY_SEPARATOR.'foo'.\DIRECTORY_SEPARATOR.'baz.txt';
- $resource = fopen('php://memory', 'rw');
- fwrite($resource, 'bar');
- fseek($resource, 0);
- $this->filesystem->dumpFile($filename, $resource);
- fclose($resource);
- $this->assertFileExists($filename);
- $this->assertStringEqualsFile($filename, 'bar');
- }
- /**
- * @group legacy
- */
- public function testDumpFileAndSetPermissions()
- {
- $filename = $this->workspace.\DIRECTORY_SEPARATOR.'foo'.\DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, 'bar', 0753);
- $this->assertFileExists($filename);
- $this->assertStringEqualsFile($filename, 'bar');
- // skip mode check on Windows
- if ('\\' !== \DIRECTORY_SEPARATOR) {
- $this->assertFilePermissions(753, $filename);
- }
- }
- public function testDumpFileWithNullMode()
- {
- $filename = $this->workspace.\DIRECTORY_SEPARATOR.'foo'.\DIRECTORY_SEPARATOR.'baz.txt';
- $this->filesystem->dumpFile($filename, 'bar', null);
- $this->assertFileExists($filename);
- $this->assertStringEqualsFile($filename, 'bar');
- // skip mode check on Windows
- if ('\\' !== \DIRECTORY_SEPARATOR) {
- $this->assertFilePermissions(600, $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->assertStringEqualsFile($filename, 'bar');
- }
- 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 testDumpKeepsExistingPermissionsWhenOverwritingAnExistingFile()
- {
- $this->markAsSkippedIfChmodIsMissing();
- $filename = $this->workspace.\DIRECTORY_SEPARATOR.'foo.txt';
- file_put_contents($filename, 'FOO BAR');
- chmod($filename, 0745);
- $this->filesystem->dumpFile($filename, 'bar', null);
- $this->assertFilePermissions(745, $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);
- }
- }
|