2015-03-30 11:23:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Test\Files\Storage\Wrapper;
|
|
|
|
|
2015-04-02 16:12:20 +00:00
|
|
|
use OC\Files\Storage\Temporary;
|
2015-03-30 11:23:10 +00:00
|
|
|
use OC\Files\View;
|
|
|
|
|
|
|
|
class Encryption extends \Test\Files\Storage\Storage {
|
|
|
|
|
|
|
|
/**
|
2015-04-02 16:12:20 +00:00
|
|
|
* @var Temporary
|
2015-03-30 11:23:10 +00:00
|
|
|
*/
|
|
|
|
private $sourceStorage;
|
|
|
|
|
2015-04-23 14:48:11 +00:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Wrapper\Encryption
|
|
|
|
*/
|
|
|
|
protected $instance;
|
|
|
|
|
2015-04-22 10:12:27 +00:00
|
|
|
/**
|
|
|
|
* @var \OC\Encryption\Keys\Storage | \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $keyStore;
|
|
|
|
|
2015-04-23 14:48:11 +00:00
|
|
|
/**
|
|
|
|
* @var \OC\Encryption\Util | \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $util;
|
|
|
|
|
2015-04-23 15:06:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Encryption\Manager | \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $encryptionManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OCP\Encryption\IEncryptionModule | \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $encryptionModule;
|
|
|
|
|
|
|
|
|
2015-04-23 14:48:11 +00:00
|
|
|
/**
|
|
|
|
* @var \OC\Encryption\Update | \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $update;
|
|
|
|
|
2015-04-24 11:06:27 +00:00
|
|
|
protected function setUp() {
|
2015-03-30 11:23:10 +00:00
|
|
|
|
|
|
|
parent::setUp();
|
|
|
|
|
2015-04-02 12:44:58 +00:00
|
|
|
$mockModule = $this->buildMockModule();
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->encryptionManager = $this->getMockBuilder('\OC\Encryption\Manager')
|
2015-03-30 11:23:10 +00:00
|
|
|
->disableOriginalConstructor()
|
2015-04-27 09:10:31 +00:00
|
|
|
->setMethods(['getEncryptionModule', 'isEnabled'])
|
2015-03-30 21:19:35 +00:00
|
|
|
->getMock();
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->encryptionManager->expects($this->any())
|
2015-04-02 12:44:58 +00:00
|
|
|
->method('getEncryptionModule')
|
|
|
|
->willReturn($mockModule);
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->encryptionManager->expects($this->any())
|
2015-04-02 16:12:20 +00:00
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$config = $this->getMockBuilder('\OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-04-15 11:19:17 +00:00
|
|
|
$groupManager = $this->getMockBuilder('\OC\Group\Manager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-03-30 11:23:10 +00:00
|
|
|
|
2015-04-23 14:48:11 +00:00
|
|
|
$this->util = $this->getMock('\OC\Encryption\Util', ['getUidAndFilename', 'isFile'], [new View(), new \OC\User\Manager(), $groupManager, $config]);
|
|
|
|
$this->util->expects($this->any())
|
2015-04-02 12:44:58 +00:00
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturnCallback(function ($path) {
|
|
|
|
return ['user1', $path];
|
|
|
|
});
|
2015-04-02 16:12:20 +00:00
|
|
|
|
2015-04-02 12:44:58 +00:00
|
|
|
$file = $this->getMockBuilder('\OC\Encryption\File')
|
|
|
|
->disableOriginalConstructor()
|
2015-04-09 16:30:45 +00:00
|
|
|
->setMethods(['getAccessList'])
|
2015-04-02 12:44:58 +00:00
|
|
|
->getMock();
|
2015-04-09 16:30:45 +00:00
|
|
|
$file->expects($this->any())->method('getAccessList')->willReturn([]);
|
2015-03-30 11:23:10 +00:00
|
|
|
|
|
|
|
$logger = $this->getMock('\OC\Log');
|
|
|
|
|
2015-04-02 16:12:20 +00:00
|
|
|
$this->sourceStorage = new Temporary(array());
|
2015-04-22 10:12:27 +00:00
|
|
|
$this->keyStore = $this->getMockBuilder('\OC\Encryption\Keys\Storage')
|
2015-04-02 12:44:58 +00:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-04-23 14:48:11 +00:00
|
|
|
$this->update = $this->getMockBuilder('\OC\Encryption\Update')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-04-07 08:03:44 +00:00
|
|
|
$mount = $this->getMockBuilder('\OC\Files\Mount\MountPoint')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(['getOption'])
|
|
|
|
->getMock();
|
|
|
|
$mount->expects($this->any())->method('getOption')->willReturn(true);
|
2015-04-22 11:09:42 +00:00
|
|
|
$this->instance = new \OC\Files\Storage\Wrapper\Encryption([
|
2015-03-30 11:23:10 +00:00
|
|
|
'storage' => $this->sourceStorage,
|
|
|
|
'root' => 'foo',
|
2015-04-07 08:03:44 +00:00
|
|
|
'mountPoint' => '/',
|
|
|
|
'mount' => $mount
|
2015-03-30 11:23:10 +00:00
|
|
|
],
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->encryptionManager, $this->util, $logger, $file, null, $this->keyStore, $this->update
|
2015-03-30 11:23:10 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-02 12:44:58 +00:00
|
|
|
/**
|
|
|
|
* @return \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
protected function buildMockModule() {
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->encryptionModule = $this->getMockBuilder('\OCP\Encryption\IEncryptionModule')
|
2015-04-02 12:44:58 +00:00
|
|
|
->disableOriginalConstructor()
|
2015-04-14 10:53:13 +00:00
|
|
|
->setMethods(['getId', 'getDisplayName', 'begin', 'end', 'encrypt', 'decrypt', 'update', 'shouldEncrypt', 'getUnencryptedBlockSize'])
|
2015-04-02 12:44:58 +00:00
|
|
|
->getMock();
|
|
|
|
|
2015-04-23 15:06:55 +00: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);
|
|
|
|
return $this->encryptionModule;
|
2015-04-02 12:44:58 +00:00
|
|
|
}
|
2015-04-22 10:12:27 +00:00
|
|
|
|
2015-04-23 14:48:11 +00:00
|
|
|
/**
|
2015-04-24 11:06:27 +00:00
|
|
|
* @dataProvider dataTestCopyAndRename
|
2015-04-23 14:48:11 +00:00
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-04-24 12:27:23 +00:00
|
|
|
* @param boolean $renameKeysReturn
|
2015-04-23 14:48:11 +00:00
|
|
|
* @param boolean $shouldUpdate
|
|
|
|
*/
|
2015-04-24 12:27:23 +00:00
|
|
|
public function testRename($source, $target, $renameKeysReturn, $shouldUpdate) {
|
2015-04-22 10:12:27 +00:00
|
|
|
$this->keyStore
|
|
|
|
->expects($this->once())
|
2015-04-24 08:16:06 +00:00
|
|
|
->method('renameKeys')
|
2015-04-24 12:27:23 +00:00
|
|
|
->willReturn($renameKeysReturn);
|
2015-04-23 14:48:11 +00:00
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isFile')->willReturn(true);
|
|
|
|
if ($shouldUpdate) {
|
|
|
|
$this->update->expects($this->once())
|
|
|
|
->method('update');
|
|
|
|
} else {
|
|
|
|
$this->update->expects($this->never())
|
|
|
|
->method('update');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->instance->mkdir($source);
|
|
|
|
$this->instance->mkdir(dirname($target));
|
|
|
|
$this->instance->rename($source, $target);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-04-24 11:06:27 +00:00
|
|
|
* @dataProvider dataTestCopyAndRename
|
2015-04-23 15:06:55 +00:00
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-04-24 12:27:23 +00:00
|
|
|
* @param boolean $copyKeysReturn
|
2015-04-23 15:06:55 +00:00
|
|
|
* @param boolean $shouldUpdate
|
|
|
|
*/
|
2015-04-24 12:27:23 +00:00
|
|
|
public function testCopyTesting($source, $target, $copyKeysReturn, $shouldUpdate) {
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->keyStore
|
|
|
|
->expects($this->once())
|
2015-04-24 08:16:06 +00:00
|
|
|
->method('copyKeys')
|
2015-04-24 12:27:23 +00:00
|
|
|
->willReturn($copyKeysReturn);
|
2015-04-23 15:06:55 +00:00
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isFile')->willReturn(true);
|
|
|
|
if ($shouldUpdate) {
|
|
|
|
$this->update->expects($this->once())
|
|
|
|
->method('update');
|
|
|
|
} else {
|
|
|
|
$this->update->expects($this->never())
|
|
|
|
->method('update');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->instance->mkdir($source);
|
|
|
|
$this->instance->mkdir(dirname($target));
|
|
|
|
$this->instance->copy($source, $target);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-04-24 11:06:27 +00:00
|
|
|
* @dataProvider copyAndMoveProvider
|
|
|
|
*/
|
|
|
|
public function testCopy($source, $target) {
|
|
|
|
$this->assertTrue(true, 'Replaced by testCopyTesting()');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* data provider for testCopyTesting() and dataTestCopyAndRename()
|
2015-04-23 15:06:55 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2015-04-24 11:06:27 +00:00
|
|
|
public function dataTestCopyAndRename() {
|
2015-04-23 15:06:55 +00:00
|
|
|
return array(
|
2015-04-24 12:27:23 +00:00
|
|
|
array('source', 'target', false, false),
|
|
|
|
array('source', 'target', true, false),
|
|
|
|
array('source', '/subFolder/target', false, false),
|
|
|
|
array('source', '/subFolder/target', true, true),
|
2015-04-23 15:06:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-03-30 11:23:10 +00:00
|
|
|
}
|