aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2024-06-21 11:37:47 +0200
committerJulius Härtl <jus@bitgrid.net>2024-07-22 22:32:34 +0200
commit6c1e896a03f20e568df5af1d547f46e2df9b71a9 (patch)
tree7dfae53a850091e284cc713f0158378fe7c663bf /tests
parent8cc996155e77e10a626906550a74953fb4a6928d (diff)
downloadnextcloud-server-6c1e896a03f20e568df5af1d547f46e2df9b71a9.tar.gz
nextcloud-server-6c1e896a03f20e568df5af1d547f46e2df9b71a9.zip
fix: Ignore preview requests for invalid file ids
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/PreviewControllerTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Core/Controller/PreviewControllerTest.php b/tests/Core/Controller/PreviewControllerTest.php
index d330c1d5209..7c9a32eae38 100644
--- a/tests/Core/Controller/PreviewControllerTest.php
+++ b/tests/Core/Controller/PreviewControllerTest.php
@@ -187,6 +187,7 @@ class PreviewControllerTest extends \Test\TestCase {
->willReturn($userFolder);
$file = $this->createMock(File::class);
+ $file->method('getId')->willReturn(123);
$userFolder->method('get')
->with($this->equalTo('file'))
->willReturn($file);