Skip to content

Commit 9aa1587

Browse files
Merge branch '4.4' into 5.2
* 4.4: [HttpKernel] Fixes tests for PHP7.4+ [Filesystem] fix readlink for Windows
2 parents 463ff5d + 2d926eb commit 9aa1587

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

Filesystem.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -399,14 +399,14 @@ public function readlink(string $path, bool $canonicalize = false)
399399
return null;
400400
}
401401

402-
if ('\\' === \DIRECTORY_SEPARATOR) {
402+
if ('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70410) {
403403
$path = readlink($path);
404404
}
405405

406406
return realpath($path);
407407
}
408408

409-
if ('\\' === \DIRECTORY_SEPARATOR) {
409+
if ('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70400) {
410410
return realpath($path);
411411
}
412412

Tests/FilesystemTest.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public function testRemoveCleansInvalidLinks()
376376

377377
// create symlink to nonexistent dir
378378
rmdir($basePath.'dir');
379-
$this->assertFalse('\\' === \DIRECTORY_SEPARATOR ? @readlink($basePath.'dir-link') : is_dir($basePath.'dir-link'));
379+
$this->assertFalse('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70400 ? @readlink($basePath.'dir-link') : is_dir($basePath.'dir-link'));
380380

381381
$this->filesystem->remove($basePath);
382382

@@ -1076,7 +1076,12 @@ public function testReadAbsoluteLink()
10761076
$this->filesystem->symlink($link1, $link2);
10771077

10781078
$this->assertEquals($file, $this->filesystem->readlink($link1));
1079-
$this->assertEquals($link1, $this->filesystem->readlink($link2));
1079+
1080+
if (!('\\' == \DIRECTORY_SEPARATOR && \PHP_MAJOR_VERSION === 7 && \PHP_MINOR_VERSION === 3)) {
1081+
// Skip for Windows with PHP 7.3.*
1082+
$this->assertEquals($link1, $this->filesystem->readlink($link2));
1083+
}
1084+
10801085
$this->assertEquals($file, $this->filesystem->readlink($link1, true));
10811086
$this->assertEquals($file, $this->filesystem->readlink($link2, true));
10821087
$this->assertEquals($file, $this->filesystem->readlink($file, true));

0 commit comments

Comments
 (0)