2015-01-14 22:39:23 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @copyright (C) 2015 ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Encryption\Keys;
|
|
|
|
|
|
|
|
use OC\Encryption\Keys\Storage;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class StorageTest extends TestCase {
|
|
|
|
|
2015-04-02 17:42:28 +03:00
|
|
|
/** @var Storage */
|
|
|
|
protected $storage;
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $util;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $view;
|
|
|
|
|
2015-07-24 13:24:18 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $config;
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->util = $this->getMockBuilder('OC\Encryption\Util')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->view = $this->getMockBuilder('OC\Files\View')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2015-07-24 13:24:18 +03:00
|
|
|
$this->config = $this->getMockBuilder('OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage = new Storage($this->view, $this->util);
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetFileKey() {
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(array('user1', '/files/foo.txt'));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('stripPartialFileExtension')
|
|
|
|
->willReturnArgument(0);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_put_contents')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys/files/foo.txt/encModule/fileKey'),
|
|
|
|
$this->equalTo('key'))
|
|
|
|
->willReturn(strlen('key'));
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->setFileKey('user1/files/foo.txt', 'fileKey', 'key', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-06-08 17:35:37 +03:00
|
|
|
public function dataTestGetFileKey() {
|
|
|
|
return [
|
|
|
|
['/files/foo.txt', '/files/foo.txt', true, 'key'],
|
|
|
|
['/files/foo.txt.ocTransferId2111130212.part', '/files/foo.txt', true, 'key'],
|
|
|
|
['/files/foo.txt.ocTransferId2111130212.part', '/files/foo.txt', false, 'key2'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestGetFileKey
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param string $strippedPartialName
|
|
|
|
* @param bool $originalKeyExists
|
|
|
|
* @param string $expectedKeyContent
|
|
|
|
*/
|
2015-07-24 13:24:18 +03:00
|
|
|
public function testGetFileKey($path, $strippedPartialName, $originalKeyExists, $expectedKeyContent) {
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
2015-06-08 17:35:37 +03:00
|
|
|
->willReturnMap([
|
|
|
|
['user1/files/foo.txt', ['user1', '/files/foo.txt']],
|
|
|
|
['user1/files/foo.txt.ocTransferId2111130212.part', ['user1', '/files/foo.txt.ocTransferId2111130212.part']],
|
|
|
|
]);
|
2015-05-22 13:12:31 +03:00
|
|
|
// we need to strip away the part file extension in order to reuse a
|
|
|
|
// existing key if it exists, otherwise versions will break
|
|
|
|
$this->util->expects($this->once())
|
2015-01-14 22:39:23 +03:00
|
|
|
->method('stripPartialFileExtension')
|
2015-06-08 17:35:37 +03:00
|
|
|
->willReturn('user1' . $strippedPartialName);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(false);
|
|
|
|
|
2015-06-08 17:35:37 +03:00
|
|
|
$this->view->expects($this->at(0))
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys' . $strippedPartialName . '/encModule/fileKey'))
|
|
|
|
->willReturn($originalKeyExists);
|
|
|
|
|
|
|
|
if (!$originalKeyExists) {
|
|
|
|
$this->view->expects($this->at(1))
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys' . $path . '/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_get_contents')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys' . $path . '/encModule/fileKey'))
|
|
|
|
->willReturn('key2');
|
|
|
|
} else {
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_get_contents')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys' . $strippedPartialName . '/encModule/fileKey'))
|
|
|
|
->willReturn('key');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertSame($expectedKeyContent,
|
|
|
|
$this->storage->getFileKey('user1' . $path, 'fileKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetFileKeySystemWide() {
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(array('user1', '/files/foo.txt'));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('stripPartialFileExtension')
|
|
|
|
->willReturnArgument(0);
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_put_contents')
|
|
|
|
->with($this->equalTo('/files_encryption/keys/files/foo.txt/encModule/fileKey'),
|
|
|
|
$this->equalTo('key'))
|
|
|
|
->willReturn(strlen('key'));
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->setFileKey('user1/files/foo.txt', 'fileKey', 'key', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetFileKeySystemWide() {
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(array('user1', '/files/foo.txt'));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('stripPartialFileExtension')
|
|
|
|
->willReturnArgument(0);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_get_contents')
|
|
|
|
->with($this->equalTo('/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn('key');
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertSame('key',
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->getFileKey('user1/files/foo.txt', 'fileKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetSystemUserKey() {
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_put_contents')
|
|
|
|
->with($this->equalTo('/files_encryption/encModule/shareKey_56884'),
|
|
|
|
$this->equalTo('key'))
|
|
|
|
->willReturn(strlen('key'));
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->setSystemUserKey('shareKey_56884', 'key', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetUserKey() {
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_put_contents')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/encModule/user1.publicKey'),
|
|
|
|
$this->equalTo('key'))
|
|
|
|
->willReturn(strlen('key'));
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->setUserKey('user1', 'publicKey', 'key', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetSystemUserKey() {
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_get_contents')
|
|
|
|
->with($this->equalTo('/files_encryption/encModule/shareKey_56884'))
|
|
|
|
->willReturn('key');
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/files_encryption/encModule/shareKey_56884'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertSame('key',
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->getSystemUserKey('shareKey_56884', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetUserKey() {
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_get_contents')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/encModule/user1.publicKey'))
|
|
|
|
->willReturn('key');
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/encModule/user1.publicKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertSame('key',
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->getUserKey('user1', 'publicKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteUserKey() {
|
2015-04-09 11:28:02 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/encModule/user1.publicKey'))
|
|
|
|
->willReturn(true);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/encModule/user1.publicKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->deleteUserKey('user1', 'publicKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteSystemUserKey() {
|
2015-04-09 11:28:02 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/files_encryption/encModule/shareKey_56884'))
|
|
|
|
->willReturn(true);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->with($this->equalTo('/files_encryption/encModule/shareKey_56884'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->deleteSystemUserKey('shareKey_56884', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteFileKeySystemWide() {
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(array('user1', '/files/foo.txt'));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('stripPartialFileExtension')
|
|
|
|
->willReturnArgument(0);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(true);
|
2015-04-09 11:28:02 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->with($this->equalTo('/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->deleteFileKey('user1/files/foo.txt', 'fileKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteFileKey() {
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->willReturn(array('user1', '/files/foo.txt'));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('stripPartialFileExtension')
|
|
|
|
->willReturnArgument(0);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn(false);
|
2015-04-09 11:28:02 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('file_exists')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->with($this->equalTo('/user1/files_encryption/keys/files/foo.txt/encModule/fileKey'))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-04-22 12:18:18 +03:00
|
|
|
$this->storage->deleteFileKey('user1/files/foo.txt', 'fileKey', 'encModule')
|
2015-01-14 22:39:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-02 17:25:01 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataProviderCopyRename
|
|
|
|
*/
|
2015-05-21 15:06:45 +03:00
|
|
|
public function testRenameKeys($source, $target, $systemWideMountSource, $systemWideMountTarget, $expectedSource, $expectedTarget) {
|
2015-04-02 17:25:01 +03:00
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('file_exists')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('is_dir')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('rename')
|
|
|
|
->with(
|
|
|
|
$this->equalTo($expectedSource),
|
|
|
|
$this->equalTo($expectedTarget))
|
|
|
|
->willReturn(true);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->will($this->returnCallback(array($this, 'getUidAndFilenameCallback')));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
2015-05-21 15:06:45 +03:00
|
|
|
->willReturnCallback(function($path, $owner) use ($systemWideMountSource, $systemWideMountTarget) {
|
|
|
|
if(strpos($path, 'source.txt') !== false) {
|
|
|
|
return $systemWideMountSource;
|
|
|
|
}
|
|
|
|
return $systemWideMountTarget;
|
|
|
|
});
|
2015-04-02 17:25:01 +03:00
|
|
|
|
2015-04-02 17:42:28 +03:00
|
|
|
$this->storage->renameKeys($source, $target);
|
2015-04-02 17:25:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataProviderCopyRename
|
|
|
|
*/
|
2015-05-21 15:06:45 +03:00
|
|
|
public function testCopyKeys($source, $target, $systemWideMountSource, $systemWideMountTarget , $expectedSource, $expectedTarget) {
|
2015-04-02 17:25:01 +03:00
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('file_exists')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('is_dir')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->view->expects($this->once())
|
|
|
|
->method('copy')
|
|
|
|
->with(
|
|
|
|
$this->equalTo($expectedSource),
|
|
|
|
$this->equalTo($expectedTarget))
|
|
|
|
->willReturn(true);
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->will($this->returnCallback(array($this, 'getUidAndFilenameCallback')));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
2015-05-21 15:06:45 +03:00
|
|
|
->willReturnCallback(function($path, $owner) use ($systemWideMountSource, $systemWideMountTarget) {
|
|
|
|
if(strpos($path, 'source.txt') !== false) {
|
|
|
|
return $systemWideMountSource;
|
|
|
|
}
|
|
|
|
return $systemWideMountTarget;
|
|
|
|
});
|
2015-04-02 17:25:01 +03:00
|
|
|
|
2015-04-02 17:42:28 +03:00
|
|
|
$this->storage->copyKeys($source, $target);
|
2015-04-02 17:25:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getUidAndFilenameCallback() {
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
$path = $args[0];
|
|
|
|
$parts = explode('/', $path);
|
|
|
|
|
|
|
|
return array($parts[1], '/' . implode('/', array_slice($parts, 2)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataProviderCopyRename() {
|
|
|
|
return array(
|
2015-05-21 15:06:45 +03:00
|
|
|
array('/user1/files/source.txt', '/user1/files/target.txt', false, false,
|
|
|
|
'/user1/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user1/files/foo/source.txt', '/user1/files/target.txt', false, false,
|
|
|
|
'/user1/files_encryption/keys/files/foo/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user1/files/source.txt', '/user1/files/foo/target.txt', false, false,
|
|
|
|
'/user1/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/foo/target.txt/'),
|
|
|
|
array('/user1/files/source.txt', '/user1/files/foo/target.txt', true, true,
|
|
|
|
'/files_encryption/keys/files/source.txt/', '/files_encryption/keys/files/foo/target.txt/'),
|
|
|
|
array('/user1/files/source.txt', '/user1/files/target.txt', false, true,
|
|
|
|
'/user1/files_encryption/keys/files/source.txt/', '/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user1/files/source.txt', '/user1/files/target.txt', true, false,
|
|
|
|
'/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
|
2015-06-03 12:12:44 +03:00
|
|
|
array('/user2/files/source.txt', '/user1/files/target.txt', false, false,
|
|
|
|
'/user2/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user2/files/foo/source.txt', '/user1/files/target.txt', false, false,
|
|
|
|
'/user2/files_encryption/keys/files/foo/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user2/files/source.txt', '/user1/files/foo/target.txt', false, false,
|
|
|
|
'/user2/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/foo/target.txt/'),
|
|
|
|
array('/user2/files/source.txt', '/user1/files/foo/target.txt', true, true,
|
|
|
|
'/files_encryption/keys/files/source.txt/', '/files_encryption/keys/files/foo/target.txt/'),
|
|
|
|
array('/user2/files/source.txt', '/user1/files/target.txt', false, true,
|
|
|
|
'/user2/files_encryption/keys/files/source.txt/', '/files_encryption/keys/files/target.txt/'),
|
|
|
|
array('/user2/files/source.txt', '/user1/files/target.txt', true, false,
|
|
|
|
'/files_encryption/keys/files/source.txt/', '/user1/files_encryption/keys/files/target.txt/'),
|
|
|
|
);
|
|
|
|
}
|
2015-05-21 15:06:45 +03:00
|
|
|
|
2015-06-03 12:12:44 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestGetPathToKeys
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param boolean $systemWideMountPoint
|
2015-07-24 13:24:18 +03:00
|
|
|
* @param string $storageRoot
|
2015-06-03 12:12:44 +03:00
|
|
|
* @param string $expected
|
|
|
|
*/
|
2015-07-24 13:24:18 +03:00
|
|
|
public function testGetPathToKeys($path, $systemWideMountPoint, $storageRoot, $expected) {
|
|
|
|
|
|
|
|
$this->invokePrivate($this->storage, 'root_dir', [$storageRoot]);
|
2015-06-03 12:12:44 +03:00
|
|
|
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('getUidAndFilename')
|
|
|
|
->will($this->returnCallback(array($this, 'getUidAndFilenameCallback')));
|
|
|
|
$this->util->expects($this->any())
|
|
|
|
->method('isSystemWideMountPoint')
|
|
|
|
->willReturn($systemWideMountPoint);
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
2015-06-03 15:33:56 +03:00
|
|
|
self::invokePrivate($this->storage, 'getPathToKeys', [$path])
|
2015-06-03 12:12:44 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestGetPathToKeys() {
|
2015-07-24 13:24:18 +03:00
|
|
|
return [
|
|
|
|
['/user1/files/source.txt', false, '', '/user1/files_encryption/keys/files/source.txt/'],
|
|
|
|
['/user1/files/source.txt', true, '', '/files_encryption/keys/files/source.txt/'],
|
|
|
|
['/user1/files/source.txt', false, 'storageRoot', '/storageRoot/user1/files_encryption/keys/files/source.txt/'],
|
|
|
|
['/user1/files/source.txt', true, 'storageRoot', '/storageRoot/files_encryption/keys/files/source.txt/'],
|
|
|
|
];
|
2015-04-02 17:25:01 +03:00
|
|
|
}
|
|
|
|
|
2015-04-02 17:42:28 +03:00
|
|
|
public function testKeySetPreparation() {
|
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('file_exists')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('is_dir')
|
|
|
|
->willReturn(false);
|
|
|
|
$this->view->expects($this->any())
|
|
|
|
->method('mkdir')
|
|
|
|
->will($this->returnCallback(array($this, 'mkdirCallback')));
|
|
|
|
|
|
|
|
$this->mkdirStack = array(
|
|
|
|
'/user1/files_encryption/keys/foo',
|
|
|
|
'/user1/files_encryption/keys',
|
|
|
|
'/user1/files_encryption',
|
|
|
|
'/user1');
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
self::invokePrivate($this->storage, 'keySetPreparation', array('/user1/files_encryption/keys/foo'));
|
2015-04-02 17:42:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function mkdirCallback() {
|
|
|
|
$args = func_get_args();
|
|
|
|
$expected = array_pop($this->mkdirStack);
|
|
|
|
$this->assertSame($expected, $args[0]);
|
|
|
|
}
|
|
|
|
|
2015-07-24 13:24:18 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestGetFileKeyDir
|
|
|
|
*
|
|
|
|
* @param bool $isSystemWideMountPoint
|
|
|
|
* @param string $storageRoot
|
|
|
|
* @param string $expected
|
|
|
|
*/
|
|
|
|
public function testGetFileKeyDir($isSystemWideMountPoint, $storageRoot, $expected) {
|
|
|
|
|
|
|
|
$path = '/user1/files/foo/bar.txt';
|
|
|
|
$owner = 'user1';
|
|
|
|
$relativePath = '/foo/bar.txt';
|
|
|
|
|
|
|
|
$this->invokePrivate($this->storage, 'root_dir', [$storageRoot]);
|
|
|
|
|
|
|
|
$this->util->expects($this->once())->method('isSystemWideMountPoint')
|
|
|
|
->willReturn($isSystemWideMountPoint);
|
|
|
|
$this->util->expects($this->once())->method('getUidAndFilename')
|
|
|
|
->with($path)->willReturn([$owner, $relativePath]);
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
|
|
|
$this->invokePrivate($this->storage, 'getFileKeyDir', ['OC_DEFAULT_MODULE', $path])
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestGetFileKeyDir() {
|
|
|
|
return [
|
|
|
|
[false, '', '/user1/files_encryption/keys/foo/bar.txt/OC_DEFAULT_MODULE/'],
|
|
|
|
[true, '', '/files_encryption/keys/foo/bar.txt/OC_DEFAULT_MODULE/'],
|
|
|
|
[false, 'newStorageRoot', '/newStorageRoot/user1/files_encryption/keys/foo/bar.txt/OC_DEFAULT_MODULE/'],
|
|
|
|
[true, 'newStorageRoot', '/newStorageRoot/files_encryption/keys/foo/bar.txt/OC_DEFAULT_MODULE/'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2017-01-02 23:24:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestBackupUserKeys
|
|
|
|
* @param bool $createBackupDir
|
|
|
|
*/
|
|
|
|
public function testBackupUserKeys($createBackupDir) {
|
|
|
|
|
|
|
|
$storage = $this->getMockBuilder('OC\Encryption\Keys\Storage')
|
|
|
|
->setConstructorArgs([$this->view, $this->util])
|
|
|
|
->setMethods(['getTimestamp'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$storage->expects($this->any())->method('getTimestamp')->willReturn('1234567');
|
|
|
|
|
|
|
|
$this->view->expects($this->once())->method('file_exists')
|
|
|
|
->with('user1/files_encryption/backup')->willReturn(!$createBackupDir);
|
|
|
|
|
|
|
|
if ($createBackupDir) {
|
|
|
|
$this->view->expects($this->at(1))->method('mkdir')
|
|
|
|
->with('user1/files_encryption/backup');
|
|
|
|
$this->view->expects($this->at(2))->method('mkdir')
|
|
|
|
->with('user1/files_encryption/backup/test.encryptionModule.1234567');
|
|
|
|
} else {
|
|
|
|
$this->view->expects($this->once())->method('mkdir')
|
|
|
|
->with('user1/files_encryption/backup/test.encryptionModule.1234567');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->view->expects($this->once())->method('copy')
|
|
|
|
->with(
|
|
|
|
'user1/files_encryption/encryptionModule',
|
|
|
|
'user1/files_encryption/backup/test.encryptionModule.1234567'
|
|
|
|
)->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue($storage->backupUserKeys('encryptionModule', 'test', 'user1'));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestBackupUserKeys() {
|
|
|
|
return [
|
|
|
|
[true], [false]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|