123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551 |
- <?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\Files\Config;
- use OC\DB\Exceptions\DbalException;
- use OC\DB\QueryBuilder\Literal;
- use OC\Files\Mount\MountPoint;
- use OC\Files\Storage\Storage;
- use OC\User\Manager;
- use OCP\Cache\CappedMemoryCache;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\Diagnostics\IEventLogger;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\Config\ICachedMountInfo;
- use OCP\ICacheFactory;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IUserManager;
- use Psr\Log\LoggerInterface;
- use Test\TestCase;
- use Test\Util\User\Dummy;
- /**
- * @group DB
- */
- class UserMountCacheTest extends TestCase {
- /**
- * @var IDBConnection
- */
- private $connection;
- /**
- * @var IUserManager
- */
- private $userManager;
- /**
- * @var \OC\Files\Config\UserMountCache
- */
- private $cache;
- private $fileIds = [];
- protected function setUp(): void {
- parent::setUp();
- $this->fileIds = [];
- $this->connection = \OC::$server->getDatabaseConnection();
- $config = $this->getMockBuilder(IConfig::class)
- ->disableOriginalConstructor()
- ->getMock();
- $config
- ->expects($this->any())
- ->method('getUserValue')
- ->willReturnArgument(3);
- $config
- ->expects($this->any())
- ->method('getAppValue')
- ->willReturnArgument(2);
- $this->userManager = new Manager($config, $this->createMock(ICacheFactory::class), $this->createMock(IEventDispatcher::class), $this->createMock(LoggerInterface::class));
- $userBackend = new Dummy();
- $userBackend->createUser('u1', '');
- $userBackend->createUser('u2', '');
- $userBackend->createUser('u3', '');
- $this->userManager->registerBackend($userBackend);
- $this->cache = new \OC\Files\Config\UserMountCache($this->connection, $this->userManager, $this->createMock(LoggerInterface::class), $this->createMock(IEventLogger::class));
- }
- protected function tearDown(): void {
- $builder = $this->connection->getQueryBuilder();
- $builder->delete('mounts')->execute();
- $builder = $this->connection->getQueryBuilder();
- foreach ($this->fileIds as $fileId) {
- $builder->delete('filecache')
- ->where($builder->expr()->eq('fileid', new Literal($fileId)))
- ->execute();
- }
- }
- private function getStorage($storageId, $rootInternalPath = '') {
- $rootId = $this->createCacheEntry($rootInternalPath, $storageId);
- $storageCache = $this->getMockBuilder('\OC\Files\Cache\Storage')
- ->disableOriginalConstructor()
- ->getMock();
- $storageCache->expects($this->any())
- ->method('getNumericId')
- ->willReturn($storageId);
- $cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
- ->disableOriginalConstructor()
- ->getMock();
- $cache->expects($this->any())
- ->method('getId')
- ->willReturn($rootId);
- $storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
- ->disableOriginalConstructor()
- ->getMock();
- $storage->expects($this->any())
- ->method('getStorageCache')
- ->willReturn($storageCache);
- $storage->expects($this->any())
- ->method('getCache')
- ->willReturn($cache);
- return [$storage, $rootId];
- }
- private function clearCache() {
- $this->invokePrivate($this->cache, 'mountsForUsers', [new CappedMemoryCache()]);
- }
- private function keyForMount(MountPoint $mount): string {
- return $mount->getStorageRootId() . '::' . $mount->getMountPoint();
- }
- public function testNewMounts(): void {
- $user = $this->userManager->get('u1');
- [$storage] = $this->getStorage(10);
- $mount = new MountPoint($storage, '/asd/');
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user);
- $this->assertCount(1, $cachedMounts);
- $cachedMount = $cachedMounts[$this->keyForMount($mount)];
- $this->assertEquals('/asd/', $cachedMount->getMountPoint());
- $this->assertEquals($user->getUID(), $cachedMount->getUser()->getUID());
- $this->assertEquals($storage->getCache()->getId(''), $cachedMount->getRootId());
- $this->assertEquals($storage->getStorageCache()->getNumericId(), $cachedMount->getStorageId());
- }
- public function testSameMounts(): void {
- $user = $this->userManager->get('u1');
- [$storage] = $this->getStorage(10);
- $mount = new MountPoint($storage, '/asd/');
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user);
- $this->assertCount(1, $cachedMounts);
- $cachedMount = $cachedMounts[$this->keyForMount($mount)];
- $this->assertEquals('/asd/', $cachedMount->getMountPoint());
- $this->assertEquals($user->getUID(), $cachedMount->getUser()->getUID());
- $this->assertEquals($storage->getCache()->getId(''), $cachedMount->getRootId());
- $this->assertEquals($storage->getStorageCache()->getNumericId(), $cachedMount->getStorageId());
- }
- public function testRemoveMounts(): void {
- $user = $this->userManager->get('u1');
- [$storage] = $this->getStorage(10);
- $mount = new MountPoint($storage, '/asd/');
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $this->cache->registerMounts($user, []);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user);
- $this->assertCount(0, $cachedMounts);
- }
- public function testChangeMounts(): void {
- $user = $this->userManager->get('u1');
- [$storage] = $this->getStorage(10);
- $mount = new MountPoint($storage, '/bar/');
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $mount = new MountPoint($storage, '/foo/');
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user);
- $this->assertCount(1, $cachedMounts);
- $cachedMount = $cachedMounts[$this->keyForMount($mount)];
- $this->assertEquals('/foo/', $cachedMount->getMountPoint());
- }
- public function testChangeMountId(): void {
- $user = $this->userManager->get('u1');
- [$storage] = $this->getStorage(10);
- $mount = new MountPoint($storage, '/foo/', null, null, null, null);
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $mount = new MountPoint($storage, '/foo/', null, null, null, 1);
- $this->cache->registerMounts($user, [$mount]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user);
- $this->assertCount(1, $cachedMounts);
- $cachedMount = $cachedMounts[$this->keyForMount($mount)];
- $this->assertEquals(1, $cachedMount->getMountId());
- }
- public function testGetMountsForUser(): void {
- $user1 = $this->userManager->get('u1');
- $user2 = $this->userManager->get('u2');
- $user3 = $this->userManager->get('u3');
- [$storage1, $id1] = $this->getStorage(1);
- [$storage2, $id2] = $this->getStorage(2, 'foo/bar');
- $mount1 = new MountPoint($storage1, '/foo/');
- $mount2 = new MountPoint($storage2, '/bar/');
- $this->cache->registerMounts($user1, [$mount1, $mount2]);
- $this->cache->registerMounts($user2, [$mount2]);
- $this->cache->registerMounts($user3, [$mount2]);
- $this->clearCache();
- $user3->delete();
- $cachedMounts = $this->cache->getMountsForUser($user1);
- $this->assertCount(2, $cachedMounts);
- $this->assertEquals('/foo/', $cachedMounts[$this->keyForMount($mount1)]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[$this->keyForMount($mount1)]->getUser()->getUID());
- $this->assertEquals($id1, $cachedMounts[$this->keyForMount($mount1)]->getRootId());
- $this->assertEquals(1, $cachedMounts[$this->keyForMount($mount1)]->getStorageId());
- $this->assertEquals('', $cachedMounts[$this->keyForMount($mount1)]->getRootInternalPath());
- $this->assertEquals('/bar/', $cachedMounts[$this->keyForMount($mount2)]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[$this->keyForMount($mount2)]->getUser()->getUID());
- $this->assertEquals($id2, $cachedMounts[$this->keyForMount($mount2)]->getRootId());
- $this->assertEquals(2, $cachedMounts[$this->keyForMount($mount2)]->getStorageId());
- $this->assertEquals('foo/bar', $cachedMounts[$this->keyForMount($mount2)]->getRootInternalPath());
- $cachedMounts = $this->cache->getMountsForUser($user3);
- $this->assertEmpty($cachedMounts);
- }
- public function testGetMountsByStorageId(): void {
- $user1 = $this->userManager->get('u1');
- $user2 = $this->userManager->get('u2');
- [$storage1, $id1] = $this->getStorage(1);
- [$storage2, $id2] = $this->getStorage(2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $mount2 = new MountPoint($storage2, '/bar/');
- $this->cache->registerMounts($user1, [$mount1, $mount2]);
- $this->cache->registerMounts($user2, [$mount2]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForStorageId(2);
- $this->sortMounts($cachedMounts);
- $this->assertCount(2, $cachedMounts);
- $this->assertEquals('/bar/', $cachedMounts[0]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[0]->getUser()->getUID());
- $this->assertEquals($id2, $cachedMounts[0]->getRootId());
- $this->assertEquals(2, $cachedMounts[0]->getStorageId());
- $this->assertEquals('/bar/', $cachedMounts[1]->getMountPoint());
- $this->assertEquals($user2->getUID(), $cachedMounts[1]->getUser()->getUID());
- $this->assertEquals($id2, $cachedMounts[1]->getRootId());
- $this->assertEquals(2, $cachedMounts[1]->getStorageId());
- }
- public function testGetMountsByRootId(): void {
- $user1 = $this->userManager->get('u1');
- $user2 = $this->userManager->get('u2');
- [$storage1, $id1] = $this->getStorage(1);
- [$storage2, $id2] = $this->getStorage(2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $mount2 = new MountPoint($storage2, '/bar/');
- $this->cache->registerMounts($user1, [$mount1, $mount2]);
- $this->cache->registerMounts($user2, [$mount2]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForRootId($id2);
- $this->sortMounts($cachedMounts);
- $this->assertCount(2, $cachedMounts);
- $this->assertEquals('/bar/', $cachedMounts[0]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[0]->getUser()->getUID());
- $this->assertEquals($id2, $cachedMounts[0]->getRootId());
- $this->assertEquals(2, $cachedMounts[0]->getStorageId());
- $this->assertEquals('/bar/', $cachedMounts[1]->getMountPoint());
- $this->assertEquals($user2->getUID(), $cachedMounts[1]->getUser()->getUID());
- $this->assertEquals($id2, $cachedMounts[1]->getRootId());
- $this->assertEquals(2, $cachedMounts[1]->getStorageId());
- }
- private function sortMounts(&$mounts) {
- usort($mounts, function (ICachedMountInfo $a, ICachedMountInfo $b) {
- return strcmp($a->getUser()->getUID(), $b->getUser()->getUID());
- });
- }
- private function createCacheEntry($internalPath, $storageId, $size = 0) {
- $internalPath = trim($internalPath, '/');
- try {
- $query = $this->connection->getQueryBuilder();
- $query->insert('filecache')
- ->values([
- 'storage' => $query->createNamedParameter($storageId),
- 'path' => $query->createNamedParameter($internalPath),
- 'path_hash' => $query->createNamedParameter(md5($internalPath)),
- 'parent' => $query->createNamedParameter(-1, IQueryBuilder::PARAM_INT),
- 'name' => $query->createNamedParameter(basename($internalPath)),
- 'mimetype' => $query->createNamedParameter(0, IQueryBuilder::PARAM_INT),
- 'mimepart' => $query->createNamedParameter(0, IQueryBuilder::PARAM_INT),
- 'size' => $query->createNamedParameter($size),
- 'storage_mtime' => $query->createNamedParameter(0, IQueryBuilder::PARAM_INT),
- 'encrypted' => $query->createNamedParameter(0, IQueryBuilder::PARAM_INT),
- 'unencrypted_size' => $query->createNamedParameter(0, IQueryBuilder::PARAM_INT),
- 'etag' => $query->createNamedParameter(''),
- 'permissions' => $query->createNamedParameter(31, IQueryBuilder::PARAM_INT),
- ]);
- $query->executeStatement();
- $id = $query->getLastInsertId();
- $this->fileIds[] = $id;
- } catch (DbalException $e) {
- if ($e->getReason() === DbalException::REASON_UNIQUE_CONSTRAINT_VIOLATION) {
- $query = $this->connection->getQueryBuilder();
- $query->select('fileid')
- ->from('filecache')
- ->where($query->expr()->eq('storage', $query->createNamedParameter($storageId)))
- ->andWhere($query->expr()->eq('path_hash', $query->createNamedParameter(md5($internalPath))));
- $id = (int)$query->execute()->fetchColumn();
- } else {
- throw $e;
- }
- }
- return $id;
- }
- public function testGetMountsForFileIdRootId(): void {
- $user1 = $this->userManager->get('u1');
- [$storage1, $rootId] = $this->getStorage(2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $this->cache->registerMounts($user1, [$mount1]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForFileId($rootId);
- $this->assertCount(1, $cachedMounts);
- $this->assertEquals('/foo/', $cachedMounts[0]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[0]->getUser()->getUID());
- $this->assertEquals($rootId, $cachedMounts[0]->getRootId());
- $this->assertEquals(2, $cachedMounts[0]->getStorageId());
- }
- public function testGetMountsForFileIdSubFolder(): void {
- $user1 = $this->userManager->get('u1');
- $fileId = $this->createCacheEntry('/foo/bar', 2);
- [$storage1, $rootId] = $this->getStorage(2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $this->cache->registerMounts($user1, [$mount1]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForFileId($fileId);
- $this->assertCount(1, $cachedMounts);
- $this->assertEquals('/foo/', $cachedMounts[0]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[0]->getUser()->getUID());
- $this->assertEquals($rootId, $cachedMounts[0]->getRootId());
- $this->assertEquals(2, $cachedMounts[0]->getStorageId());
- $this->assertEquals('foo/bar', $cachedMounts[0]->getInternalPath());
- $this->assertEquals('/foo/foo/bar', $cachedMounts[0]->getPath());
- }
- public function testGetMountsForFileIdSubFolderMount(): void {
- $user1 = $this->userManager->get('u1');
- [$storage1, $rootId] = $this->getStorage(2);
- $folderId = $this->createCacheEntry('/foo', 2);
- $fileId = $this->createCacheEntry('/foo/bar', 2);
- $mount1 = $this->getMockBuilder('\OC\Files\Mount\MountPoint')
- ->setConstructorArgs([$storage1, '/'])
- ->setMethods(['getStorageRootId'])
- ->getMock();
- $mount1->expects($this->any())
- ->method('getStorageRootId')
- ->willReturn($folderId);
- $this->cache->registerMounts($user1, [$mount1]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForFileId($fileId);
- $this->assertCount(1, $cachedMounts);
- $this->assertEquals('/', $cachedMounts[0]->getMountPoint());
- $this->assertEquals($user1->getUID(), $cachedMounts[0]->getUser()->getUID());
- $this->assertEquals($folderId, $cachedMounts[0]->getRootId());
- $this->assertEquals(2, $cachedMounts[0]->getStorageId());
- $this->assertEquals('foo', $cachedMounts[0]->getRootInternalPath());
- $this->assertEquals('bar', $cachedMounts[0]->getInternalPath());
- $this->assertEquals('/bar', $cachedMounts[0]->getPath());
- }
- public function testGetMountsForFileIdSubFolderMountOutside(): void {
- $user1 = $this->userManager->get('u1');
- [$storage1, $rootId] = $this->getStorage(2);
- $folderId = $this->createCacheEntry('/foo', 2);
- $fileId = $this->createCacheEntry('/bar/asd', 2);
- $mount1 = $this->getMockBuilder('\OC\Files\Mount\MountPoint')
- ->setConstructorArgs([$storage1, '/foo/'])
- ->setMethods(['getStorageRootId'])
- ->getMock();
- $mount1->expects($this->any())
- ->method('getStorageRootId')
- ->willReturn($folderId);
- $this->cache->registerMounts($user1, [$mount1]);
- $this->cache->registerMounts($user1, [$mount1]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForFileId($fileId);
- $this->assertCount(0, $cachedMounts);
- }
- public function testGetMountsForFileIdDeletedUser(): void {
- $user1 = $this->userManager->get('u1');
- [$storage1, $rootId] = $this->getStorage(2);
- $rootId = $this->createCacheEntry('', 2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $this->cache->registerMounts($user1, [$mount1]);
- $user1->delete();
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForFileId($rootId);
- $this->assertEmpty($cachedMounts);
- }
- public function testGetUsedSpaceForUsers(): void {
- $user1 = $this->userManager->get('u1');
- $user2 = $this->userManager->get('u2');
- /** @var Storage $storage1 */
- [$storage1, $rootId] = $this->getStorage(2);
- $folderId = $this->createCacheEntry('files', 2, 100);
- $fileId = $this->createCacheEntry('files/foo', 2, 7);
- $storage1->getCache()->put($folderId, ['size' => 100]);
- $storage1->getCache()->update($fileId, ['size' => 70]);
- $mount1 = $this->getMockBuilder(MountPoint::class)
- ->setConstructorArgs([$storage1, '/u1/'])
- ->setMethods(['getStorageRootId', 'getNumericStorageId'])
- ->getMock();
- $mount1->expects($this->any())
- ->method('getStorageRootId')
- ->willReturn($rootId);
- $mount1->expects($this->any())
- ->method('getNumericStorageId')
- ->willReturn(2);
- $this->cache->registerMounts($user1, [$mount1]);
- $result = $this->cache->getUsedSpaceForUsers([$user1, $user2]);
- $this->assertEquals(['u1' => 100], $result);
- }
- public function testMigrateMountProvider(): void {
- $user1 = $this->userManager->get('u1');
- [$storage1, $rootId] = $this->getStorage(2);
- $rootId = $this->createCacheEntry('', 2);
- $mount1 = new MountPoint($storage1, '/foo/');
- $this->cache->registerMounts($user1, [$mount1]);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user1);
- $this->assertCount(1, $cachedMounts);
- $this->assertEquals('', $cachedMounts[$this->keyForMount($mount1)]->getMountProvider());
- $mount1 = new MountPoint($storage1, '/foo/', null, null, null, null, 'dummy');
- $this->cache->registerMounts($user1, [$mount1], ['dummy']);
- $this->clearCache();
- $cachedMounts = $this->cache->getMountsForUser($user1);
- $this->assertCount(1, $cachedMounts);
- $this->assertEquals('dummy', $cachedMounts[$this->keyForMount($mount1)]->getMountProvider());
- }
- }
|