diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-10-26 16:42:19 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-12-16 09:43:29 +0100 |
commit | 37f8f7a5a18e57507330036b747d4b12e58efae4 (patch) | |
tree | 4a057e03cae53d21092d06e373fa91fbad2b258f /apps/theming/tests/Controller/ThemingControllerTest.php | |
parent | 6b770eb5799f58c41db2b3249e6e71cf69049fac (diff) | |
download | nextcloud-server-37f8f7a5a18e57507330036b747d4b12e58efae4.tar.gz nextcloud-server-37f8f7a5a18e57507330036b747d4b12e58efae4.zip |
Fix tests on PHP 8.1 for encryption, files_sharing, files_version,
files_trashbin and theming apps
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/theming/tests/Controller/ThemingControllerTest.php')
-rw-r--r-- | apps/theming/tests/Controller/ThemingControllerTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/tests/Controller/ThemingControllerTest.php b/apps/theming/tests/Controller/ThemingControllerTest.php index b85b2bb6ad0..cff2028809d 100644 --- a/apps/theming/tests/Controller/ThemingControllerTest.php +++ b/apps/theming/tests/Controller/ThemingControllerTest.php @@ -748,6 +748,7 @@ class ThemingControllerTest extends TestCase { $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn(\OC::$SERVERROOT . '/theming'); $file = $this->createMock(ISimpleFile::class); $file->expects($this->any())->method('getName')->willReturn('theming.css'); + $file->expects($this->any())->method('getMTime')->willReturn(42); $file->expects($this->any())->method('getContent')->willReturn('compiled'); $this->scssCacher->expects($this->once())->method('process')->willReturn(true); $this->scssCacher->expects($this->once())->method('getCachedCSS')->willReturn($file); @@ -763,6 +764,7 @@ class ThemingControllerTest extends TestCase { $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn(\OC::$SERVERROOT . '/theming'); $file = $this->createMock(ISimpleFile::class); $file->expects($this->any())->method('getName')->willReturn('theming.css'); + $file->expects($this->any())->method('getMTime')->willReturn(42); $file->expects($this->any())->method('getContent')->willReturn('compiled'); $this->scssCacher->expects($this->once())->method('process')->willReturn(true); $this->scssCacher->expects($this->once())->method('getCachedCSS')->willThrowException(new NotFoundException()); @@ -776,6 +778,7 @@ class ThemingControllerTest extends TestCase { $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn('/outside/serverroot/theming'); $file = $this->createMock(ISimpleFile::class); $file->expects($this->any())->method('getName')->willReturn('theming.css'); + $file->expects($this->any())->method('getMTime')->willReturn(42); $file->expects($this->any())->method('getContent')->willReturn('compiled'); $this->scssCacher->expects($this->once())->method('process')->with('/outside/serverroot/theming', 'css/theming.scss', 'theming')->willReturn(true); $this->scssCacher->expects($this->once())->method('getCachedCSS')->willReturn($file); |