1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Cache;
use OCP\Files\Mount\IMountManager;
use OCP\Lock\ILockingProvider;
use Test\Traits\UserTrait;
/**
* Class FileCacheTest
*
* @group DB
*
* @package Test\Cache
*/
class FileCacheTest extends TestCache {
use UserTrait;
/**
* @var string
* */
private $user;
/**
* @var string
* */
private $datadir;
/**
* @var \OC\Files\Storage\Storage
* */
private $storage;
public function skip() {
//$this->skipUnless(OC_User::isLoggedIn());
}
protected function setUp(): void {
parent::setUp();
//login
$this->createUser('test', 'test');
$this->user = \OC_User::getUser();
\OC_User::setUserId('test');
//clear all proxies and hooks so we can do clean testing
\OC_Hook::clear('OC_Filesystem');
/** @var IMountManager $manager */
$manager = \OC::$server->get(IMountManager::class);
$manager->removeMount('/test');
$this->storage = new \OC\Files\Storage\Temporary([]);
\OC\Files\Filesystem::mount($this->storage, [], '/test/cache');
$this->instance = new \OC\Cache\File();
// forces creation of cache folder for subsequent tests
$this->instance->set('hack', 'hack');
}
protected function tearDown(): void {
if ($this->instance) {
$this->instance->remove('hack', 'hack');
}
\OC_User::setUserId($this->user);
if ($this->instance) {
$this->instance->clear();
$this->instance = null;
}
parent::tearDown();
}
public function testGarbageCollectOldKeys(): void {
$this->instance->set('key1', 'value1');
$this->assertTrue($this->storage->file_exists('key1'));
$this->storage->getCache()->put('key1', ['mtime' => 100]);
$this->instance->gc();
$this->assertFalse($this->storage->file_exists('key1'));
}
public function testGarbageCollectLeaveRecentKeys(): void {
$this->instance->set('key1', 'value1');
$this->assertTrue($this->storage->file_exists('key1'));
$this->storage->getCache()->put('key1', ['mtime' => time() + 3600]);
$this->instance->gc();
$this->assertTrue($this->storage->file_exists('key1'));
}
public function testGarbageCollectIgnoreLockedKeys(): void {
$lockingProvider = \OC::$server->get(ILockingProvider::class);
$this->instance->set('key1', 'value1');
$this->storage->getCache()->put('key1', ['mtime' => 100]);
$this->instance->set('key2', 'value2');
$this->storage->getCache()->put('key2', ['mtime' => 100]);
$this->storage->acquireLock('key2', ILockingProvider::LOCK_SHARED, $lockingProvider);
$this->assertTrue($this->storage->file_exists('key1'));
$this->assertTrue($this->storage->file_exists('key2'));
$this->instance->gc();
$this->storage->releaseLock('key2', ILockingProvider::LOCK_SHARED, $lockingProvider);
$this->assertFalse($this->storage->file_exists('key1'));
$this->assertFalse($this->storage->file_exists('key2'));
}
}
|