mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
349a9fc5f6
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test\Repair;
|
|
|
|
use OC\Template\JSCombiner;
|
|
use OCP\ICache;
|
|
use OCP\ICacheFactory;
|
|
use OCP\Migration\IOutput;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
class ClearFrontendCachesTest extends \Test\TestCase {
|
|
|
|
private ICacheFactory&MockObject $cacheFactory;
|
|
private JSCombiner&MockObject $jsCombiner;
|
|
private IOutput&MockObject $outputMock;
|
|
|
|
protected \OC\Repair\ClearFrontendCaches $repair;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->outputMock = $this->createMock(IOutput::class);
|
|
|
|
$this->cacheFactory = $this->createMock(ICacheFactory::class);
|
|
$this->jsCombiner = $this->createMock(JSCombiner::class);
|
|
|
|
$this->repair = new \OC\Repair\ClearFrontendCaches($this->cacheFactory, $this->jsCombiner);
|
|
}
|
|
|
|
|
|
public function testRun(): void {
|
|
$imagePathCache = $this->createMock(ICache::class);
|
|
$imagePathCache->expects($this->once())
|
|
->method('clear')
|
|
->with('');
|
|
$this->jsCombiner->expects($this->once())
|
|
->method('resetCache');
|
|
$this->cacheFactory->expects($this->once())
|
|
->method('createDistributed')
|
|
->with('imagePath')
|
|
->willReturn($imagePathCache);
|
|
|
|
$this->repair->run($this->outputMock);
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|