2015-04-07 18:49:45 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2015-04-07 18:49:45 +03:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-04-07 18:49:45 +03:00
|
|
|
* @license AGPL-3.0
|
2015-06-25 12:43:55 +03:00
|
|
|
*
|
|
|
|
* 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/>
|
|
|
|
*
|
2015-04-07 18:49:45 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCA\Encryption\Tests\Hooks;
|
|
|
|
|
|
|
|
|
2015-04-28 13:57:30 +03:00
|
|
|
use OCA\Encryption\Crypto\Crypt;
|
2015-04-07 18:49:45 +03:00
|
|
|
use OCA\Encryption\Hooks\UserHooks;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class UserHooksTest extends TestCase {
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $utilMock;
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $recoveryMock;
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $sessionMock;
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $keyManagerMock;
|
2015-09-11 22:18:13 +03:00
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $userManagerMock;
|
|
|
|
|
2015-04-07 18:49:45 +03:00
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $userSetupMock;
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $userSessionMock;
|
|
|
|
/**
|
|
|
|
* @var \PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
private $cryptMock;
|
|
|
|
/**
|
|
|
|
* @var UserHooks
|
|
|
|
*/
|
|
|
|
private $instance;
|
|
|
|
|
|
|
|
private $params = ['uid' => 'testUser', 'password' => 'password'];
|
|
|
|
|
|
|
|
public function testLogin() {
|
|
|
|
$this->userSetupMock->expects($this->exactly(2))
|
|
|
|
->method('setupUser')
|
|
|
|
->willReturnOnConsecutiveCalls(true, false);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('init')
|
|
|
|
->with('testUser', 'password');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->login($this->params));
|
|
|
|
$this->assertFalse($this->instance->login($this->params));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLogout() {
|
|
|
|
$this->sessionMock->expects($this->once())
|
|
|
|
->method('clear');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->logout());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPostCreateUser() {
|
|
|
|
$this->userSetupMock->expects($this->once())
|
|
|
|
->method('setupUser');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->postCreateUser($this->params));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPostDeleteUser() {
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('deletePublicKey')
|
|
|
|
->with('testUser');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->postDeleteUser($this->params));
|
|
|
|
}
|
|
|
|
|
2015-09-11 22:18:13 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestPreSetPassphrase
|
|
|
|
*/
|
|
|
|
public function testPreSetPassphrase($canChange) {
|
|
|
|
|
|
|
|
/** @var UserHooks | \PHPUnit_Framework_MockObject_MockObject $instance */
|
|
|
|
$instance = $this->getMockBuilder('OCA\Encryption\Hooks\UserHooks')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
$this->keyManagerMock,
|
|
|
|
$this->userManagerMock,
|
|
|
|
$this->loggerMock,
|
|
|
|
$this->userSetupMock,
|
|
|
|
$this->userSessionMock,
|
|
|
|
$this->utilMock,
|
|
|
|
$this->sessionMock,
|
|
|
|
$this->cryptMock,
|
|
|
|
$this->recoveryMock
|
|
|
|
]
|
|
|
|
)
|
|
|
|
->setMethods(['setPassphrase'])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$userMock = $this->getMock('OCP\IUser');
|
|
|
|
|
|
|
|
$this->userManagerMock->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with($this->params['uid'])
|
|
|
|
->willReturn($userMock);
|
|
|
|
$userMock->expects($this->once())
|
|
|
|
->method('canChangePassword')
|
|
|
|
->willReturn($canChange);
|
|
|
|
|
|
|
|
if ($canChange) {
|
|
|
|
// in this case the password will be changed in the post hook
|
|
|
|
$instance->expects($this->never())->method('setPassphrase');
|
|
|
|
} else {
|
|
|
|
// if user can't change the password we update the encryption
|
|
|
|
// key password already in the pre hook
|
|
|
|
$instance->expects($this->once())
|
|
|
|
->method('setPassphrase')
|
|
|
|
->with($this->params);
|
|
|
|
}
|
|
|
|
|
|
|
|
$instance->preSetPassphrase($this->params);
|
|
|
|
}
|
2015-04-07 18:49:45 +03:00
|
|
|
|
2015-09-11 22:18:13 +03:00
|
|
|
public function dataTestPreSetPassphrase() {
|
|
|
|
return [
|
|
|
|
[true],
|
|
|
|
[false]
|
|
|
|
];
|
2015-04-07 18:49:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetPassphrase() {
|
|
|
|
$this->sessionMock->expects($this->exactly(4))
|
|
|
|
->method('getPrivateKey')
|
|
|
|
->willReturnOnConsecutiveCalls(true, false);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->exactly(4))
|
2015-08-07 15:04:17 +03:00
|
|
|
->method('encryptPrivateKey')
|
2015-04-07 18:49:45 +03:00
|
|
|
->willReturn(true);
|
|
|
|
|
2015-04-28 13:57:30 +03:00
|
|
|
$this->cryptMock->expects($this->any())
|
|
|
|
->method('generateHeader')
|
|
|
|
->willReturn(Crypt::HEADER_START . ':Cipher:test:' . Crypt::HEADER_END);
|
|
|
|
|
2015-04-07 18:49:45 +03:00
|
|
|
$this->keyManagerMock->expects($this->exactly(4))
|
2015-04-28 13:57:30 +03:00
|
|
|
->method('setPrivateKey')
|
|
|
|
->willReturnCallback(function ($user, $key) {
|
|
|
|
$header = substr($key, 0, strlen(Crypt::HEADER_START));
|
|
|
|
$this->assertSame(
|
|
|
|
Crypt::HEADER_START,
|
|
|
|
$header, 'every encrypted file should start with a header');
|
|
|
|
});
|
2015-04-07 18:49:45 +03:00
|
|
|
|
|
|
|
$this->assertNull($this->instance->setPassphrase($this->params));
|
|
|
|
$this->params['recoveryPassword'] = 'password';
|
|
|
|
|
|
|
|
$this->recoveryMock->expects($this->exactly(3))
|
|
|
|
->method('isRecoveryEnabledForUser')
|
|
|
|
->with('testUser')
|
|
|
|
->willReturnOnConsecutiveCalls(true, false);
|
|
|
|
|
|
|
|
|
|
|
|
// Test first if statement
|
|
|
|
$this->assertNull($this->instance->setPassphrase($this->params));
|
|
|
|
|
|
|
|
// Test Second if conditional
|
|
|
|
$this->keyManagerMock->expects($this->exactly(2))
|
|
|
|
->method('userHasKeys')
|
|
|
|
->with('testUser')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->setPassphrase($this->params));
|
|
|
|
|
|
|
|
// Test third and final if condition
|
|
|
|
$this->utilMock->expects($this->once())
|
|
|
|
->method('userHasFiles')
|
|
|
|
->with('testUser')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('createKeyPair');
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('setPrivateKey');
|
|
|
|
|
|
|
|
$this->recoveryMock->expects($this->once())
|
|
|
|
->method('recoverUsersFiles')
|
|
|
|
->with('password', 'testUser');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->setPassphrase($this->params));
|
|
|
|
}
|
|
|
|
|
2015-04-17 11:52:40 +03:00
|
|
|
public function testSetPasswordNoUser() {
|
|
|
|
$this->sessionMock->expects($this->once())
|
|
|
|
->method('getPrivateKey')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$userSessionMock = $this->getMockBuilder('OCP\IUserSession')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$userSessionMock->expects($this->any())->method('getUser')->will($this->returnValue(null));
|
|
|
|
|
|
|
|
$this->recoveryMock->expects($this->once())
|
|
|
|
->method('isRecoveryEnabledForUser')
|
|
|
|
->with('testUser')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$userHooks = new UserHooks($this->keyManagerMock,
|
2015-09-11 22:18:13 +03:00
|
|
|
$this->userManagerMock,
|
2015-04-17 11:52:40 +03:00
|
|
|
$this->loggerMock,
|
|
|
|
$this->userSetupMock,
|
|
|
|
$userSessionMock,
|
|
|
|
$this->utilMock,
|
|
|
|
$this->sessionMock,
|
|
|
|
$this->cryptMock,
|
|
|
|
$this->recoveryMock
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertNull($userHooks->setPassphrase($this->params));
|
|
|
|
}
|
|
|
|
|
2015-04-07 18:49:45 +03:00
|
|
|
public function testPostPasswordReset() {
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('replaceUserKeys')
|
|
|
|
->with('testUser');
|
|
|
|
|
|
|
|
$this->userSetupMock->expects($this->once())
|
|
|
|
->method('setupServerSide')
|
|
|
|
->with('testUser', 'password');
|
|
|
|
|
|
|
|
$this->assertNull($this->instance->postPasswordReset($this->params));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2015-04-17 11:52:40 +03:00
|
|
|
$this->loggerMock = $this->getMock('OCP\ILogger');
|
2015-04-07 18:49:45 +03:00
|
|
|
$this->keyManagerMock = $this->getMockBuilder('OCA\Encryption\KeyManager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-09-11 22:18:13 +03:00
|
|
|
$this->userManagerMock = $this->getMockBuilder('OCP\IUserManager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-04-07 18:49:45 +03:00
|
|
|
$this->userSetupMock = $this->getMockBuilder('OCA\Encryption\Users\Setup')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->userSessionMock = $this->getMockBuilder('OCP\IUserSession')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods([
|
|
|
|
'isLoggedIn',
|
|
|
|
'getUID',
|
|
|
|
'login',
|
|
|
|
'logout',
|
|
|
|
'setUser',
|
|
|
|
'getUser',
|
|
|
|
'canChangePassword'
|
|
|
|
])
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->userSessionMock->expects($this->any())->method('getUID')->will($this->returnValue('testUser'));
|
|
|
|
|
|
|
|
$this->userSessionMock->expects($this->any())
|
|
|
|
->method($this->anything())
|
|
|
|
->will($this->returnSelf());
|
|
|
|
|
|
|
|
$utilMock = $this->getMockBuilder('OCA\Encryption\Util')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$sessionMock = $this->getMockBuilder('OCA\Encryption\Session')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->cryptMock = $this->getMockBuilder('OCA\Encryption\Crypto\Crypt')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$recoveryMock = $this->getMockBuilder('OCA\Encryption\Recovery')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->sessionMock = $sessionMock;
|
|
|
|
$this->recoveryMock = $recoveryMock;
|
|
|
|
$this->utilMock = $utilMock;
|
|
|
|
$this->instance = new UserHooks($this->keyManagerMock,
|
2015-09-11 22:18:13 +03:00
|
|
|
$this->userManagerMock,
|
2015-04-17 11:52:40 +03:00
|
|
|
$this->loggerMock,
|
2015-04-07 18:49:45 +03:00
|
|
|
$this->userSetupMock,
|
|
|
|
$this->userSessionMock,
|
|
|
|
$this->utilMock,
|
|
|
|
$this->sessionMock,
|
|
|
|
$this->cryptMock,
|
|
|
|
$this->recoveryMock
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|