2015-04-06 22:08:09 +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>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-04-07 18:02:49 +03:00
|
|
|
*
|
2015-04-06 22:08:09 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-04-06 22:08:09 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Encryption\Tests\Users;
|
|
|
|
|
2017-10-26 14:46:16 +03:00
|
|
|
use OCA\Encryption\Crypto\Crypt;
|
|
|
|
use OCA\Encryption\KeyManager;
|
2015-04-06 22:08:09 +03:00
|
|
|
use OCA\Encryption\Users\Setup;
|
2016-09-02 11:29:05 +03:00
|
|
|
use OCP\ILogger;
|
2017-10-26 14:46:16 +03:00
|
|
|
use OCP\IUserSession;
|
2015-04-06 22:08:09 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class SetupTest extends TestCase {
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OCA\Encryption\KeyManager|\PHPUnit\Framework\MockObject\MockObject
|
2015-04-06 22:08:09 +03:00
|
|
|
*/
|
|
|
|
private $keyManagerMock;
|
|
|
|
/**
|
2020-08-11 22:32:18 +03:00
|
|
|
* @var \OCA\Encryption\Crypto\Crypt|\PHPUnit\Framework\MockObject\MockObject
|
2015-04-06 22:08:09 +03:00
|
|
|
*/
|
|
|
|
private $cryptMock;
|
|
|
|
/**
|
|
|
|
* @var Setup
|
|
|
|
*/
|
|
|
|
private $instance;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-04-06 22:08:09 +03:00
|
|
|
parent::setUp();
|
2016-09-02 11:29:05 +03:00
|
|
|
$logMock = $this->createMock(ILogger::class);
|
2017-10-26 14:46:16 +03:00
|
|
|
$userSessionMock = $this->getMockBuilder(IUserSession::class)
|
2015-04-06 22:08:09 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-10-26 14:46:16 +03:00
|
|
|
$this->cryptMock = $this->getMockBuilder(Crypt::class)
|
2015-04-06 22:08:09 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2017-10-26 14:46:16 +03:00
|
|
|
$this->keyManagerMock = $this->getMockBuilder(KeyManager::class)
|
2015-04-06 22:08:09 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2016-05-12 10:42:19 +03:00
|
|
|
/** @var \OCP\ILogger $logMock */
|
|
|
|
/** @var \OCP\IUserSession $userSessionMock */
|
2015-04-06 22:08:09 +03:00
|
|
|
$this->instance = new Setup($logMock,
|
|
|
|
$userSessionMock,
|
|
|
|
$this->cryptMock,
|
|
|
|
$this->keyManagerMock);
|
|
|
|
}
|
|
|
|
|
2016-03-02 15:58:06 +03:00
|
|
|
|
|
|
|
public function testSetupSystem() {
|
|
|
|
$this->keyManagerMock->expects($this->once())->method('validateShareKey');
|
|
|
|
$this->keyManagerMock->expects($this->once())->method('validateMasterKey');
|
|
|
|
|
|
|
|
$this->instance->setupSystem();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataTestSetupUser
|
|
|
|
*
|
|
|
|
* @param bool $hasKeys
|
|
|
|
* @param bool $expected
|
|
|
|
*/
|
|
|
|
public function testSetupUser($hasKeys, $expected) {
|
|
|
|
$this->keyManagerMock->expects($this->once())->method('userHasKeys')
|
|
|
|
->with('uid')->willReturn($hasKeys);
|
|
|
|
|
|
|
|
if ($hasKeys) {
|
|
|
|
$this->keyManagerMock->expects($this->never())->method('storeKeyPair');
|
|
|
|
} else {
|
2020-07-27 14:28:44 +03:00
|
|
|
$this->cryptMock->expects($this->once())->method('createKeyPair')->willReturn(['publicKey' => 'publicKey', 'privateKey' => 'privateKey']);
|
2016-03-02 15:58:06 +03:00
|
|
|
$this->keyManagerMock->expects($this->once())->method('storeKeyPair')
|
2020-07-27 14:28:44 +03:00
|
|
|
->with('uid', 'password', ['publicKey' => 'publicKey', 'privateKey' => 'privateKey'])->willReturn(true);
|
2016-03-02 15:58:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
|
|
|
$this->instance->setupUser('uid', 'password')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestSetupUser() {
|
|
|
|
return [
|
|
|
|
[true, true],
|
|
|
|
[false, true]
|
|
|
|
];
|
|
|
|
}
|
2015-04-06 22:08:09 +03:00
|
|
|
}
|