2015-03-30 14:23:10 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Test\Files\Storage\Wrapper;
|
|
|
|
|
2016-11-29 18:27:28 +03:00
|
|
|
use OC\Encryption\Exceptions\ModuleDoesNotExistsException;
|
|
|
|
use OC\Encryption\Update;
|
2015-07-09 19:04:35 +03:00
|
|
|
use OC\Encryption\Util;
|
2015-04-02 19:12:20 +03:00
|
|
|
use OC\Files\Storage\Temporary;
|
2016-11-29 18:27:28 +03:00
|
|
|
use OC\Files\Storage\Wrapper\Encryption;
|
2015-03-30 14:23:10 +03:00
|
|
|
use OC\Files\View;
|
2016-09-07 21:01:13 +03:00
|
|
|
use OC\Log;
|
|
|
|
use OC\Memcache\ArrayCache;
|
2016-04-14 18:32:25 +03:00
|
|
|
use OC\User\Manager;
|
2016-11-29 18:27:28 +03:00
|
|
|
use OCP\Encryption\IEncryptionModule;
|
|
|
|
use OCP\Encryption\IFile;
|
|
|
|
use OCP\Encryption\Keys\IStorage;
|
2019-11-20 16:22:00 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2016-09-07 21:01:13 +03:00
|
|
|
use OCP\Files\Cache\ICache;
|
2016-11-29 18:27:28 +03:00
|
|
|
use OCP\Files\Mount\IMountPoint;
|
2017-10-24 16:26:53 +03:00
|
|
|
use OCP\IConfig;
|
2016-11-29 18:27:28 +03:00
|
|
|
use OCP\ILogger;
|
2019-02-24 10:54:43 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-02-22 19:28:53 +03:00
|
|
|
use Test\Files\Storage\Storage;
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class EncryptionTest extends Storage {
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2015-07-09 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* block size will always be 8192 for a PHP stream
|
|
|
|
* @see https://bugs.php.net/bug.php?id=21641
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
protected $headerSize = 8192;
|
|
|
|
|
2015-03-30 14:23:10 +03:00
|
|
|
/**
|
2015-04-02 19:12:20 +03:00
|
|
|
* @var Temporary
|
2015-03-30 14:23:10 +03:00
|
|
|
*/
|
|
|
|
private $sourceStorage;
|
|
|
|
|
2015-04-23 17:48:11 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Files\Storage\Wrapper\Encryption | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-23 17:48:11 +03:00
|
|
|
*/
|
|
|
|
protected $instance;
|
|
|
|
|
2015-04-22 13:12:27 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Encryption\Keys\Storage | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-22 13:12:27 +03:00
|
|
|
*/
|
|
|
|
private $keyStore;
|
|
|
|
|
2015-04-23 17:48:11 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Encryption\Util | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-23 17:48:11 +03:00
|
|
|
*/
|
|
|
|
private $util;
|
|
|
|
|
2015-04-23 18:06:55 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Encryption\Manager | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-23 18:06:55 +03:00
|
|
|
*/
|
|
|
|
private $encryptionManager;
|
|
|
|
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OCP\Encryption\IEncryptionModule | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-23 18:06:55 +03:00
|
|
|
*/
|
|
|
|
private $encryptionModule;
|
|
|
|
|
2015-04-23 17:48:11 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Encryption\Update | \PHPUnit\Framework\MockObject\MockObject
|
2015-04-23 17:48:11 +03:00
|
|
|
*/
|
|
|
|
private $update;
|
|
|
|
|
2015-05-05 15:38:06 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Files\Cache\Cache | \PHPUnit\Framework\MockObject\MockObject
|
2015-05-05 15:38:06 +03:00
|
|
|
*/
|
|
|
|
private $cache;
|
|
|
|
|
2015-05-18 12:54:51 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Log | \PHPUnit\Framework\MockObject\MockObject
|
2015-05-18 12:54:51 +03:00
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Encryption\File | \PHPUnit\Framework\MockObject\MockObject
|
2015-05-18 12:54:51 +03:00
|
|
|
*/
|
|
|
|
private $file;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Files\Mount\MountPoint | \PHPUnit\Framework\MockObject\MockObject
|
2015-05-18 12:54:51 +03:00
|
|
|
*/
|
|
|
|
private $mount;
|
|
|
|
|
2015-05-21 15:07:42 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Files\Mount\Manager | \PHPUnit\Framework\MockObject\MockObject
|
2015-05-21 15:07:42 +03:00
|
|
|
*/
|
|
|
|
private $mountManager;
|
|
|
|
|
2015-06-23 11:43:28 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OC\Group\Manager | \PHPUnit\Framework\MockObject\MockObject
|
2015-06-23 11:43:28 +03:00
|
|
|
*/
|
|
|
|
private $groupManager;
|
|
|
|
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OCP\IConfig | \PHPUnit\Framework\MockObject\MockObject
|
2015-06-23 11:43:28 +03:00
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OC\Memcache\ArrayCache | \PHPUnit\Framework\MockObject\MockObject */
|
2016-03-31 00:20:37 +03:00
|
|
|
private $arrayCache;
|
|
|
|
|
2015-06-23 11:43:28 +03:00
|
|
|
|
2015-04-27 14:13:27 +03:00
|
|
|
/** @var integer dummy unencrypted size */
|
|
|
|
private $dummySize = -1;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-03-30 14:23:10 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
$mockModule = $this->buildMockModule();
|
2015-04-23 18:06:55 +03:00
|
|
|
$this->encryptionManager = $this->getMockBuilder('\OC\Encryption\Manager')
|
2015-03-30 14:23:10 +03:00
|
|
|
->disableOriginalConstructor()
|
2015-04-27 12:10:31 +03:00
|
|
|
->setMethods(['getEncryptionModule', 'isEnabled'])
|
2015-03-31 00:19:35 +03:00
|
|
|
->getMock();
|
2015-04-23 18:06:55 +03:00
|
|
|
$this->encryptionManager->expects($this->any())
|
2015-04-02 15:44:58 +03:00
|
|
|
->method('getEncryptionModule')
|
|
|
|
->willReturn($mockModule);
|
2015-04-02 19:12:20 +03:00
|
|
|
|
2016-09-07 21:01:13 +03:00
|
|
|
$this->arrayCache = $this->createMock(ArrayCache::class);
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->config = $this->getMockBuilder(IConfig::class)
|
2015-04-02 19:12:20 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-06-23 11:43:28 +03:00
|
|
|
$this->groupManager = $this->getMockBuilder('\OC\Group\Manager')
|
2015-04-15 14:19:17 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2016-09-07 21:01:13 +03:00
|
|
|
$this->util = $this->getMockBuilder('\OC\Encryption\Util')
|
|
|
|
->setMethods(['getUidAndFilename', 'isFile', 'isExcluded'])
|
2019-11-20 16:22:00 +03:00
|
|
|
->setConstructorArgs([new View(), new Manager($this->config, $this->createMock(EventDispatcherInterface::class), $this->createMock(IEventDispatcher::class)), $this->groupManager, $this->config, $this->arrayCache])
|
2016-09-07 21:01:13 +03:00
|
|
|
->getMock();
|
2015-04-23 17:48:11 +03:00
|
|
|
$this->util->expects($this->any())
|
2015-04-02 15:44:58 +03:00
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturnCallback(function ($path) {
|
|
|
|
return ['user1', $path];
|
|
|
|
});
|
2015-04-02 19:12:20 +03:00
|
|
|
|
2015-05-18 12:54:51 +03:00
|
|
|
$this->file = $this->getMockBuilder('\OC\Encryption\File')
|
2015-04-02 15:44:58 +03:00
|
|
|
->disableOriginalConstructor()
|
2015-04-09 19:30:45 +03:00
|
|
|
->setMethods(['getAccessList'])
|
2015-04-02 15:44:58 +03:00
|
|
|
->getMock();
|
2015-05-18 12:54:51 +03:00
|
|
|
$this->file->expects($this->any())->method('getAccessList')->willReturn([]);
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2016-09-07 21:01:13 +03:00
|
|
|
$this->logger = $this->createMock(Log::class);
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$this->sourceStorage = new Temporary([]);
|
2015-04-27 14:13:27 +03:00
|
|
|
|
2015-04-22 13:12:27 +03:00
|
|
|
$this->keyStore = $this->getMockBuilder('\OC\Encryption\Keys\Storage')
|
2015-04-02 15:44:58 +03:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-04-27 14:13:27 +03:00
|
|
|
|
2015-04-23 17:48:11 +03:00
|
|
|
$this->update = $this->getMockBuilder('\OC\Encryption\Update')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-04-27 14:13:27 +03:00
|
|
|
|
2015-05-18 12:54:51 +03:00
|
|
|
$this->mount = $this->getMockBuilder('\OC\Files\Mount\MountPoint')
|
2015-04-07 11:03:44 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(['getOption'])
|
|
|
|
->getMock();
|
2015-07-23 18:01:44 +03:00
|
|
|
$this->mount->expects($this->any())->method('getOption')->willReturnCallback(function ($option, $default) {
|
|
|
|
if ($option === 'encrypt' && $default === true) {
|
|
|
|
global $mockedMountPointEncryptionEnabled;
|
|
|
|
if ($mockedMountPointEncryptionEnabled !== null) {
|
|
|
|
return $mockedMountPointEncryptionEnabled;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
2015-04-27 14:13:27 +03:00
|
|
|
|
2015-05-05 15:38:06 +03:00
|
|
|
$this->cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-04-27 14:13:27 +03:00
|
|
|
$this->cache->expects($this->any())
|
|
|
|
->method('get')
|
2020-04-10 15:19:56 +03:00
|
|
|
->willReturnCallback(function ($path) {
|
|
|
|
return ['encrypted' => false, 'path' => $path];
|
|
|
|
});
|
2015-05-21 15:07:42 +03:00
|
|
|
|
2017-08-06 22:33:16 +03:00
|
|
|
$this->mountManager = $this->createMock(\OC\Files\Mount\Manager::class);
|
|
|
|
$this->mountManager->method('findByStorageId')
|
|
|
|
->willReturn([]);
|
2015-05-05 15:38:06 +03:00
|
|
|
|
|
|
|
$this->instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
2015-04-15 10:49:50 +03:00
|
|
|
->setConstructorArgs(
|
2015-05-05 15:38:06 +03:00
|
|
|
[
|
2015-04-15 10:49:50 +03:00
|
|
|
[
|
|
|
|
'storage' => $this->sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
2015-05-18 12:54:51 +03:00
|
|
|
'mount' => $this->mount
|
2015-04-15 10:49:50 +03:00
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2015-04-15 10:49:50 +03:00
|
|
|
]
|
|
|
|
)
|
2015-05-12 19:49:25 +03:00
|
|
|
->setMethods(['getMetaData', 'getCache', 'getEncryptionModule'])
|
2015-05-05 15:38:06 +03:00
|
|
|
->getMock();
|
|
|
|
|
2015-04-27 14:13:27 +03:00
|
|
|
$this->instance->expects($this->any())
|
|
|
|
->method('getMetaData')
|
2015-05-21 15:07:42 +03:00
|
|
|
->willReturnCallback(function ($path) {
|
|
|
|
return ['encrypted' => true, 'size' => $this->dummySize, 'path' => $path];
|
|
|
|
});
|
2015-04-27 14:13:27 +03:00
|
|
|
|
|
|
|
$this->instance->expects($this->any())
|
|
|
|
->method('getCache')
|
|
|
|
->willReturn($this->cache);
|
2015-05-12 19:49:25 +03:00
|
|
|
|
|
|
|
$this->instance->expects($this->any())
|
|
|
|
->method('getEncryptionModule')
|
|
|
|
->willReturn($mockModule);
|
2015-03-30 14:23:10 +03:00
|
|
|
}
|
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @return \PHPUnit\Framework\MockObject\MockObject
|
2015-04-02 15:44:58 +03:00
|
|
|
*/
|
|
|
|
protected function buildMockModule() {
|
2015-04-23 18:06:55 +03:00
|
|
|
$this->encryptionModule = $this->getMockBuilder('\OCP\Encryption\IEncryptionModule')
|
2015-04-02 15:44:58 +03:00
|
|
|
->disableOriginalConstructor()
|
2017-05-31 16:26:10 +03:00
|
|
|
->setMethods(['getId', 'getDisplayName', 'begin', 'end', 'encrypt', 'decrypt', 'update', 'shouldEncrypt', 'getUnencryptedBlockSize', 'isReadable', 'encryptAll', 'prepareDecryptAll', 'isReadyForUser', 'needDetailedAccessList'])
|
2015-04-02 15:44:58 +03:00
|
|
|
->getMock();
|
|
|
|
|
2015-04-23 18:06:55 +03:00
|
|
|
$this->encryptionModule->expects($this->any())->method('getId')->willReturn('UNIT_TEST_MODULE');
|
|
|
|
$this->encryptionModule->expects($this->any())->method('getDisplayName')->willReturn('Unit test module');
|
|
|
|
$this->encryptionModule->expects($this->any())->method('begin')->willReturn([]);
|
|
|
|
$this->encryptionModule->expects($this->any())->method('end')->willReturn('');
|
|
|
|
$this->encryptionModule->expects($this->any())->method('encrypt')->willReturnArgument(0);
|
|
|
|
$this->encryptionModule->expects($this->any())->method('decrypt')->willReturnArgument(0);
|
|
|
|
$this->encryptionModule->expects($this->any())->method('update')->willReturn(true);
|
|
|
|
$this->encryptionModule->expects($this->any())->method('shouldEncrypt')->willReturn(true);
|
|
|
|
$this->encryptionModule->expects($this->any())->method('getUnencryptedBlockSize')->willReturn(8192);
|
2015-05-12 19:49:25 +03:00
|
|
|
$this->encryptionModule->expects($this->any())->method('isReadable')->willReturn(true);
|
2017-05-31 16:26:10 +03:00
|
|
|
$this->encryptionModule->expects($this->any())->method('needDetailedAccessList')->willReturn(false);
|
2015-04-23 18:06:55 +03:00
|
|
|
return $this->encryptionModule;
|
2015-04-02 15:44:58 +03:00
|
|
|
}
|
2015-04-22 13:12:27 +03:00
|
|
|
|
2016-02-22 19:28:53 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestGetMetaData
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param array $metaData
|
|
|
|
* @param bool $encrypted
|
|
|
|
* @param bool $unencryptedSizeSet
|
|
|
|
* @param int $storedUnencryptedSize
|
|
|
|
* @param array $expected
|
|
|
|
*/
|
|
|
|
public function testGetMetaData($path, $metaData, $encrypted, $unencryptedSizeSet, $storedUnencryptedSize, $expected) {
|
|
|
|
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$cache->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
function ($path) use ($encrypted) {
|
2016-02-22 19:28:53 +03:00
|
|
|
return ['encrypted' => $encrypted, 'path' => $path, 'size' => 0, 'fileid' => 1];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2016-02-22 19:28:53 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['getCache', 'verifyUnencryptedSize'])
|
|
|
|
->getMock();
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($unencryptedSizeSet) {
|
2016-02-22 19:28:53 +03:00
|
|
|
$this->invokePrivate($this->instance, 'unencryptedSize', [[$path => $storedUnencryptedSize]]);
|
|
|
|
}
|
|
|
|
|
2016-03-31 19:06:37 +03:00
|
|
|
$fileEntry = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2016-02-22 19:28:53 +03:00
|
|
|
$sourceStorage->expects($this->once())->method('getMetaData')->with($path)
|
|
|
|
->willReturn($metaData);
|
2016-03-31 19:06:37 +03:00
|
|
|
$sourceStorage->expects($this->any())
|
|
|
|
->method('getCache')
|
|
|
|
->with($path)
|
|
|
|
->willReturn($fileEntry);
|
2019-11-22 11:52:58 +03:00
|
|
|
if ($metaData !== null) {
|
|
|
|
$fileEntry->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->with($metaData['fileid']);
|
|
|
|
}
|
2016-02-22 19:28:53 +03:00
|
|
|
|
|
|
|
$this->instance->expects($this->any())->method('getCache')->willReturn($cache);
|
2019-11-22 11:52:58 +03:00
|
|
|
if ($expected !== null) {
|
|
|
|
$this->instance->expects($this->any())->method('verifyUnencryptedSize')
|
|
|
|
->with($path, 0)->willReturn($expected['size']);
|
|
|
|
}
|
2016-02-22 19:28:53 +03:00
|
|
|
|
|
|
|
$result = $this->instance->getMetaData($path);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($expected['encrypted'])) {
|
2016-03-31 19:06:37 +03:00
|
|
|
$this->assertSame($expected['encrypted'], (bool)$result['encrypted']);
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($expected['encryptedVersion'])) {
|
2016-03-31 19:06:37 +03:00
|
|
|
$this->assertSame($expected['encryptedVersion'], $result['encryptedVersion']);
|
|
|
|
}
|
|
|
|
}
|
2019-11-22 11:52:58 +03:00
|
|
|
|
|
|
|
if ($expected !== null) {
|
|
|
|
$this->assertSame($expected['size'], $result['size']);
|
|
|
|
} else {
|
|
|
|
$this->assertSame(null, $result);
|
|
|
|
}
|
2016-02-22 19:28:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestGetMetaData() {
|
|
|
|
return [
|
2016-03-31 19:06:37 +03:00
|
|
|
['/test.txt', ['size' => 42, 'encrypted' => 2, 'encryptedVersion' => 2, 'fileid' => 1], true, true, 12, ['size' => 12, 'encrypted' => true, 'encryptedVersion' => 2]],
|
2016-02-22 19:28:53 +03:00
|
|
|
['/test.txt', null, true, true, 12, null],
|
2016-03-31 19:06:37 +03:00
|
|
|
['/test.txt', ['size' => 42, 'encrypted' => 0, 'fileid' => 1], false, false, 12, ['size' => 42, 'encrypted' => false]],
|
|
|
|
['/test.txt', ['size' => 42, 'encrypted' => false, 'fileid' => 1], true, false, 12, ['size' => 12, 'encrypted' => true]]
|
2016-02-22 19:28:53 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilesize() {
|
|
|
|
$cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$cache->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->willReturn(['encrypted' => true, 'path' => '/test.txt', 'size' => 0, 'fileid' => 1]);
|
|
|
|
|
|
|
|
$this->instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $this->sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2016-02-22 19:28:53 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['getCache', 'verifyUnencryptedSize'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->instance->expects($this->any())->method('getCache')->willReturn($cache);
|
|
|
|
$this->instance->expects($this->any())->method('verifyUnencryptedSize')
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertSame(42,
|
|
|
|
$this->instance->filesize('/test.txt')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestVerifyUnencryptedSize
|
|
|
|
*
|
|
|
|
* @param int $encryptedSize
|
|
|
|
* @param int $unencryptedSize
|
|
|
|
* @param bool $failure
|
|
|
|
* @param int $expected
|
|
|
|
*/
|
|
|
|
public function testVerifyUnencryptedSize($encryptedSize, $unencryptedSize, $failure, $expected) {
|
|
|
|
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$this->instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2016-02-22 19:28:53 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['fixUnencryptedSize'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$sourceStorage->expects($this->once())->method('filesize')->willReturn($encryptedSize);
|
|
|
|
|
|
|
|
$this->instance->expects($this->any())->method('fixUnencryptedSize')
|
|
|
|
->with('/test.txt', $encryptedSize, $unencryptedSize)
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
function () use ($failure, $expected) {
|
2016-02-22 19:28:53 +03:00
|
|
|
if ($failure) {
|
|
|
|
throw new \Exception();
|
|
|
|
} else {
|
|
|
|
return $expected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
$expected,
|
|
|
|
$this->invokePrivate($this->instance, 'verifyUnencryptedSize', ['/test.txt', $unencryptedSize])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestVerifyUnencryptedSize() {
|
|
|
|
return [
|
|
|
|
[120, 80, false, 80],
|
|
|
|
[120, 120, false, 80],
|
|
|
|
[120, -1, false, 80],
|
|
|
|
[120, -1, true, -1]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-04-23 17:48:11 +03:00
|
|
|
/**
|
2015-04-24 14:06:27 +03:00
|
|
|
* @dataProvider dataTestCopyAndRename
|
2015-04-23 17:48:11 +03:00
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-04-27 14:13:27 +03:00
|
|
|
* @param $encryptionEnabled
|
2015-04-24 15:27:23 +03:00
|
|
|
* @param boolean $renameKeysReturn
|
2015-04-23 17:48:11 +03:00
|
|
|
*/
|
2015-04-27 14:13:27 +03:00
|
|
|
public function testRename($source,
|
|
|
|
$target,
|
|
|
|
$encryptionEnabled,
|
2015-05-11 11:35:42 +03:00
|
|
|
$renameKeysReturn) {
|
2015-04-27 14:13:27 +03:00
|
|
|
if ($encryptionEnabled) {
|
|
|
|
$this->keyStore
|
|
|
|
->expects($this->once())
|
|
|
|
->method('renameKeys')
|
|
|
|
->willReturn($renameKeysReturn);
|
|
|
|
} else {
|
|
|
|
$this->keyStore
|
|
|
|
->expects($this->never())->method('renameKeys');
|
|
|
|
}
|
2015-04-23 17:48:11 +03:00
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isFile')->willReturn(true);
|
2015-04-27 14:13:27 +03:00
|
|
|
$this->encryptionManager->expects($this->once())
|
|
|
|
->method('isEnabled')->willReturn($encryptionEnabled);
|
2015-04-23 17:48:11 +03:00
|
|
|
|
|
|
|
$this->instance->mkdir($source);
|
|
|
|
$this->instance->mkdir(dirname($target));
|
|
|
|
$this->instance->rename($source, $target);
|
|
|
|
}
|
|
|
|
|
2015-08-24 16:57:03 +03:00
|
|
|
public function testCopyEncryption() {
|
|
|
|
$this->instance->file_put_contents('source.txt', 'bar');
|
|
|
|
$this->instance->copy('source.txt', 'target.txt');
|
|
|
|
$this->assertSame('bar', $this->instance->file_get_contents('target.txt'));
|
|
|
|
$targetMeta = $this->instance->getMetaData('target.txt');
|
|
|
|
$sourceMeta = $this->instance->getMetaData('source.txt');
|
|
|
|
$this->assertSame($sourceMeta['encrypted'], $targetMeta['encrypted']);
|
|
|
|
$this->assertSame($sourceMeta['size'], $targetMeta['size']);
|
2015-04-24 14:06:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* data provider for testCopyTesting() and dataTestCopyAndRename()
|
2015-04-23 18:06:55 +03:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2015-04-24 14:06:27 +03:00
|
|
|
public function dataTestCopyAndRename() {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
|
|
|
['source', 'target', true, false, false],
|
|
|
|
['source', 'target', true, true, false],
|
|
|
|
['source', '/subFolder/target', true, false, false],
|
|
|
|
['source', '/subFolder/target', true, true, true],
|
|
|
|
['source', '/subFolder/target', false, true, false],
|
|
|
|
];
|
2015-04-23 18:06:55 +03:00
|
|
|
}
|
|
|
|
|
2015-04-27 15:26:05 +03:00
|
|
|
public function testIsLocal() {
|
2015-04-27 14:13:27 +03:00
|
|
|
$this->encryptionManager->expects($this->once())
|
|
|
|
->method('isEnabled')->willReturn(true);
|
2015-04-27 15:26:05 +03:00
|
|
|
$this->assertFalse($this->instance->isLocal());
|
|
|
|
}
|
2015-05-18 12:54:51 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestRmdir
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param boolean $rmdirResult
|
|
|
|
* @param boolean $isExcluded
|
|
|
|
* @param boolean $encryptionEnabled
|
|
|
|
*/
|
|
|
|
public function testRmdir($path, $rmdirResult, $isExcluded, $encryptionEnabled) {
|
|
|
|
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$util = $this->getMockBuilder('\OC\Encryption\Util')->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$sourceStorage->expects($this->once())->method('rmdir')->willReturn($rmdirResult);
|
|
|
|
$util->expects($this->any())->method('isExcluded')-> willReturn($isExcluded);
|
|
|
|
$this->encryptionManager->expects($this->any())->method('isEnabled')->willReturn($encryptionEnabled);
|
|
|
|
|
|
|
|
$encryptionStorage = new \OC\Files\Storage\Wrapper\Encryption(
|
|
|
|
[
|
|
|
|
'storage' => $sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/mountPoint',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
|
|
|
$this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if ($rmdirResult === true && $isExcluded === false && $encryptionEnabled === true) {
|
|
|
|
$this->keyStore->expects($this->once())->method('deleteAllFileKeys')->with('/mountPoint' . $path);
|
|
|
|
} else {
|
|
|
|
$this->keyStore->expects($this->never())->method('deleteAllFileKeys');
|
|
|
|
}
|
|
|
|
|
|
|
|
$encryptionStorage->rmdir($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestRmdir() {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
|
|
|
['/file.txt', true, true, true],
|
|
|
|
['/file.txt', false, true, true],
|
|
|
|
['/file.txt', true, false, true],
|
|
|
|
['/file.txt', false, false, true],
|
|
|
|
['/file.txt', true, true, false],
|
|
|
|
['/file.txt', false, true, false],
|
|
|
|
['/file.txt', true, false, false],
|
|
|
|
['/file.txt', false, false, false],
|
|
|
|
];
|
2015-05-18 12:54:51 +03:00
|
|
|
}
|
2015-05-21 15:07:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestCopyKeys
|
|
|
|
*
|
|
|
|
* @param boolean $excluded
|
|
|
|
* @param boolean $expected
|
|
|
|
*/
|
|
|
|
public function testCopyKeys($excluded, $expected) {
|
|
|
|
$this->util->expects($this->once())
|
|
|
|
->method('isExcluded')
|
|
|
|
->willReturn($excluded);
|
|
|
|
|
|
|
|
if ($excluded) {
|
|
|
|
$this->keyStore->expects($this->never())->method('copyKeys');
|
|
|
|
} else {
|
|
|
|
$this->keyStore->expects($this->once())->method('copyKeys')->willReturn(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
2015-06-03 13:03:02 +03:00
|
|
|
self::invokePrivate($this->instance, 'copyKeys', ['/source', '/target'])
|
2015-05-21 15:07:42 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestCopyKeys() {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
|
|
|
[true, false],
|
|
|
|
[false, true],
|
|
|
|
];
|
2015-05-21 15:07:42 +03:00
|
|
|
}
|
2015-06-23 11:43:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestGetHeader
|
2015-06-26 12:26:40 +03:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param bool $strippedPathExists
|
|
|
|
* @param string $strippedPath
|
2015-06-23 11:43:28 +03:00
|
|
|
*/
|
2015-06-26 12:26:40 +03:00
|
|
|
public function testGetHeader($path, $strippedPathExists, $strippedPath) {
|
2015-06-23 11:43:28 +03:00
|
|
|
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$util = $this->getMockBuilder('\OC\Encryption\Util')
|
2016-03-31 00:20:37 +03:00
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
new View(),
|
2019-11-20 16:22:00 +03:00
|
|
|
new Manager($this->config, $this->createMock(EventDispatcherInterface::class), $this->createMock(IEventDispatcher::class)),
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->groupManager,
|
|
|
|
$this->config,
|
|
|
|
$this->arrayCache
|
|
|
|
]
|
|
|
|
)->getMock();
|
2015-06-23 11:43:28 +03:00
|
|
|
|
|
|
|
$instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2015-06-23 11:43:28 +03:00
|
|
|
]
|
|
|
|
)
|
2015-07-09 19:04:35 +03:00
|
|
|
->setMethods(['readFirstBlock', 'parseRawHeader'])
|
2015-06-23 11:43:28 +03:00
|
|
|
->getMock();
|
|
|
|
|
2015-07-09 19:04:35 +03:00
|
|
|
$instance->expects($this->once())->method(('parseRawHeader'))
|
|
|
|
->willReturn([Util::HEADER_ENCRYPTION_MODULE_KEY => 'OC_DEFAULT_MODULE']);
|
|
|
|
|
|
|
|
if ($strippedPathExists) {
|
|
|
|
$instance->expects($this->once())->method('readFirstBlock')
|
|
|
|
->with($strippedPath)->willReturn('');
|
|
|
|
} else {
|
|
|
|
$instance->expects($this->once())->method('readFirstBlock')
|
|
|
|
->with($path)->willReturn('');
|
|
|
|
}
|
|
|
|
|
2015-06-23 11:43:28 +03:00
|
|
|
$util->expects($this->once())->method('stripPartialFileExtension')
|
|
|
|
->with($path)->willReturn($strippedPath);
|
2015-07-09 19:04:35 +03:00
|
|
|
$sourceStorage->expects($this->once())
|
2015-06-26 12:26:40 +03:00
|
|
|
->method('file_exists')
|
|
|
|
->with($strippedPath)
|
|
|
|
->willReturn($strippedPathExists);
|
2015-06-23 11:43:28 +03:00
|
|
|
|
|
|
|
$this->invokePrivate($instance, 'getHeader', [$path]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestGetHeader() {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
|
|
|
['/foo/bar.txt', false, '/foo/bar.txt'],
|
|
|
|
['/foo/bar.txt.part', false, '/foo/bar.txt'],
|
|
|
|
['/foo/bar.txt.ocTransferId7437493.part', false, '/foo/bar.txt'],
|
|
|
|
['/foo/bar.txt.part', true, '/foo/bar.txt'],
|
|
|
|
['/foo/bar.txt.ocTransferId7437493.part', true, '/foo/bar.txt'],
|
|
|
|
];
|
2015-06-23 11:43:28 +03:00
|
|
|
}
|
2015-07-09 19:04:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* test if getHeader adds the default module correctly to the header for
|
|
|
|
* legacy files
|
|
|
|
*
|
|
|
|
* @dataProvider dataTestGetHeaderAddLegacyModule
|
|
|
|
*/
|
2017-03-28 15:49:06 +03:00
|
|
|
public function testGetHeaderAddLegacyModule($header, $isEncrypted, $exists, $expected) {
|
2015-07-09 19:04:35 +03:00
|
|
|
$sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
2017-03-28 15:49:06 +03:00
|
|
|
$sourceStorage->expects($this->once())
|
|
|
|
->method('file_exists')
|
2017-04-12 14:23:55 +03:00
|
|
|
->willReturn($exists);
|
2017-03-28 15:49:06 +03:00
|
|
|
|
2015-07-09 19:04:35 +03:00
|
|
|
$util = $this->getMockBuilder('\OC\Encryption\Util')
|
2019-11-20 16:22:00 +03:00
|
|
|
->setConstructorArgs([new View(), new Manager($this->config, $this->createMock(EventDispatcherInterface::class), $this->createMock(IEventDispatcher::class)), $this->groupManager, $this->config, $this->arrayCache])
|
2015-07-09 19:04:35 +03:00
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$cache->expects($this->any())
|
|
|
|
->method('get')
|
2020-04-10 15:19:56 +03:00
|
|
|
->willReturnCallback(function ($path) use ($isEncrypted) {
|
|
|
|
return ['encrypted' => $isEncrypted, 'path' => $path];
|
|
|
|
});
|
2015-07-09 19:04:35 +03:00
|
|
|
|
|
|
|
$instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2015-07-09 19:04:35 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['readFirstBlock', 'parseRawHeader', 'getCache'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method(('parseRawHeader'))->willReturn($header);
|
|
|
|
$instance->expects($this->any())->method('getCache')->willReturn($cache);
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($instance, 'getHeader', ['test.txt']);
|
|
|
|
$this->assertSameSize($expected, $result);
|
|
|
|
foreach ($result as $key => $value) {
|
|
|
|
$this->assertArrayHasKey($key, $expected);
|
|
|
|
$this->assertSame($expected[$key], $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestGetHeaderAddLegacyModule() {
|
|
|
|
return [
|
2017-03-28 15:49:06 +03:00
|
|
|
[['cipher' => 'AES-128'], true, true, ['cipher' => 'AES-128', Util::HEADER_ENCRYPTION_MODULE_KEY => 'OC_DEFAULT_MODULE']],
|
|
|
|
[[], true, false, []],
|
|
|
|
[[], true, true, [Util::HEADER_ENCRYPTION_MODULE_KEY => 'OC_DEFAULT_MODULE']],
|
|
|
|
[[], false, true, []],
|
2015-07-09 19:04:35 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestParseRawHeader
|
|
|
|
*/
|
|
|
|
public function testParseRawHeader($rawHeader, $expected) {
|
|
|
|
$instance = new \OC\Files\Storage\Wrapper\Encryption(
|
|
|
|
[
|
|
|
|
'storage' => $this->sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager, $this->arrayCache
|
2015-07-09 19:04:35 +03:00
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($instance, 'parseRawHeader', [$rawHeader]);
|
|
|
|
$this->assertSameSize($expected, $result);
|
|
|
|
foreach ($result as $key => $value) {
|
|
|
|
$this->assertArrayHasKey($key, $expected);
|
|
|
|
$this->assertSame($expected[$key], $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestParseRawHeader() {
|
|
|
|
return [
|
|
|
|
[str_pad('HBEGIN:oc_encryption_module:0:HEND', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, [Util::HEADER_ENCRYPTION_MODULE_KEY => '0']],
|
|
|
|
[str_pad('HBEGIN:oc_encryption_module:0:custom_header:foo:HEND', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, ['custom_header' => 'foo', Util::HEADER_ENCRYPTION_MODULE_KEY => '0']],
|
|
|
|
[str_pad('HelloWorld', $this->headerSize, '-', STR_PAD_RIGHT), []],
|
|
|
|
['', []],
|
|
|
|
[str_pad('HBEGIN:oc_encryption_module:0', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, []],
|
|
|
|
[str_pad('oc_encryption_module:0:HEND', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, []],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-07-23 18:01:44 +03:00
|
|
|
public function dataCopyBetweenStorage() {
|
|
|
|
return [
|
|
|
|
[true, true, true],
|
|
|
|
[true, false, false],
|
|
|
|
[false, true, false],
|
|
|
|
[false, false, false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-03-10 17:58:24 +03:00
|
|
|
public function testCopyBetweenStorageMinimumEncryptedVersion() {
|
2018-01-24 20:10:16 +03:00
|
|
|
$storage2 = $this->createMock(\OC\Files\Storage\Storage::class);
|
2016-03-10 17:58:24 +03:00
|
|
|
|
|
|
|
$sourceInternalPath = $targetInternalPath = 'file.txt';
|
|
|
|
$preserveMtime = $isRename = false;
|
|
|
|
|
|
|
|
$storage2->expects($this->any())
|
|
|
|
->method('fopen')
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function ($path, $mode) {
|
2016-03-10 17:58:24 +03:00
|
|
|
$temp = \OC::$server->getTempManager();
|
|
|
|
return fopen($temp->getTemporaryFile(), $mode);
|
|
|
|
});
|
2018-04-04 13:50:54 +03:00
|
|
|
$storage2->method('getId')
|
|
|
|
->willReturn('stroage2');
|
2016-09-07 21:01:13 +03:00
|
|
|
$cache = $this->createMock(ICache::class);
|
2016-03-10 17:58:24 +03:00
|
|
|
$cache->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with($sourceInternalPath)
|
|
|
|
->willReturn(['encryptedVersion' => 0]);
|
|
|
|
$storage2->expects($this->once())
|
|
|
|
->method('getCache')
|
|
|
|
->willReturn($cache);
|
|
|
|
$this->encryptionManager->expects($this->any())
|
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn(true);
|
|
|
|
global $mockedMountPointEncryptionEnabled;
|
|
|
|
$mockedMountPointEncryptionEnabled = true;
|
|
|
|
|
|
|
|
$expectedCachePut = [
|
|
|
|
'encrypted' => true,
|
|
|
|
];
|
|
|
|
$expectedCachePut['encryptedVersion'] = 1;
|
|
|
|
|
|
|
|
$this->cache->expects($this->once())
|
|
|
|
->method('put')
|
|
|
|
->with($sourceInternalPath, $expectedCachePut);
|
|
|
|
|
|
|
|
$this->invokePrivate($this->instance, 'copyBetweenStorage', [$storage2, $sourceInternalPath, $targetInternalPath, $preserveMtime, $isRename]);
|
|
|
|
|
|
|
|
$this->assertFalse(false);
|
|
|
|
}
|
|
|
|
|
2015-07-23 18:01:44 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataCopyBetweenStorage
|
|
|
|
*
|
|
|
|
* @param bool $encryptionEnabled
|
|
|
|
* @param bool $mountPointEncryptionEnabled
|
|
|
|
* @param bool $expectedEncrypted
|
|
|
|
*/
|
|
|
|
public function testCopyBetweenStorage($encryptionEnabled, $mountPointEncryptionEnabled, $expectedEncrypted) {
|
2018-01-24 20:10:16 +03:00
|
|
|
$storage2 = $this->createMock(\OC\Files\Storage\Storage::class);
|
2015-07-23 18:01:44 +03:00
|
|
|
|
|
|
|
$sourceInternalPath = $targetInternalPath = 'file.txt';
|
|
|
|
$preserveMtime = $isRename = false;
|
|
|
|
|
|
|
|
$storage2->expects($this->any())
|
|
|
|
->method('fopen')
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function ($path, $mode) {
|
2015-07-23 18:01:44 +03:00
|
|
|
$temp = \OC::$server->getTempManager();
|
|
|
|
return fopen($temp->getTemporaryFile(), $mode);
|
|
|
|
});
|
2018-04-04 13:50:54 +03:00
|
|
|
$storage2->method('getId')
|
|
|
|
->willReturn('stroage2');
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($expectedEncrypted) {
|
2016-09-07 21:01:13 +03:00
|
|
|
$cache = $this->createMock(ICache::class);
|
2016-03-02 22:37:13 +03:00
|
|
|
$cache->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with($sourceInternalPath)
|
|
|
|
->willReturn(['encryptedVersion' => 12345]);
|
|
|
|
$storage2->expects($this->once())
|
|
|
|
->method('getCache')
|
|
|
|
->willReturn($cache);
|
|
|
|
}
|
2015-07-23 18:01:44 +03:00
|
|
|
$this->encryptionManager->expects($this->any())
|
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn($encryptionEnabled);
|
|
|
|
// FIXME can not overwrite the return after definition
|
|
|
|
// $this->mount->expects($this->at(0))
|
|
|
|
// ->method('getOption')
|
|
|
|
// ->with('encrypt', true)
|
|
|
|
// ->willReturn($mountPointEncryptionEnabled);
|
|
|
|
global $mockedMountPointEncryptionEnabled;
|
|
|
|
$mockedMountPointEncryptionEnabled = $mountPointEncryptionEnabled;
|
|
|
|
|
2016-03-02 22:37:13 +03:00
|
|
|
$expectedCachePut = [
|
|
|
|
'encrypted' => $expectedEncrypted,
|
|
|
|
];
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($expectedEncrypted === true) {
|
2018-03-28 17:27:29 +03:00
|
|
|
$expectedCachePut['encryptedVersion'] = 1;
|
2016-03-02 22:37:13 +03:00
|
|
|
}
|
|
|
|
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->arrayCache->expects($this->never())->method('set');
|
|
|
|
|
2015-07-23 18:01:44 +03:00
|
|
|
$this->cache->expects($this->once())
|
|
|
|
->method('put')
|
2016-03-02 22:37:13 +03:00
|
|
|
->with($sourceInternalPath, $expectedCachePut);
|
2015-07-23 18:01:44 +03:00
|
|
|
|
|
|
|
$this->invokePrivate($this->instance, 'copyBetweenStorage', [$storage2, $sourceInternalPath, $targetInternalPath, $preserveMtime, $isRename]);
|
|
|
|
|
|
|
|
$this->assertFalse(false);
|
|
|
|
}
|
2015-09-29 14:17:39 +03:00
|
|
|
|
2015-11-04 12:15:28 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestCopyBetweenStorageVersions
|
|
|
|
*
|
|
|
|
* @param string $sourceInternalPath
|
|
|
|
* @param string $targetInternalPath
|
|
|
|
* @param bool $copyResult
|
|
|
|
* @param bool $encrypted
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testCopyBetweenStorageVersions($sourceInternalPath, $targetInternalPath, $copyResult, $encrypted) {
|
2018-01-24 20:10:16 +03:00
|
|
|
$sourceStorage = $this->createMock(\OC\Files\Storage\Storage::class);
|
2015-11-04 12:15:28 +03:00
|
|
|
|
2018-01-24 20:10:16 +03:00
|
|
|
$targetStorage = $this->createMock(\OC\Files\Storage\Storage::class);
|
2015-11-04 12:15:28 +03:00
|
|
|
|
|
|
|
$cache = $this->getMockBuilder('\OC\Files\Cache\Cache')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$mountPoint = '/mountPoint';
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OC\Files\Storage\Wrapper\Encryption |\PHPUnit\Framework\MockObject\MockObject $instance */
|
2015-11-04 12:15:28 +03:00
|
|
|
$instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'storage' => $targetStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => $mountPoint,
|
|
|
|
'mount' => $this->mount
|
|
|
|
],
|
|
|
|
$this->encryptionManager,
|
|
|
|
$this->util,
|
|
|
|
$this->logger,
|
|
|
|
$this->file,
|
|
|
|
null,
|
|
|
|
$this->keyStore,
|
|
|
|
$this->update,
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->mountManager,
|
|
|
|
$this->arrayCache
|
2015-11-04 12:15:28 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['updateUnencryptedSize', 'getCache'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$targetStorage->expects($this->once())->method('copyFromStorage')
|
|
|
|
->with($sourceStorage, $sourceInternalPath, $targetInternalPath)
|
|
|
|
->willReturn($copyResult);
|
|
|
|
|
2016-03-02 22:37:13 +03:00
|
|
|
$instance->expects($this->any())->method('getCache')
|
|
|
|
->willReturn($cache);
|
|
|
|
|
2016-03-31 00:20:37 +03:00
|
|
|
$this->arrayCache->expects($this->once())->method('set')
|
|
|
|
->with('encryption_copy_version_' . $sourceInternalPath, true);
|
|
|
|
|
2015-11-04 12:15:28 +03:00
|
|
|
if ($copyResult) {
|
|
|
|
$cache->expects($this->once())->method('get')
|
|
|
|
->with($sourceInternalPath)
|
|
|
|
->willReturn(['encrypted' => $encrypted, 'size' => 42]);
|
|
|
|
if ($encrypted) {
|
|
|
|
$instance->expects($this->once())->method('updateUnencryptedSize')
|
|
|
|
->with($mountPoint . $targetInternalPath, 42);
|
|
|
|
} else {
|
|
|
|
$instance->expects($this->never())->method('updateUnencryptedSize');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$instance->expects($this->never())->method('updateUnencryptedSize');
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $this->invokePrivate(
|
|
|
|
$instance,
|
|
|
|
'copyBetweenStorage',
|
|
|
|
[
|
|
|
|
$sourceStorage,
|
|
|
|
$sourceInternalPath,
|
|
|
|
$targetInternalPath,
|
|
|
|
false,
|
|
|
|
false
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame($copyResult, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestCopyBetweenStorageVersions() {
|
|
|
|
return [
|
|
|
|
['/files/foo.txt', '/files_versions/foo.txt.768743', true, true],
|
|
|
|
['/files/foo.txt', '/files_versions/foo.txt.768743', true, false],
|
|
|
|
['/files/foo.txt', '/files_versions/foo.txt.768743', false, true],
|
|
|
|
['/files/foo.txt', '/files_versions/foo.txt.768743', false, false],
|
|
|
|
['/files_versions/foo.txt.6487634', '/files/foo.txt', true, true],
|
|
|
|
['/files_versions/foo.txt.6487634', '/files/foo.txt', true, false],
|
|
|
|
['/files_versions/foo.txt.6487634', '/files/foo.txt', false, true],
|
|
|
|
['/files_versions/foo.txt.6487634', '/files/foo.txt', false, false],
|
|
|
|
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-09-29 14:17:39 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestIsVersion
|
|
|
|
* @param string $path
|
|
|
|
* @param bool $expected
|
|
|
|
*/
|
|
|
|
public function testIsVersion($path, $expected) {
|
|
|
|
$this->assertSame($expected,
|
|
|
|
$this->invokePrivate($this->instance, 'isVersion', [$path])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestIsVersion() {
|
|
|
|
return [
|
|
|
|
['files_versions/foo', true],
|
|
|
|
['/files_versions/foo', true],
|
|
|
|
['//files_versions/foo', true],
|
|
|
|
['files/versions/foo', false],
|
|
|
|
['files/files_versions/foo', false],
|
|
|
|
['files_versions_test/foo', false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-11-29 18:27:28 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestShouldEncrypt
|
|
|
|
*
|
|
|
|
* @param bool $encryptMountPoint
|
2017-04-20 14:48:14 +03:00
|
|
|
* @param mixed $encryptionModule
|
2016-11-29 18:27:28 +03:00
|
|
|
* @param bool $encryptionModuleShouldEncrypt
|
|
|
|
* @param bool $expected
|
|
|
|
*/
|
|
|
|
public function testShouldEncrypt(
|
|
|
|
$encryptMountPoint,
|
|
|
|
$encryptionModule,
|
|
|
|
$encryptionModuleShouldEncrypt,
|
|
|
|
$expected
|
|
|
|
) {
|
|
|
|
$encryptionManager = $this->createMock(\OC\Encryption\Manager::class);
|
|
|
|
$util = $this->createMock(Util::class);
|
|
|
|
$logger = $this->createMock(ILogger::class);
|
|
|
|
$fileHelper = $this->createMock(IFile::class);
|
|
|
|
$uid = null;
|
|
|
|
$keyStorage = $this->createMock(IStorage::class);
|
|
|
|
$update = $this->createMock(Update::class);
|
|
|
|
$mountManager = $this->createMock(\OC\Files\Mount\Manager::class);
|
|
|
|
$mount = $this->createMock(IMountPoint::class);
|
|
|
|
$arrayCache = $this->createMock(ArrayCache::class);
|
|
|
|
$path = '/welcome.txt';
|
|
|
|
$fullPath = 'admin/files/welcome.txt';
|
|
|
|
$defaultEncryptionModule = $this->createMock(IEncryptionModule::class);
|
|
|
|
|
|
|
|
$wrapper = $this->getMockBuilder(Encryption::class)
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
['mountPoint' => '', 'mount' => $mount, 'storage' => ''],
|
|
|
|
$encryptionManager,
|
|
|
|
$util,
|
|
|
|
$logger,
|
|
|
|
$fileHelper,
|
|
|
|
$uid,
|
|
|
|
$keyStorage,
|
|
|
|
$update,
|
|
|
|
$mountManager,
|
|
|
|
$arrayCache
|
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['getFullPath', 'getEncryptionModule'])
|
|
|
|
->getMock();
|
|
|
|
|
2017-04-20 14:48:14 +03:00
|
|
|
if ($encryptionModule === true) {
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IEncryptionModule|\PHPUnit\Framework\MockObject\MockObject $encryptionModule */
|
2017-04-20 14:48:14 +03:00
|
|
|
$encryptionModule = $this->createMock(IEncryptionModule::class);
|
|
|
|
}
|
|
|
|
|
2016-11-29 18:27:28 +03:00
|
|
|
$wrapper->method('getFullPath')->with($path)->willReturn($fullPath);
|
2017-04-20 14:48:14 +03:00
|
|
|
$wrapper->expects($encryptMountPoint ? $this->once() : $this->never())
|
|
|
|
->method('getEncryptionModule')
|
|
|
|
->with($fullPath)
|
2016-11-29 18:27:28 +03:00
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
function () use ($encryptionModule) {
|
2016-11-29 18:27:28 +03:00
|
|
|
if ($encryptionModule === false) {
|
|
|
|
throw new ModuleDoesNotExistsException();
|
|
|
|
}
|
|
|
|
return $encryptionModule;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$mount->expects($this->once())->method('getOption')->with('encrypt', true)
|
|
|
|
->willReturn($encryptMountPoint);
|
|
|
|
|
|
|
|
if ($encryptionModule !== null && $encryptionModule !== false) {
|
2017-04-20 14:48:14 +03:00
|
|
|
$encryptionModule
|
|
|
|
->method('shouldEncrypt')
|
|
|
|
->with($fullPath)
|
2016-11-29 18:27:28 +03:00
|
|
|
->willReturn($encryptionModuleShouldEncrypt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($encryptionModule === null) {
|
2017-04-20 14:48:14 +03:00
|
|
|
$encryptionManager->expects($this->once())
|
|
|
|
->method('getEncryptionModule')
|
2016-11-29 18:27:28 +03:00
|
|
|
->willReturn($defaultEncryptionModule);
|
|
|
|
}
|
|
|
|
$defaultEncryptionModule->method('shouldEncrypt')->willReturn(true);
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($wrapper, 'shouldEncrypt', [$path]);
|
|
|
|
|
|
|
|
$this->assertSame($expected, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestShouldEncrypt() {
|
|
|
|
return [
|
|
|
|
[false, false, false, false],
|
|
|
|
[true, false, false, false],
|
2017-04-20 14:48:14 +03:00
|
|
|
[true, true, false, false],
|
|
|
|
[true, true, true, true],
|
2016-11-29 18:27:28 +03:00
|
|
|
[true, null, false, true],
|
|
|
|
];
|
|
|
|
}
|
2015-03-30 14:23:10 +03:00
|
|
|
}
|