2015-01-14 22:39:23 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Test\Encryption;
|
|
|
|
|
|
|
|
use OC\Encryption\Util;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class UtilTest extends TestCase {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* block size will always be 8192 for a PHP stream
|
|
|
|
* @see https://bugs.php.net/bug.php?id=21641
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
protected $headerSize = 8192;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $view;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $userManager;
|
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $groupManager;
|
|
|
|
|
2015-03-30 12:01:06 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $config;
|
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
/** @var \OC\Encryption\Util */
|
|
|
|
private $util;
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
$this->view = $this->getMockBuilder('OC\Files\View')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->userManager = $this->getMockBuilder('OC\User\Manager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-03-30 12:01:06 +03:00
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
$this->groupManager = $this->getMockBuilder('OC\Group\Manager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2015-03-30 12:01:06 +03:00
|
|
|
$this->config = $this->getMockBuilder('OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
$this->util = new Util(
|
|
|
|
$this->view,
|
|
|
|
$this->userManager,
|
|
|
|
$this->groupManager,
|
|
|
|
$this->config
|
|
|
|
);
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesHeadersForEncryptionModule
|
|
|
|
*/
|
|
|
|
public function testGetEncryptionModuleId($expected, $header) {
|
2015-04-15 14:19:17 +03:00
|
|
|
$id = $this->util->getEncryptionModuleId($header);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->assertEquals($expected, $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providesHeadersForEncryptionModule() {
|
|
|
|
return [
|
|
|
|
['', []],
|
|
|
|
['', ['1']],
|
|
|
|
[2, ['oc_encryption_module' => 2]],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesHeaders
|
|
|
|
*/
|
|
|
|
public function testReadHeader($header, $expected, $moduleId) {
|
|
|
|
$expected['oc_encryption_module'] = $moduleId;
|
2015-04-15 14:19:17 +03:00
|
|
|
$result = $this->util->readHeader($header);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->assertSameSize($expected, $result);
|
|
|
|
foreach ($expected as $key => $value) {
|
|
|
|
$this->assertArrayHasKey($key, $result);
|
|
|
|
$this->assertSame($value, $result[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesHeaders
|
|
|
|
*/
|
|
|
|
public function testCreateHeader($expected, $header, $moduleId) {
|
|
|
|
|
|
|
|
$em = $this->getMock('\OCP\Encryption\IEncryptionModule');
|
|
|
|
$em->expects($this->any())->method('getId')->willReturn($moduleId);
|
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
$result = $this->util->createHeader($header, $em);
|
2015-01-14 22:39:23 +03:00
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providesHeaders() {
|
|
|
|
return [
|
|
|
|
[str_pad('HBEGIN:oc_encryption_module:0:HEND', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, [], '0'],
|
|
|
|
[str_pad('HBEGIN:oc_encryption_module:0:custom_header:foo:HEND', $this->headerSize, '-', STR_PAD_RIGHT)
|
|
|
|
, ['custom_header' => 'foo'], '0'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \OC\Encryption\Exceptions\EncryptionHeaderKeyExistsException
|
|
|
|
*/
|
|
|
|
public function testCreateHeaderFailed() {
|
|
|
|
|
|
|
|
$header = array('header1' => 1, 'header2' => 2, 'oc_encryption_module' => 'foo');
|
|
|
|
|
|
|
|
$em = $this->getMock('\OCP\Encryption\IEncryptionModule');
|
|
|
|
$em->expects($this->any())->method('getId')->willReturn('moduleId');
|
|
|
|
|
2015-04-15 14:19:17 +03:00
|
|
|
$this->util->createHeader($header, $em);
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|
|
|
|
|
2015-03-27 13:46:07 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providePathsForTestIsExcluded
|
|
|
|
*/
|
2015-04-15 14:19:17 +03:00
|
|
|
public function testIsExcluded($path, $expected) {
|
2015-03-27 13:46:07 +03:00
|
|
|
$this->userManager
|
|
|
|
->expects($this->any())
|
|
|
|
->method('userExists')
|
|
|
|
->will($this->returnCallback(array($this, 'isExcludedCallback')));
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
2015-04-15 14:19:17 +03:00
|
|
|
$this->util->isExcluded($path)
|
2015-03-27 13:46:07 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providePathsForTestIsExcluded() {
|
|
|
|
return array(
|
|
|
|
array('files_encryption/foo.txt', true),
|
|
|
|
array('test/foo.txt', false),
|
|
|
|
array('/user1/files_encryption/foo.txt', true),
|
|
|
|
array('/user1/files/foo.txt', false),
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isExcludedCallback() {
|
|
|
|
$args = func_get_args();
|
|
|
|
if ($args[0] === 'user1') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-14 22:39:23 +03:00
|
|
|
}
|