2015-04-03 18:37:54 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-04-07 18:02:49 +03:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-04-07 18:02:49 +03:00
|
|
|
*
|
2015-04-03 18:37:54 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCA\Encryption\Tests;
|
|
|
|
|
|
|
|
|
2016-09-02 11:29:05 +03:00
|
|
|
use OC\Files\View;
|
2015-04-03 18:37:54 +03:00
|
|
|
use OCA\Encryption\Recovery;
|
2016-09-02 11:29:05 +03:00
|
|
|
use OCP\Encryption\IFile;
|
|
|
|
use OCP\Encryption\Keys\IStorage;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\Security\ISecureRandom;
|
2015-04-03 18:37:54 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class RecoveryTest extends TestCase {
|
|
|
|
private static $tempStorage = [];
|
2015-04-06 18:49:18 +03:00
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OCP\Encryption\IFile|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-06 18:49:18 +03:00
|
|
|
*/
|
|
|
|
private $fileMock;
|
2015-04-03 18:37:54 +03:00
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OC\Files\View|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-03 18:37:54 +03:00
|
|
|
*/
|
|
|
|
private $viewMock;
|
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OCP\IUserSession|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-03 18:37:54 +03:00
|
|
|
*/
|
|
|
|
private $userSessionMock;
|
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OCA\Encryption\KeyManager|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-03 18:37:54 +03:00
|
|
|
*/
|
|
|
|
private $keyManagerMock;
|
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OCP\IConfig|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-03 18:37:54 +03:00
|
|
|
*/
|
|
|
|
private $configMock;
|
|
|
|
/**
|
2016-05-12 10:42:19 +03:00
|
|
|
* @var \OCA\Encryption\Crypto\Crypt|\PHPUnit_Framework_MockObject_MockObject
|
2015-04-03 18:37:54 +03:00
|
|
|
*/
|
|
|
|
private $cryptMock;
|
|
|
|
/**
|
|
|
|
* @var Recovery
|
|
|
|
*/
|
|
|
|
private $instance;
|
|
|
|
|
2015-12-08 11:28:49 +03:00
|
|
|
public function testEnableAdminRecoverySuccessful() {
|
2015-04-03 18:37:54 +03:00
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('recoveryKeyExists')
|
|
|
|
->willReturnOnConsecutiveCalls(false, true);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('createKeyPair')
|
2015-12-08 11:28:49 +03:00
|
|
|
->willReturn([
|
|
|
|
'publicKey' => 'privateKey',
|
|
|
|
'privateKey' => 'publicKey',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('setRecoveryKey')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('checkRecoveryPassword')
|
|
|
|
->willReturnOnConsecutiveCalls(true, true);
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->enableAdminRecovery('password'));
|
|
|
|
$this->assertArrayHasKey('recoveryAdminEnabled', self::$tempStorage);
|
|
|
|
$this->assertEquals(1, self::$tempStorage['recoveryAdminEnabled']);
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->enableAdminRecovery('password'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEnableAdminRecoveryCouldNotCheckPassword() {
|
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('recoveryKeyExists')
|
|
|
|
->willReturnOnConsecutiveCalls(false, true);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('createKeyPair')
|
|
|
|
->willReturn([
|
|
|
|
'publicKey' => 'privateKey',
|
|
|
|
'privateKey' => 'publicKey',
|
|
|
|
]);
|
2015-04-03 18:37:54 +03:00
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('setRecoveryKey')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('checkRecoveryPassword')
|
|
|
|
->willReturnOnConsecutiveCalls(true, false);
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->enableAdminRecovery('password'));
|
|
|
|
$this->assertArrayHasKey('recoveryAdminEnabled', self::$tempStorage);
|
|
|
|
$this->assertEquals(1, self::$tempStorage['recoveryAdminEnabled']);
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->enableAdminRecovery('password'));
|
|
|
|
}
|
|
|
|
|
2015-12-08 11:28:49 +03:00
|
|
|
public function testEnableAdminRecoveryCouldNotCreateKey() {
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('recoveryKeyExists')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('createKeyPair')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->enableAdminRecovery('password'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChangeRecoveryKeyPasswordSuccessful() {
|
2015-04-03 18:37:54 +03:00
|
|
|
$this->assertFalse($this->instance->changeRecoveryKeyPassword('password',
|
|
|
|
'passwordOld'));
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getSystemPrivateKey');
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('decryptPrivateKey');
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
2015-08-07 15:04:17 +03:00
|
|
|
->method('encryptPrivateKey')
|
2015-04-03 18:37:54 +03:00
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->changeRecoveryKeyPassword('password',
|
|
|
|
'passwordOld'));
|
|
|
|
}
|
|
|
|
|
2015-12-08 11:28:49 +03:00
|
|
|
public function testChangeRecoveryKeyPasswordCouldNotDecryptPrivateRecoveryKey() {
|
|
|
|
$this->assertFalse($this->instance->changeRecoveryKeyPassword('password', 'passwordOld'));
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getSystemPrivateKey');
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('decryptPrivateKey')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->changeRecoveryKeyPassword('password', 'passwordOld'));
|
|
|
|
}
|
|
|
|
|
2015-04-03 18:37:54 +03:00
|
|
|
public function testDisableAdminRecovery() {
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('checkRecoveryPassword')
|
|
|
|
->willReturnOnConsecutiveCalls(true, false);
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('recoveryAdminEnabled', self::$tempStorage);
|
|
|
|
$this->assertTrue($this->instance->disableAdminRecovery('password'));
|
|
|
|
$this->assertEquals(0, self::$tempStorage['recoveryAdminEnabled']);
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->disableAdminRecovery('password'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsRecoveryEnabledForUser() {
|
|
|
|
|
|
|
|
$this->configMock->expects($this->exactly(2))
|
|
|
|
->method('getUserValue')
|
|
|
|
->willReturnOnConsecutiveCalls('1', '0');
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->isRecoveryEnabledForUser());
|
|
|
|
$this->assertFalse($this->instance->isRecoveryEnabledForUser('admin'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsRecoveryKeyEnabled() {
|
|
|
|
$this->assertFalse($this->instance->isRecoveryKeyEnabled());
|
|
|
|
self::$tempStorage['recoveryAdminEnabled'] = '1';
|
|
|
|
$this->assertTrue($this->instance->isRecoveryKeyEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetRecoveryFolderForUser() {
|
|
|
|
$this->viewMock->expects($this->exactly(2))
|
|
|
|
->method('getDirectoryContent')
|
|
|
|
->willReturn([]);
|
|
|
|
$this->assertTrue($this->instance->setRecoveryForUser(0));
|
|
|
|
$this->assertTrue($this->instance->setRecoveryForUser('1'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRecoverUserFiles() {
|
|
|
|
$this->viewMock->expects($this->once())
|
|
|
|
->method('getDirectoryContent')
|
|
|
|
->willReturn([]);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('decryptPrivateKey');
|
2016-05-12 10:42:19 +03:00
|
|
|
$this->instance->recoverUsersFiles('password', 'admin');
|
|
|
|
$this->assertTrue(true);
|
2015-04-03 18:37:54 +03:00
|
|
|
}
|
|
|
|
|
2015-04-06 18:49:18 +03:00
|
|
|
public function testRecoverFile() {
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getEncryptedFileKey')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getShareKey')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('multiKeyDecrypt')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->fileMock->expects($this->once())
|
|
|
|
->method('getAccessList')
|
|
|
|
->willReturn(['users' => ['admin']]);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getPublicKey')
|
|
|
|
->willReturn('publicKey');
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('addSystemKeys')
|
2015-04-29 18:18:41 +03:00
|
|
|
->with($this->anything(), $this->anything(), $this->equalTo('admin'))
|
2015-04-06 18:49:18 +03:00
|
|
|
->willReturn(['admin' => 'publicKey']);
|
|
|
|
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('multiKeyEncrypt');
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('setAllFileKeys');
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertNull(self::invokePrivate($this->instance,
|
2015-04-06 18:49:18 +03:00
|
|
|
'recoverFile',
|
2015-04-29 18:18:41 +03:00
|
|
|
['/', 'testkey', 'admin']));
|
2015-04-06 18:49:18 +03:00
|
|
|
}
|
|
|
|
|
2015-04-03 18:37:54 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
|
|
$this->userSessionMock = $this->getMockBuilder('OCP\IUserSession')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods([
|
|
|
|
'isLoggedIn',
|
|
|
|
'getUID',
|
|
|
|
'login',
|
|
|
|
'logout',
|
|
|
|
'setUser',
|
|
|
|
'getUser'
|
|
|
|
])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->userSessionMock->expects($this->any())->method('getUID')->will($this->returnValue('admin'));
|
|
|
|
|
|
|
|
$this->userSessionMock->expects($this->any())
|
|
|
|
->method($this->anything())
|
|
|
|
->will($this->returnSelf());
|
|
|
|
|
|
|
|
$this->cryptMock = $this->getMockBuilder('OCA\Encryption\Crypto\Crypt')->disableOriginalConstructor()->getMock();
|
2016-05-12 10:42:19 +03:00
|
|
|
/** @var \OCP\Security\ISecureRandom $randomMock */
|
2016-09-02 11:29:05 +03:00
|
|
|
$randomMock = $this->createMock(ISecureRandom::class);
|
2015-04-03 18:37:54 +03:00
|
|
|
$this->keyManagerMock = $this->getMockBuilder('OCA\Encryption\KeyManager')->disableOriginalConstructor()->getMock();
|
2016-09-02 11:29:05 +03:00
|
|
|
$this->configMock = $this->createMock(IConfig::class);
|
2016-05-12 10:42:19 +03:00
|
|
|
/** @var \OCP\Encryption\Keys\IStorage $keyStorageMock */
|
2016-09-02 11:29:05 +03:00
|
|
|
$keyStorageMock = $this->createMock(IStorage::class);
|
|
|
|
$this->fileMock = $this->createMock(IFile::class);
|
|
|
|
$this->viewMock = $this->createMock(View::class);
|
2015-04-03 18:37:54 +03:00
|
|
|
|
|
|
|
$this->configMock->expects($this->any())
|
|
|
|
->method('setAppValue')
|
|
|
|
->will($this->returnCallback([$this, 'setValueTester']));
|
|
|
|
|
|
|
|
$this->configMock->expects($this->any())
|
|
|
|
->method('getAppValue')
|
|
|
|
->will($this->returnCallback([$this, 'getValueTester']));
|
|
|
|
|
|
|
|
$this->instance = new Recovery($this->userSessionMock,
|
|
|
|
$this->cryptMock,
|
|
|
|
$randomMock,
|
|
|
|
$this->keyManagerMock,
|
|
|
|
$this->configMock,
|
|
|
|
$keyStorageMock,
|
2015-04-06 18:49:18 +03:00
|
|
|
$this->fileMock,
|
2015-04-03 18:37:54 +03:00
|
|
|
$this->viewMock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $app
|
|
|
|
* @param $key
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setValueTester($app, $key, $value) {
|
|
|
|
self::$tempStorage[$key] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $key
|
|
|
|
*/
|
|
|
|
public function removeValueTester($key) {
|
|
|
|
unset(self::$tempStorage[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $app
|
|
|
|
* @param $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getValueTester($app, $key) {
|
|
|
|
if (!empty(self::$tempStorage[$key])) {
|
|
|
|
return self::$tempStorage[$key];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|