nextcloud/tests/lib/Files/Utils/ScannerTest.php

227 lines
6.6 KiB
PHP
Raw Permalink Normal View History

<?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\Utils;
2014-06-02 09:17:00 -04:00
use OC\Files\Filesystem;
use OC\Files\Mount\MountPoint;
use OC\Files\Storage\Temporary;
use OC\Files\Utils\Scanner;
use OCP\EventDispatcher\IEventDispatcher;
2016-09-12 15:29:38 -04:00
use OCP\Files\Config\IMountProvider;
use OCP\Files\Config\IMountProviderCollection;
2015-06-22 08:41:08 -04:00
use OCP\Files\Storage\IStorageFactory;
use OCP\IDBConnection;
2015-06-22 08:41:08 -04:00
use OCP\IUser;
use OCP\IUserManager;
use OCP\Server;
use Psr\Log\LoggerInterface;
class TestScanner extends Scanner {
/**
* @var MountPoint[] $mounts
*/
private $mounts = [];
/**
* @param MountPoint $mount
*/
public function addMount($mount) {
$this->mounts[] = $mount;
}
protected function getMounts($dir) {
return $this->mounts;
}
}
2015-11-02 19:52:41 -05:00
/**
* Class ScannerTest
2015-11-02 19:52:41 -05:00
*
*
* @package Test\Files\Utils
*/
#[\PHPUnit\Framework\Attributes\Group('DB')]
class ScannerTest extends \Test\TestCase {
2015-06-22 08:41:08 -04:00
/**
2015-09-21 18:56:36 -04:00
* @var \Test\Util\User\Dummy
2015-06-22 08:41:08 -04:00
*/
private $userBackend;
protected function setUp(): void {
parent::setUp();
2015-09-21 18:56:36 -04:00
$this->userBackend = new \Test\Util\User\Dummy();
Server::get(IUserManager::class)->registerBackend($this->userBackend);
$this->loginAsUser();
}
protected function tearDown(): void {
$this->logout();
Server::get(IUserManager::class)->removeBackend($this->userBackend);
parent::tearDown();
}
public function testReuseExistingRoot(): void {
$storage = new Temporary([]);
$mount = new MountPoint($storage, '');
2014-06-03 05:34:48 -04:00
Filesystem::getMountManager()->addMount($mount);
$cache = $storage->getCache();
$storage->mkdir('folder');
$storage->file_put_contents('foo.txt', 'qwerty');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$scanner = new TestScanner('', Server::get(IDBConnection::class), $this->createMock(IEventDispatcher::class), Server::get(LoggerInterface::class));
$scanner->addMount($mount);
$scanner->scan('');
$this->assertTrue($cache->inCache('folder/bar.txt'));
$oldRoot = $cache->get('');
$scanner->scan('');
$newRoot = $cache->get('');
$this->assertEquals($oldRoot, $newRoot);
}
public function testReuseExistingFile(): void {
$storage = new Temporary([]);
$mount = new MountPoint($storage, '');
2014-06-03 05:34:48 -04:00
Filesystem::getMountManager()->addMount($mount);
$cache = $storage->getCache();
$storage->mkdir('folder');
$storage->file_put_contents('foo.txt', 'qwerty');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$scanner = new TestScanner('', Server::get(IDBConnection::class), $this->createMock(IEventDispatcher::class), Server::get(LoggerInterface::class));
$scanner->addMount($mount);
$scanner->scan('');
$this->assertTrue($cache->inCache('folder/bar.txt'));
$old = $cache->get('folder/bar.txt');
$scanner->scan('');
$new = $cache->get('folder/bar.txt');
$this->assertEquals($old, $new);
}
2014-06-02 09:17:00 -04:00
public function testScanSubMount(): void {
2015-06-22 08:41:08 -04:00
$uid = $this->getUniqueID();
$this->userBackend->createUser($uid, 'test');
2016-09-12 15:29:38 -04:00
$mountProvider = $this->createMock(IMountProvider::class);
2015-06-22 08:41:08 -04:00
$storage = new Temporary([]);
2015-06-22 08:41:08 -04:00
$mount = new MountPoint($storage, '/' . $uid . '/files/foo');
$mountProvider->expects($this->any())
->method('getMountsForUser')
->willReturnCallback(function (IUser $user, IStorageFactory $storageFactory) use ($mount, $uid) {
2015-06-22 08:41:08 -04:00
if ($user->getUID() === $uid) {
return [$mount];
} else {
return [];
}
});
2015-06-22 08:41:08 -04:00
Server::get(IMountProviderCollection::class)->registerProvider($mountProvider);
2015-06-22 08:41:08 -04:00
$cache = $storage->getCache();
$storage->mkdir('folder');
$storage->file_put_contents('foo.txt', 'qwerty');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$scanner = new Scanner($uid, Server::get(IDBConnection::class), Server::get(IEventDispatcher::class), Server::get(LoggerInterface::class));
2015-06-22 08:41:08 -04:00
$this->assertFalse($cache->inCache('folder/bar.txt'));
$scanner->scan('/' . $uid . '/files/foo');
$this->assertTrue($cache->inCache('folder/bar.txt'));
}
public static function invalidPathProvider(): array {
2015-07-27 05:18:41 -04:00
return [
[
'../',
],
[
'..\\',
],
[
'../..\\../',
],
];
}
/**
* @param string $invalidPath
*/
#[\PHPUnit\Framework\Attributes\DataProvider('invalidPathProvider')]
public function testInvalidPathScanning($invalidPath): void {
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('Invalid path to scan');
$scanner = new TestScanner('', Server::get(IDBConnection::class), $this->createMock(IEventDispatcher::class), Server::get(LoggerInterface::class));
2015-07-27 05:18:41 -04:00
$scanner->scan($invalidPath);
}
public function testPropagateEtag(): void {
$storage = new Temporary([]);
$mount = new MountPoint($storage, '');
Filesystem::getMountManager()->addMount($mount);
$cache = $storage->getCache();
$storage->mkdir('folder');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$storage->touch('folder/bar.txt', time() - 200);
$scanner = new TestScanner('', Server::get(IDBConnection::class), $this->createMock(IEventDispatcher::class), Server::get(LoggerInterface::class));
$scanner->addMount($mount);
$scanner->scan('');
$this->assertTrue($cache->inCache('folder/bar.txt'));
$oldRoot = $cache->get('');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$scanner->scan('');
$newRoot = $cache->get('');
$this->assertNotEquals($oldRoot->getEtag(), $newRoot->getEtag());
}
public function testShallow(): void {
$storage = new Temporary([]);
$mount = new MountPoint($storage, '');
Filesystem::getMountManager()->addMount($mount);
$cache = $storage->getCache();
$storage->mkdir('folder');
$storage->mkdir('folder/subfolder');
$storage->file_put_contents('foo.txt', 'qwerty');
$storage->file_put_contents('folder/bar.txt', 'qwerty');
$storage->file_put_contents('folder/subfolder/foobar.txt', 'qwerty');
$scanner = new TestScanner('', Server::get(IDBConnection::class), $this->createMock(IEventDispatcher::class), Server::get(LoggerInterface::class));
$scanner->addMount($mount);
$scanner->scan('', $recusive = false);
$this->assertTrue($cache->inCache('folder'));
$this->assertFalse($cache->inCache('folder/subfolder'));
$this->assertTrue($cache->inCache('foo.txt'));
$this->assertFalse($cache->inCache('folder/bar.txt'));
$this->assertFalse($cache->inCache('folder/subfolder/foobar.txt'));
$scanner->scan('folder', $recusive = false);
$this->assertTrue($cache->inCache('folder'));
$this->assertTrue($cache->inCache('folder/subfolder'));
$this->assertTrue($cache->inCache('foo.txt'));
$this->assertTrue($cache->inCache('folder/bar.txt'));
$this->assertFalse($cache->inCache('folder/subfolder/foobar.txt'));
}
}