1
0
Fork 0

added test removing directory with trailing slash that is symlinked

#3144
#3157
pull/3159/head
hakre 2014-07-24 14:42:37 +02:00
parent 0ad2449fe8
commit 343d0b5af2
1 changed files with 34 additions and 0 deletions

View File

@ -203,4 +203,38 @@ class FilesystemTest extends TestCase
$this->assertTrue($result);
$this->assertFalse(file_exists($symlinked));
}
/**
* @link https://github.com/composer/composer/issues/3144
*/
public function testRemoveSymlinkedDirectoryWithTrailingSlash()
{
$tmp = sys_get_temp_dir();
$basepath = $tmp . "/composer_testdir";
@mkdir($basepath . "/real", 0777, true);
touch($basepath . "/real/FILE");
$symlinked = $basepath . "/linked";
$symlinkedTrailingSlash = $symlinked . "/";
$result = @symlink($basepath . "/real", $symlinked);
if (!$result) {
$this->markTestSkipped('Symbolic links for directories not supported on this platform');
}
if (!is_dir($symlinked)) {
$this->fail('Precondition assertion failed (is_dir is false on symbolic link to directory).');
}
if (!is_dir($symlinkedTrailingSlash)) {
$this->fail('Precondition assertion failed (is_dir false w trailing slash).');
}
$fs = new Filesystem();
$result = $fs->removeDirectory($symlinkedTrailingSlash);
$this->assertTrue($result);
$this->assertFalse(file_exists($symlinkedTrailingSlash));
$this->assertFalse(file_exists($symlinked));
}
}