2015-03-30 14:23:10 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Test\Files\Storage\Wrapper;
|
|
|
|
|
2015-04-02 19:12:20 +03:00
|
|
|
use OC\Files\Storage\Temporary;
|
2015-03-30 14:23:10 +03:00
|
|
|
use OC\Files\View;
|
|
|
|
|
|
|
|
class Encryption extends \Test\Files\Storage\Storage {
|
|
|
|
|
|
|
|
/**
|
2015-04-02 19:12:20 +03:00
|
|
|
* @var Temporary
|
2015-03-30 14:23:10 +03:00
|
|
|
*/
|
|
|
|
private $sourceStorage;
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
|
|
|
|
parent::setUp();
|
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
$mockModule = $this->buildMockModule();
|
2015-03-30 14:23:10 +03:00
|
|
|
$encryptionManager = $this->getMockBuilder('\OC\Encryption\Manager')
|
|
|
|
->disableOriginalConstructor()
|
2015-04-02 19:12:20 +03:00
|
|
|
->setMethods(['getDefaultEncryptionModule', 'getEncryptionModule', 'isEnabled'])
|
2015-03-31 00:19:35 +03:00
|
|
|
->getMock();
|
2015-03-30 14:23:10 +03:00
|
|
|
$encryptionManager->expects($this->any())
|
|
|
|
->method('getDefaultEncryptionModule')
|
2015-04-02 15:44:58 +03:00
|
|
|
->willReturn($mockModule);
|
|
|
|
$encryptionManager->expects($this->any())
|
|
|
|
->method('getEncryptionModule')
|
|
|
|
->willReturn($mockModule);
|
2015-04-02 19:12:20 +03:00
|
|
|
$encryptionManager->expects($this->any())
|
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$config = $this->getMockBuilder('\OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-03-30 14:23:10 +03:00
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
$util = $this->getMock('\OC\Encryption\Util', ['getUidAndFilename'], [new View(), new \OC\User\Manager(), $config]);
|
|
|
|
$util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturnCallback(function ($path) {
|
|
|
|
return ['user1', $path];
|
|
|
|
});
|
2015-04-02 19:12:20 +03:00
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
$file = $this->getMockBuilder('\OC\Encryption\File')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-03-30 14:23:10 +03:00
|
|
|
|
|
|
|
$logger = $this->getMock('\OC\Log');
|
|
|
|
|
2015-04-02 19:12:20 +03:00
|
|
|
$this->sourceStorage = new Temporary(array());
|
2015-04-02 15:44:58 +03:00
|
|
|
$keyStore = $this->getMockBuilder('\OC\Encryption\Keys\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$this->instance = new EncryptionWrapper([
|
2015-03-30 14:23:10 +03:00
|
|
|
'storage' => $this->sourceStorage,
|
|
|
|
'root' => 'foo',
|
|
|
|
'mountPoint' => '/'
|
|
|
|
],
|
2015-04-02 15:44:58 +03:00
|
|
|
$encryptionManager, $util, $logger, $file, null, $keyStore
|
2015-03-30 14:23:10 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-02 15:44:58 +03:00
|
|
|
/**
|
|
|
|
* @return \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
protected function buildMockModule() {
|
|
|
|
$encryptionModule = $this->getMockBuilder('\OCP\Encryption\IEncryptionModule')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(['getId', 'getDisplayName', 'begin', 'end', 'encrypt', 'decrypt', 'update', 'shouldEncrypt', 'calculateUnencryptedSize', 'getUnencryptedBlockSize'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$encryptionModule->expects($this->any())->method('getId')->willReturn('UNIT_TEST_MODULE');
|
|
|
|
$encryptionModule->expects($this->any())->method('getDisplayName')->willReturn('Unit test module');
|
|
|
|
$encryptionModule->expects($this->any())->method('begin')->willReturn([]);
|
|
|
|
$encryptionModule->expects($this->any())->method('end')->willReturn('');
|
|
|
|
$encryptionModule->expects($this->any())->method('encrypt')->willReturnArgument(0);
|
|
|
|
$encryptionModule->expects($this->any())->method('decrypt')->willReturnArgument(0);
|
|
|
|
$encryptionModule->expects($this->any())->method('update')->willReturn(true);
|
|
|
|
$encryptionModule->expects($this->any())->method('shouldEncrypt')->willReturn(true);
|
|
|
|
$encryptionModule->expects($this->any())->method('calculateUnencryptedSize')->willReturn(42);
|
|
|
|
$encryptionModule->expects($this->any())->method('getUnencryptedBlockSize')->willReturn(6126);
|
|
|
|
return $encryptionModule;
|
|
|
|
}
|
|
|
|
|
2015-03-30 14:23:10 +03:00
|
|
|
// public function testMkDirRooted() {
|
|
|
|
// $this->instance->mkdir('bar');
|
|
|
|
// $this->assertTrue($this->sourceStorage->is_dir('foo/bar'));
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public function testFilePutContentsRooted() {
|
|
|
|
// $this->instance->file_put_contents('bar', 'asd');
|
|
|
|
// $this->assertEquals('asd', $this->sourceStorage->file_get_contents('foo/bar'));
|
|
|
|
// }
|
|
|
|
}
|
2015-04-02 15:44:58 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// FIXME: this is too bad and needs adjustment
|
|
|
|
//
|
|
|
|
class EncryptionWrapper extends \OC\Files\Storage\Wrapper\Encryption {
|
|
|
|
private $keyStore;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
$parameters,
|
|
|
|
\OC\Encryption\Manager $encryptionManager = null,
|
|
|
|
\OC\Encryption\Util $util = null,
|
|
|
|
\OC\Log $logger = null,
|
|
|
|
\OC\Encryption\File $fileHelper = null,
|
|
|
|
$uid = null,
|
|
|
|
$keyStore = null
|
|
|
|
) {
|
|
|
|
$this->keyStore = $keyStore;
|
|
|
|
parent::__construct($parameters, $encryptionManager, $util, $logger, $fileHelper, $uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getKeyStorage($encryptionModuleId) {
|
|
|
|
return $this->keyStore;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|