buildMockModule(); $this->encryptionManager = $this->getMockBuilder('\OC\Encryption\Manager') ->disableOriginalConstructor() ->setMethods(['getEncryptionModule', 'isEnabled']) ->getMock(); $this->encryptionManager->expects($this->any()) ->method('getEncryptionModule') ->willReturn($mockModule); $this->config = $this->getMockBuilder('\OCP\IConfig') ->disableOriginalConstructor() ->getMock(); $this->groupManager = $this->getMockBuilder('\OC\Group\Manager') ->disableOriginalConstructor() ->getMock(); $this->util = $this->getMock('\OC\Encryption\Util', ['getUidAndFilename', 'isFile', 'isExcluded'], [new View(), new \OC\User\Manager(), $this->groupManager, $this->config]); $this->util->expects($this->any()) ->method('getUidAndFilename') ->willReturnCallback(function ($path) { return ['user1', $path]; }); $this->file = $this->getMockBuilder('\OC\Encryption\File') ->disableOriginalConstructor() ->setMethods(['getAccessList']) ->getMock(); $this->file->expects($this->any())->method('getAccessList')->willReturn([]); $this->logger = $this->getMock('\OC\Log'); $this->sourceStorage = new Temporary(array()); $this->keyStore = $this->getMockBuilder('\OC\Encryption\Keys\Storage') ->disableOriginalConstructor()->getMock(); $this->update = $this->getMockBuilder('\OC\Encryption\Update') ->disableOriginalConstructor()->getMock(); $this->mount = $this->getMockBuilder('\OC\Files\Mount\MountPoint') ->disableOriginalConstructor() ->setMethods(['getOption']) ->getMock(); $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; }); $this->cache = $this->getMockBuilder('\OC\Files\Cache\Cache') ->disableOriginalConstructor()->getMock(); $this->cache->expects($this->any()) ->method('get') ->willReturnCallback(function($path) {return ['encrypted' => false, 'path' => $path];}); $this->mountManager = $this->getMockBuilder('\OC\Files\Mount\Manager') ->disableOriginalConstructor()->getMock(); $this->instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption') ->setConstructorArgs( [ [ 'storage' => $this->sourceStorage, 'root' => 'foo', 'mountPoint' => '/', 'mount' => $this->mount ], $this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager ] ) ->setMethods(['getMetaData', 'getCache', 'getEncryptionModule']) ->getMock(); $this->instance->expects($this->any()) ->method('getMetaData') ->willReturnCallback(function ($path) { return ['encrypted' => true, 'size' => $this->dummySize, 'path' => $path]; }); $this->instance->expects($this->any()) ->method('getCache') ->willReturn($this->cache); $this->instance->expects($this->any()) ->method('getEncryptionModule') ->willReturn($mockModule); } /** * @return \PHPUnit_Framework_MockObject_MockObject */ protected function buildMockModule() { $this->encryptionModule = $this->getMockBuilder('\OCP\Encryption\IEncryptionModule') ->disableOriginalConstructor() ->setMethods(['getId', 'getDisplayName', 'begin', 'end', 'encrypt', 'decrypt', 'update', 'shouldEncrypt', 'getUnencryptedBlockSize', 'isReadable', 'encryptAll']) ->getMock(); $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); $this->encryptionModule->expects($this->any())->method('isReadable')->willReturn(true); return $this->encryptionModule; } /** * @dataProvider dataTestCopyAndRename * * @param string $source * @param string $target * @param $encryptionEnabled * @param boolean $renameKeysReturn */ public function testRename($source, $target, $encryptionEnabled, $renameKeysReturn) { if ($encryptionEnabled) { $this->keyStore ->expects($this->once()) ->method('renameKeys') ->willReturn($renameKeysReturn); } else { $this->keyStore ->expects($this->never())->method('renameKeys'); } $this->util->expects($this->any()) ->method('isFile')->willReturn(true); $this->encryptionManager->expects($this->once()) ->method('isEnabled')->willReturn($encryptionEnabled); $this->instance->mkdir($source); $this->instance->mkdir(dirname($target)); $this->instance->rename($source, $target); } 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']); } /** * data provider for testCopyTesting() and dataTestCopyAndRename() * * @return array */ public function dataTestCopyAndRename() { return array( array('source', 'target', true, false, false), array('source', 'target', true, true, false), array('source', '/subFolder/target', true, false, false), array('source', '/subFolder/target', true, true, true), array('source', '/subFolder/target', false, true, false), ); } public function testIsLocal() { $this->encryptionManager->expects($this->once()) ->method('isEnabled')->willReturn(true); $this->assertFalse($this->instance->isLocal()); } /** * @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() { return array( array('/file.txt', true, true, true), array('/file.txt', false, true, true), array('/file.txt', true, false, true), array('/file.txt', false, false, true), array('/file.txt', true, true, false), array('/file.txt', false, true, false), array('/file.txt', true, false, false), array('/file.txt', false, false, false), ); } /** * @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, self::invokePrivate($this->instance, 'copyKeys', ['/source', '/target']) ); } public function dataTestCopyKeys() { return array( array(true, false), array(false, true), ); } /** * @dataProvider dataTestGetHeader * * @param string $path * @param bool $strippedPathExists * @param string $strippedPath */ public function testGetHeader($path, $strippedPathExists, $strippedPath) { $sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage') ->disableOriginalConstructor()->getMock(); $util = $this->getMockBuilder('\OC\Encryption\Util') ->setConstructorArgs([new View(), new \OC\User\Manager(), $this->groupManager, $this->config]) ->getMock(); $instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption') ->setConstructorArgs( [ [ 'storage' => $sourceStorage, 'root' => 'foo', 'mountPoint' => '/', 'mount' => $this->mount ], $this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager ] ) ->setMethods(['readFirstBlock', 'parseRawHeader']) ->getMock(); $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(''); } $util->expects($this->once())->method('stripPartialFileExtension') ->with($path)->willReturn($strippedPath); $sourceStorage->expects($this->once()) ->method('file_exists') ->with($strippedPath) ->willReturn($strippedPathExists); $this->invokePrivate($instance, 'getHeader', [$path]); } public function dataTestGetHeader() { return array( array('/foo/bar.txt', false, '/foo/bar.txt'), array('/foo/bar.txt.part', false, '/foo/bar.txt'), array('/foo/bar.txt.ocTransferId7437493.part', false, '/foo/bar.txt'), array('/foo/bar.txt.part', true, '/foo/bar.txt'), array('/foo/bar.txt.ocTransferId7437493.part', true, '/foo/bar.txt'), ); } /** * test if getHeader adds the default module correctly to the header for * legacy files * * @dataProvider dataTestGetHeaderAddLegacyModule */ public function testGetHeaderAddLegacyModule($header, $isEncrypted, $expected) { $sourceStorage = $this->getMockBuilder('\OC\Files\Storage\Storage') ->disableOriginalConstructor()->getMock(); $util = $this->getMockBuilder('\OC\Encryption\Util') ->setConstructorArgs([new View(), new \OC\User\Manager(), $this->groupManager, $this->config]) ->getMock(); $cache = $this->getMockBuilder('\OC\Files\Cache\Cache') ->disableOriginalConstructor()->getMock(); $cache->expects($this->any()) ->method('get') ->willReturnCallback(function($path) use ($isEncrypted) {return ['encrypted' => $isEncrypted, 'path' => $path];}); $instance = $this->getMockBuilder('\OC\Files\Storage\Wrapper\Encryption') ->setConstructorArgs( [ [ 'storage' => $sourceStorage, 'root' => 'foo', 'mountPoint' => '/', 'mount' => $this->mount ], $this->encryptionManager, $util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager ] ) ->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 [ [['cipher' => 'AES-128'], true, ['cipher' => 'AES-128', Util::HEADER_ENCRYPTION_MODULE_KEY => 'OC_DEFAULT_MODULE']], [[], true, [Util::HEADER_ENCRYPTION_MODULE_KEY => 'OC_DEFAULT_MODULE']], [[], false, []], ]; } /** * @dataProvider dataTestParseRawHeader */ public function testParseRawHeader($rawHeader, $expected) { $instance = new \OC\Files\Storage\Wrapper\Encryption( [ 'storage' => $this->sourceStorage, 'root' => 'foo', 'mountPoint' => '/', 'mount' => $this->mount ], $this->encryptionManager, $this->util, $this->logger, $this->file, null, $this->keyStore, $this->update, $this->mountManager ); $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) , []], ]; } public function dataCopyBetweenStorage() { return [ [true, true, true], [true, false, false], [false, true, false], [false, false, false], ]; } /** * @dataProvider dataCopyBetweenStorage * * @param bool $encryptionEnabled * @param bool $mountPointEncryptionEnabled * @param bool $expectedEncrypted */ public function testCopyBetweenStorage($encryptionEnabled, $mountPointEncryptionEnabled, $expectedEncrypted) { $storage2 = $this->getMockBuilder('OCP\Files\Storage') ->disableOriginalConstructor() ->getMock(); $sourceInternalPath = $targetInternalPath = 'file.txt'; $preserveMtime = $isRename = false; $storage2->expects($this->any()) ->method('fopen') ->willReturnCallback(function($path, $mode) { $temp = \OC::$server->getTempManager(); return fopen($temp->getTemporaryFile(), $mode); }); $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; $this->cache->expects($this->once()) ->method('put') ->with($sourceInternalPath, ['encrypted' => $expectedEncrypted]); $this->invokePrivate($this->instance, 'copyBetweenStorage', [$storage2, $sourceInternalPath, $targetInternalPath, $preserveMtime, $isRename]); $this->assertFalse(false); } }