Skip to content

Commit 194f259

Browse files
committed
Test if file exists before calling getContents #11
1 parent f2c1f41 commit 194f259

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/Filesystem.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,10 @@ public function constructLink($path)
113113
*/
114114
public function getContents($filename)
115115
{
116-
return $this->file($filename)->getContents();
116+
$file = $this->file($filename);
117+
return $file->exists()->then(function () use ($file) {
118+
return $file->getContents();
119+
});
117120
}
118121

119122
/**

tests/FilesystemTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use React\Filesystem\Filesystem;
66
use React\Filesystem\InstantInvoker;
7+
use React\Promise\FulfilledPromise;
78
use React\Promise\RejectedPromise;
89

910
class FilesystemTest extends TestCase
@@ -67,6 +68,11 @@ public function testDir()
6768
public function testGetContents()
6869
{
6970
$adapter = $this->mockAdapter();
71+
$adapter
72+
->expects($this->any())
73+
->method('stat')
74+
->will($this->returnValue(new FulfilledPromise([])))
75+
;
7076
$adapter
7177
->expects($this->any())
7278
->method('open')

0 commit comments

Comments
 (0)