0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-01-16 16:19:00 +00:00
nextcloud_server/apps/encryption/tests/Controller/SettingsControllerTest.php
provokateurin 381077028a
refactor(apps): Use constructor property promotion when possible
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-10-21 12:37:59 +02:00

235 lines
6.2 KiB
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Encryption\Tests\Controller;
use OCA\Encryption\Controller\SettingsController;
use OCA\Encryption\Crypto\Crypt;
use OCA\Encryption\KeyManager;
use OCA\Encryption\Session;
use OCA\Encryption\Util;
use OCP\AppFramework\Http;
use OCP\IL10N;
use OCP\IRequest;
use OCP\ISession;
use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;
class SettingsControllerTest extends TestCase {
/** @var SettingsController */
private $controller;
/** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
private $requestMock;
/** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
private $l10nMock;
/** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */
private $userManagerMock;
/** @var IUserSession|\PHPUnit\Framework\MockObject\MockObject */
private $userSessionMock;
/** @var KeyManager|\PHPUnit\Framework\MockObject\MockObject */
private $keyManagerMock;
/** @var Crypt|\PHPUnit\Framework\MockObject\MockObject */
private $cryptMock;
/** @var Session|\PHPUnit\Framework\MockObject\MockObject */
private $sessionMock;
/** @var MockObject|IUser */
private $user;
/** @var ISession|\PHPUnit\Framework\MockObject\MockObject */
private $ocSessionMock;
/** @var Util|\PHPUnit\Framework\MockObject\MockObject */
private $utilMock;
protected function setUp(): void {
parent::setUp();
$this->requestMock = $this->createMock(IRequest::class);
$this->l10nMock = $this->getMockBuilder(IL10N::class)
->disableOriginalConstructor()->getMock();
$this->l10nMock->expects($this->any())
->method('t')
->willReturnCallback(function ($message) {
return $message;
});
$this->userManagerMock = $this->getMockBuilder(IUserManager::class)
->disableOriginalConstructor()->getMock();
$this->keyManagerMock = $this->getMockBuilder(KeyManager::class)
->disableOriginalConstructor()->getMock();
$this->cryptMock = $this->getMockBuilder(Crypt::class)
->disableOriginalConstructor()->getMock();
$this->ocSessionMock = $this->getMockBuilder(ISession::class)->disableOriginalConstructor()->getMock();
$this->user = $this->createMock(IUser::class);
$this->user->expects($this->any())
->method('getUID')
->willReturn('testUserUid');
$this->userSessionMock = $this->createMock(IUserSession::class);
$this->userSessionMock->expects($this->any())
->method('getUser')
->willReturn($this->user);
$this->sessionMock = $this->getMockBuilder(Session::class)
->disableOriginalConstructor()->getMock();
$this->utilMock = $this->getMockBuilder(Util::class)
->disableOriginalConstructor()
->getMock();
$this->controller = new SettingsController(
'encryption',
$this->requestMock,
$this->l10nMock,
$this->userManagerMock,
$this->userSessionMock,
$this->keyManagerMock,
$this->cryptMock,
$this->sessionMock,
$this->ocSessionMock,
$this->utilMock
);
}
/**
* test updatePrivateKeyPassword() if wrong new password was entered
*/
public function testUpdatePrivateKeyPasswordWrongNewPassword(): void {
$oldPassword = 'old';
$newPassword = 'new';
$this->user->expects($this->any())
->method('getUID')
->willReturn('uid');
$this->userManagerMock
->expects($this->exactly(2))
->method('checkPassword')
->willReturn(false);
$result = $this->controller->updatePrivateKeyPassword($oldPassword, $newPassword);
$data = $result->getData();
$this->assertSame(Http::STATUS_BAD_REQUEST, $result->getStatus());
$this->assertSame('The current log-in password was not correct, please try again.',
$data['message']);
}
/**
* test updatePrivateKeyPassword() if wrong old password was entered
*/
public function testUpdatePrivateKeyPasswordWrongOldPassword(): void {
$oldPassword = 'old';
$newPassword = 'new';
$this->userManagerMock
->expects($this->once())
->method('checkPassword')
->willReturn(true);
$this->cryptMock
->expects($this->once())
->method('decryptPrivateKey')
->willReturn(false);
$result = $this->controller->updatePrivateKeyPassword($oldPassword, $newPassword);
$data = $result->getData();
$this->assertSame(Http::STATUS_BAD_REQUEST, $result->getStatus());
$this->assertSame('The old password was not correct, please try again.',
$data['message']);
}
/**
* test updatePrivateKeyPassword() with the correct old and new password
*/
public function testUpdatePrivateKeyPassword(): void {
$oldPassword = 'old';
$newPassword = 'new';
$this->ocSessionMock->expects($this->once())
->method('get')->with('loginname')->willReturn('testUser');
$this->userManagerMock
->expects($this->exactly(2))
->method('checkPassword')
->withConsecutive(
['testUserUid', 'new'],
['testUser', 'new'],
)
->willReturnOnConsecutiveCalls(
false,
true,
);
$this->cryptMock
->expects($this->once())
->method('decryptPrivateKey')
->willReturn('decryptedKey');
$this->cryptMock
->expects($this->once())
->method('encryptPrivateKey')
->willReturn('encryptedKey');
$this->cryptMock
->expects($this->once())
->method('generateHeader')
->willReturn('header.');
// methods which must be called after successful changing the key password
$this->keyManagerMock
->expects($this->once())
->method('setPrivateKey')
->with($this->equalTo('testUserUid'), $this->equalTo('header.encryptedKey'));
$this->sessionMock
->expects($this->once())
->method('setPrivateKey')
->with($this->equalTo('decryptedKey'));
$this->sessionMock
->expects($this->once())
->method('setStatus')
->with($this->equalTo(Session::INIT_SUCCESSFUL));
$result = $this->controller->updatePrivateKeyPassword($oldPassword, $newPassword);
$data = $result->getData();
$this->assertSame(Http::STATUS_OK, $result->getStatus());
$this->assertSame('Private key password successfully updated.',
$data['message']);
}
public function testSetEncryptHomeStorage(): void {
$value = true;
$this->utilMock->expects($this->once())->method('setEncryptHomeStorage')->with($value);
$this->controller->setEncryptHomeStorage($value);
}
}