nextcloud/tests/lib/files/storage/wrapper/encryption.php

207 lines
6.1 KiB
PHP
Raw Normal View History

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