2015-06-05 15:29:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-05 16:30:20 +03:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2012 Robin Appelman icewind@owncloud.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2015-06-05 15:29:15 +03:00
|
|
|
|
|
|
|
namespace Test\Cache;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2016-09-12 21:57:45 +03:00
|
|
|
use OC\Files\Storage\Local;
|
2015-06-05 15:29:15 +03:00
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
2016-05-20 16:38:20 +03:00
|
|
|
* Class FileCacheTest
|
2015-11-03 03:52:41 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
|
|
|
* @package Test\Cache
|
|
|
|
*/
|
2016-05-20 16:38:20 +03:00
|
|
|
class FileCacheTest extends TestCache {
|
2015-06-30 18:34:10 +03:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* */
|
2015-06-05 15:29:15 +03:00
|
|
|
private $user;
|
2015-06-30 18:34:10 +03:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* */
|
2015-06-05 15:29:15 +03:00
|
|
|
private $datadir;
|
2015-06-30 18:34:10 +03:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage
|
|
|
|
* */
|
2015-06-05 15:29:15 +03:00
|
|
|
private $storage;
|
2015-06-30 18:34:10 +03:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
* */
|
|
|
|
private $rootView;
|
2015-06-05 15:29:15 +03:00
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function skip() {
|
2015-06-05 15:29:15 +03:00
|
|
|
//$this->skipUnless(OC_User::isLoggedIn());
|
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-06-05 15:29:15 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
//clear all proxies and hooks so we can do clean testing
|
|
|
|
\OC_Hook::clear('OC_Filesystem');
|
|
|
|
|
|
|
|
//set up temporary storage
|
|
|
|
$this->storage = \OC\Files\Filesystem::getStorage('/');
|
|
|
|
\OC\Files\Filesystem::clearMounts();
|
2020-03-26 11:30:18 +03:00
|
|
|
$storage = new \OC\Files\Storage\Temporary([]);
|
|
|
|
\OC\Files\Filesystem::mount($storage,[],'/');
|
2015-06-05 15:29:15 +03:00
|
|
|
$datadir = str_replace('local::', '', $storage->getId());
|
2015-12-03 11:11:21 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$this->datadir = $config->getSystemValue('cachedirectory', \OC::$SERVERROOT.'/data/cache');
|
|
|
|
$config->setSystemValue('cachedirectory', $datadir);
|
2015-06-05 15:29:15 +03:00
|
|
|
|
|
|
|
\OC_User::clearBackends();
|
2015-09-22 01:56:36 +03:00
|
|
|
\OC_User::useBackend(new \Test\Util\User\Dummy());
|
2015-06-05 16:30:20 +03:00
|
|
|
|
2015-06-05 15:29:15 +03:00
|
|
|
//login
|
2015-12-17 17:10:11 +03:00
|
|
|
\OC::$server->getUserManager()->createUser('test', 'test');
|
2015-06-05 16:30:20 +03:00
|
|
|
|
2015-06-05 15:29:15 +03:00
|
|
|
$this->user = \OC_User::getUser();
|
|
|
|
\OC_User::setUserId('test');
|
|
|
|
|
|
|
|
//set up the users dir
|
2015-06-30 18:34:10 +03:00
|
|
|
$this->rootView = new \OC\Files\View('');
|
|
|
|
$this->rootView->mkdir('/test');
|
2015-06-05 16:30:20 +03:00
|
|
|
|
2020-10-05 16:12:57 +03:00
|
|
|
$this->instance = new \OC\Cache\File();
|
2015-06-30 18:34:10 +03:00
|
|
|
|
|
|
|
// forces creation of cache folder for subsequent tests
|
|
|
|
$this->instance->set('hack', 'hack');
|
2015-06-05 15:29:15 +03:00
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2016-01-07 20:13:35 +03:00
|
|
|
if ($this->instance) {
|
|
|
|
$this->instance->remove('hack', 'hack');
|
|
|
|
}
|
2015-06-30 18:34:10 +03:00
|
|
|
|
2015-06-05 15:29:15 +03:00
|
|
|
\OC_User::setUserId($this->user);
|
2015-12-03 11:11:21 +03:00
|
|
|
\OC::$server->getConfig()->setSystemValue('cachedirectory', $this->datadir);
|
2015-06-05 15:29:15 +03:00
|
|
|
|
2019-12-04 17:22:02 +03:00
|
|
|
if ($this->instance) {
|
|
|
|
$this->instance->clear();
|
|
|
|
$this->instance = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
//tear down the users dir aswell
|
|
|
|
$user = \OC::$server->getUserManager()->get('test');
|
|
|
|
$user->delete();
|
|
|
|
|
2015-06-05 15:29:15 +03:00
|
|
|
// Restore the original mount point
|
|
|
|
\OC\Files\Filesystem::clearMounts();
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC\Files\Filesystem::mount($this->storage, [], '/');
|
2015-06-05 15:29:15 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
2015-06-30 18:34:10 +03:00
|
|
|
|
|
|
|
private function setupMockStorage() {
|
2016-09-12 21:57:45 +03:00
|
|
|
$mockStorage = $this->getMockBuilder(Local::class)
|
|
|
|
->setMethods(['filemtime', 'unlink'])
|
|
|
|
->setConstructorArgs([['datadir' => \OC::$server->getTempManager()->getTemporaryFolder()]])
|
|
|
|
->getMock();
|
2015-06-30 18:34:10 +03:00
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC\Files\Filesystem::mount($mockStorage, [], '/test/cache');
|
2015-06-30 18:34:10 +03:00
|
|
|
|
|
|
|
return $mockStorage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGarbageCollectOldKeys() {
|
|
|
|
$mockStorage = $this->setupMockStorage();
|
|
|
|
|
|
|
|
$mockStorage->expects($this->atLeastOnce())
|
|
|
|
->method('filemtime')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(100);
|
2015-06-30 18:34:10 +03:00
|
|
|
$mockStorage->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->with('key1')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(true);
|
2015-06-30 18:34:10 +03:00
|
|
|
|
|
|
|
$this->instance->set('key1', 'value1');
|
|
|
|
$this->instance->gc();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGarbageCollectLeaveRecentKeys() {
|
|
|
|
$mockStorage = $this->setupMockStorage();
|
|
|
|
|
|
|
|
$mockStorage->expects($this->atLeastOnce())
|
|
|
|
->method('filemtime')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(time() + 3600);
|
2015-06-30 18:34:10 +03:00
|
|
|
$mockStorage->expects($this->never())
|
|
|
|
->method('unlink')
|
|
|
|
->with('key1');
|
|
|
|
$this->instance->set('key1', 'value1');
|
|
|
|
$this->instance->gc();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function lockExceptionProvider() {
|
|
|
|
return [
|
|
|
|
[new \OCP\Lock\LockedException('key1')],
|
|
|
|
[new \OCP\Files\LockNotAcquiredException('key1', 1)],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider lockExceptionProvider
|
|
|
|
*/
|
|
|
|
public function testGarbageCollectIgnoreLockedKeys($testException) {
|
|
|
|
$mockStorage = $this->setupMockStorage();
|
|
|
|
|
|
|
|
$mockStorage->expects($this->atLeastOnce())
|
|
|
|
->method('filemtime')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(100);
|
2015-06-30 18:34:10 +03:00
|
|
|
$mockStorage->expects($this->atLeastOnce())
|
|
|
|
->method('unlink')
|
|
|
|
->will($this->onConsecutiveCalls(
|
|
|
|
$this->throwException($testException),
|
|
|
|
$this->returnValue(true)
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->instance->set('key1', 'value1');
|
|
|
|
$this->instance->set('key2', 'value2');
|
|
|
|
|
|
|
|
$this->instance->gc();
|
|
|
|
}
|
2015-06-05 15:29:15 +03:00
|
|
|
}
|