Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-07-08 10:54:26 +0300
committerJulius Härtl <jus@bitgrid.net>2020-07-08 10:54:26 +0300
commitc06e69c9dd45634620d8a9a70c29ae410c45caf0 (patch)
treef9059cc2ececd5ea050a4ade56257895debd6c29 /apps/files/tests/Command
parent479aa975d38f3d7cb274b28ccaa322fc316bbb57 (diff)
Test for proper removal of mount entries
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files/tests/Command')
-rw-r--r--apps/files/tests/Command/DeleteOrphanedFilesTest.php21
1 files changed, 20 insertions, 1 deletions
diff --git a/apps/files/tests/Command/DeleteOrphanedFilesTest.php b/apps/files/tests/Command/DeleteOrphanedFilesTest.php
index 7147d58891d..556c8d5eee6 100644
--- a/apps/files/tests/Command/DeleteOrphanedFilesTest.php
+++ b/apps/files/tests/Command/DeleteOrphanedFilesTest.php
@@ -87,6 +87,11 @@ class DeleteOrphanedFilesTest extends TestCase {
return $stmt->fetchAll();
}
+ protected function getMounts($storageId) {
+ $stmt = $this->connection->executeQuery('SELECT * FROM `*PREFIX*mounts` WHERE `storage_id` = ?', [$storageId]);
+ return $stmt->fetchAll();
+ }
+
/**
* Test clearing orphaned files
*/
@@ -98,20 +103,28 @@ class DeleteOrphanedFilesTest extends TestCase {
->disableOriginalConstructor()
->getMock();
+ // scan home storage so that mounts are properly setup
+ \OC::$server->getRootFolder()->getUserFolder($this->user1)->getStorage()->getScanner()->scan('');
+
$this->loginAsUser($this->user1);
+
$view = new View('/' . $this->user1 . '/');
$view->mkdir('files/test');
$fileInfo = $view->getFileInfo('files/test');
$storageId = $fileInfo->getStorage()->getId();
+ $numericStorageId = $fileInfo->getStorage()->getStorageCache()->getNumericId();
$this->assertCount(1, $this->getFile($fileInfo->getId()), 'Asserts that file is available');
+ $this->assertCount(1, $this->getMounts($numericStorageId), 'Asserts that mount is available');
$this->command->execute($input, $output);
$this->assertCount(1, $this->getFile($fileInfo->getId()), 'Asserts that file is still available');
+ $this->assertCount(1, $this->getMounts($numericStorageId), 'Asserts that mount is still available');
+
$deletedRows = $this->connection->executeUpdate('DELETE FROM `*PREFIX*storages` WHERE `id` = ?', [$storageId]);
$this->assertNotNull($deletedRows, 'Asserts that storage got deleted');
@@ -119,13 +132,19 @@ class DeleteOrphanedFilesTest extends TestCase {
// parent folder, `files`, ´test` and `welcome.txt` => 4 elements
$output
- ->expects($this->once())
+ ->expects($this->at(0))
->method('writeln')
->with('3 orphaned file cache entries deleted');
+ $output
+ ->expects($this->at(1))
+ ->method('writeln')
+ ->with('1 orphaned mount entries deleted');
+
$this->command->execute($input, $output);
$this->assertCount(0, $this->getFile($fileInfo->getId()), 'Asserts that file gets cleaned up');
+ $this->assertCount(0, $this->getMounts($numericStorageId), 'Asserts that mount gets cleaned up');
// since we deleted the storage it might throw a (valid) StorageNotAvailableException
try {