|
|
|
@ -24,6 +24,7 @@ |
|
|
|
|
namespace OCA\Encryption\Tests; |
|
|
|
|
|
|
|
|
|
use OCA\Encryption\Migration; |
|
|
|
|
use OCP\ILogger; |
|
|
|
|
|
|
|
|
|
class MigrationTest extends \Test\TestCase { |
|
|
|
|
|
|
|
|
@ -37,6 +38,9 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
private $recovery_key_id = 'recovery_key_id'; |
|
|
|
|
private $moduleId; |
|
|
|
|
|
|
|
|
|
/** @var PHPUnit_Framework_MockObject_MockObject | ILogger */ |
|
|
|
|
private $logger; |
|
|
|
|
|
|
|
|
|
public static function setUpBeforeClass() { |
|
|
|
|
parent::setUpBeforeClass(); |
|
|
|
|
\OC_User::createUser(self::TEST_ENCRYPTION_MIGRATION_USER1, 'foo'); |
|
|
|
@ -53,6 +57,7 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function setUp() { |
|
|
|
|
$this->logger = $this->getMockBuilder('\OCP\ILogger')->disableOriginalConstructor()->getMock(); |
|
|
|
|
$this->view = new \OC\Files\View(); |
|
|
|
|
$this->moduleId = \OCA\Encryption\Crypto\Encryption::ID; |
|
|
|
|
} |
|
|
|
@ -100,6 +105,17 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
$this->view->file_put_contents($uid . '/files_encryption/keys/folder2/file.2.1/fileKey' , 'data'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function createDummyFiles($uid) { |
|
|
|
|
$this->view->mkdir($uid . '/files/folder1/folder2/folder3/file3'); |
|
|
|
|
$this->view->mkdir($uid . '/files/folder1/folder2/file2'); |
|
|
|
|
$this->view->mkdir($uid . '/files/folder1/file.1'); |
|
|
|
|
$this->view->mkdir($uid . '/files/folder2/file.2.1'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files/folder1/folder2/folder3/file3/fileKey' , 'data'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files/folder1/folder2/file2/fileKey' , 'data'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files/folder1/file.1/fileKey' , 'data'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files/folder2/file.2.1/fileKey' , 'data'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function createDummyFilesInTrash($uid) { |
|
|
|
|
$this->view->mkdir($uid . '/files_trashbin/keys/file1.d5457864'); |
|
|
|
|
$this->view->mkdir($uid . '/files_trashbin/keys/folder1.d7437648723/file2'); |
|
|
|
@ -109,6 +125,11 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
|
|
|
|
|
$this->view->file_put_contents($uid . '/files_trashbin/keys/file1.d5457864/fileKey' , 'data'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files_trashbin/keys/folder1.d7437648723/file2/fileKey' , 'data'); |
|
|
|
|
|
|
|
|
|
// create the files itself |
|
|
|
|
$this->view->mkdir($uid . '/files_trashbin/folder1.d7437648723'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files_trashbin/file1.d5457864' , 'data'); |
|
|
|
|
$this->view->file_put_contents($uid . '/files_trashbin/folder1.d7437648723/file2' , 'data'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected function createDummySystemWideKeys() { |
|
|
|
@ -118,7 +139,6 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
$this->view->file_put_contents('files_encryption/systemwide_2.privateKey', 'data'); |
|
|
|
|
$this->view->file_put_contents('files_encryption/public_keys/systemwide_1.publicKey', 'data'); |
|
|
|
|
$this->view->file_put_contents('files_encryption/public_keys/systemwide_2.publicKey', 'data'); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function testMigrateToNewFolderStructure() { |
|
|
|
@ -134,6 +154,10 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
$this->createDummyFileKeys(self::TEST_ENCRYPTION_MIGRATION_USER2); |
|
|
|
|
$this->createDummyFileKeys(self::TEST_ENCRYPTION_MIGRATION_USER3); |
|
|
|
|
|
|
|
|
|
$this->createDummyFiles(self::TEST_ENCRYPTION_MIGRATION_USER1); |
|
|
|
|
$this->createDummyFiles(self::TEST_ENCRYPTION_MIGRATION_USER2); |
|
|
|
|
$this->createDummyFiles(self::TEST_ENCRYPTION_MIGRATION_USER3); |
|
|
|
|
|
|
|
|
|
$this->createDummyFilesInTrash(self::TEST_ENCRYPTION_MIGRATION_USER2); |
|
|
|
|
|
|
|
|
|
// no user for system wide mount points |
|
|
|
@ -142,7 +166,22 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
|
|
|
|
|
$this->createDummySystemWideKeys(); |
|
|
|
|
|
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection()); |
|
|
|
|
$m = $this->getMockBuilder('OCA\Encryption\Migration') |
|
|
|
|
->setConstructorArgs( |
|
|
|
|
[ |
|
|
|
|
\OC::$server->getConfig(), |
|
|
|
|
new \OC\Files\View(), |
|
|
|
|
\OC::$server->getDatabaseConnection(), |
|
|
|
|
$this->logger |
|
|
|
|
] |
|
|
|
|
)->setMethods(['getSystemMountPoints'])->getMock(); |
|
|
|
|
|
|
|
|
|
$m->expects($this->any())->method('getSystemMountPoints') |
|
|
|
|
->willReturn([['mountpoint' => 'folder1'], ['mountpoint' => 'folder2']]); |
|
|
|
|
|
|
|
|
|
//$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection(), $this->logger); |
|
|
|
|
$m->reorganizeFolderStructure(); |
|
|
|
|
// even if it runs twice folder should always move only once |
|
|
|
|
$m->reorganizeFolderStructure(); |
|
|
|
|
|
|
|
|
|
$this->assertTrue( |
|
|
|
@ -267,7 +306,7 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
public function testUpdateDB() { |
|
|
|
|
$this->prepareDB(); |
|
|
|
|
|
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection()); |
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection(), $this->logger); |
|
|
|
|
$m->updateDB(); |
|
|
|
|
|
|
|
|
|
$this->verifyDB('`*PREFIX*appconfig`', 'files_encryption', 0); |
|
|
|
@ -286,7 +325,7 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
$config->setAppValue('encryption', 'publicShareKeyId', 'wrong_share_id'); |
|
|
|
|
$config->setUserValue(self::TEST_ENCRYPTION_MIGRATION_USER1, 'encryption', 'recoverKeyEnabled', '9'); |
|
|
|
|
|
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection()); |
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection(), $this->logger); |
|
|
|
|
$m->updateDB(); |
|
|
|
|
|
|
|
|
|
$this->verifyDB('`*PREFIX*appconfig`', 'files_encryption', 0); |
|
|
|
@ -349,7 +388,7 @@ class MigrationTest extends \Test\TestCase { |
|
|
|
|
*/ |
|
|
|
|
public function testUpdateFileCache() { |
|
|
|
|
$this->prepareFileCache(); |
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection()); |
|
|
|
|
$m = new Migration(\OC::$server->getConfig(), new \OC\Files\View(), \OC::$server->getDatabaseConnection(), $this->logger); |
|
|
|
|
self::invokePrivate($m, 'updateFileCache'); |
|
|
|
|
|
|
|
|
|
// check results |
|
|
|
|