2015-03-30 14:59:48 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Test\Files\Stream;
|
|
|
|
|
|
|
|
use OC\Files\View;
|
|
|
|
use OCA\Encryption_Dummy\DummyModule;
|
|
|
|
|
|
|
|
class Encryption extends \Test\TestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $mode
|
|
|
|
* @param integer $limit
|
|
|
|
*/
|
2015-04-02 12:07:07 +03:00
|
|
|
protected function getStream($fileName, $mode) {
|
2015-03-30 14:59:48 +03:00
|
|
|
|
2015-04-02 12:07:07 +03:00
|
|
|
$source = fopen($fileName, $mode);
|
|
|
|
$internalPath = $fileName;
|
|
|
|
$fullPath = $fileName;
|
2015-03-30 14:59:48 +03:00
|
|
|
$header = [];
|
|
|
|
$uid = '';
|
2015-04-02 12:07:07 +03:00
|
|
|
$encryptionModule = $this->buildMockModule();
|
2015-03-30 14:59:48 +03:00
|
|
|
$storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$encStorage = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-03-31 00:19:35 +03:00
|
|
|
$config = $this->getMockBuilder('\OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-04-02 12:07:07 +03:00
|
|
|
$file = $this->getMockBuilder('\OC\Encryption\File')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$util = $this->getMock('\OC\Encryption\Util', ['getUidAndFilename'], [new View(), new \OC\User\Manager(), $config]);
|
|
|
|
$util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(['user1', $internalPath]);
|
2015-03-30 14:59:48 +03:00
|
|
|
$size = 12;
|
|
|
|
$unencryptedSize = 8000;
|
|
|
|
|
|
|
|
return \OC\Files\Stream\Encryption::wrap($source, $internalPath,
|
|
|
|
$fullPath, $header, $uid, $encryptionModule, $storage, $encStorage,
|
2015-04-02 12:07:07 +03:00
|
|
|
$util, $file, $mode, $size, $unencryptedSize);
|
2015-03-30 14:59:48 +03:00
|
|
|
}
|
|
|
|
|
2015-04-02 12:07:07 +03:00
|
|
|
public function testWriteRead() {
|
|
|
|
$fileName = tempnam("/tmp", "FOO");
|
|
|
|
$stream = $this->getStream($fileName, 'w+');
|
2015-03-30 14:59:48 +03:00
|
|
|
$this->assertEquals(6, fwrite($stream, 'foobar'));
|
2015-04-02 12:07:07 +03:00
|
|
|
fclose($stream);
|
|
|
|
|
|
|
|
$stream = $this->getStream($fileName, 'r');
|
2015-03-30 14:59:48 +03:00
|
|
|
$this->assertEquals('foobar', fread($stream, 100));
|
2015-04-02 12:07:07 +03:00
|
|
|
fclose($stream);
|
|
|
|
}
|
|
|
|
|
2015-04-02 13:48:41 +03:00
|
|
|
public function testSeek() {
|
|
|
|
$fileName = tempnam("/tmp", "FOO");
|
|
|
|
$stream = $this->getStream($fileName, 'w+');
|
|
|
|
$this->assertEquals(6, fwrite($stream, 'foobar'));
|
|
|
|
$this->assertEquals(0, fseek($stream, 3));
|
|
|
|
$this->assertEquals(6, fwrite($stream, 'foobar'));
|
|
|
|
fclose($stream);
|
|
|
|
|
|
|
|
$stream = $this->getStream($fileName, 'r');
|
|
|
|
$this->assertEquals('foofoobar', fread($stream, 100));
|
|
|
|
fclose($stream);
|
|
|
|
}
|
|
|
|
|
2015-04-02 12:07:07 +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:59:48 +03:00
|
|
|
}
|
|
|
|
}
|