123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724 |
- <?php
- /**
- * @author Lukas Reschke <lukas@owncloud.com>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @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 Tests\Core\Controller;
- use OC\Authentication\TwoFactorAuth\Manager;
- use OC\Core\Controller\LostController;
- use OC\Core\Events\BeforePasswordResetEvent;
- use OC\Core\Events\PasswordResetEvent;
- use OC\Mail\Message;
- use OC\Security\RateLimiting\Limiter;
- use OCP\AppFramework\Http\JSONResponse;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\AppFramework\Services\IInitialState;
- use OCP\Defaults;
- use OCP\Encryption\IEncryptionModule;
- use OCP\Encryption\IManager;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IRequest;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\Mail\IEMailTemplate;
- use OCP\Mail\IMailer;
- use OCP\Security\VerificationToken\InvalidTokenException;
- use OCP\Security\VerificationToken\IVerificationToken;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Log\LoggerInterface;
- use Test\TestCase;
- /**
- * Class LostControllerTest
- *
- * @package OC\Core\Controller
- */
- class LostControllerTest extends TestCase {
- private LostController $lostController;
- /** @var IUser */
- private $existingUser;
- /** @var IURLGenerator | MockObject */
- private $urlGenerator;
- /** @var IL10N */
- private $l10n;
- /** @var IUserManager | MockObject */
- private $userManager;
- /** @var Defaults */
- private $defaults;
- /** @var IConfig | MockObject */
- private $config;
- /** @var IMailer | MockObject */
- private $mailer;
- /** @var IManager|MockObject */
- private $encryptionManager;
- /** @var IRequest|MockObject */
- private $request;
- /** @var LoggerInterface|MockObject */
- private $logger;
- /** @var Manager|MockObject */
- private $twofactorManager;
- /** @var IInitialState|MockObject */
- private $initialState;
- /** @var IVerificationToken|MockObject */
- private $verificationToken;
- /** @var IEventDispatcher|MockObject */
- private $eventDispatcher;
- /** @var Limiter|MockObject */
- private $limiter;
- protected function setUp(): void {
- parent::setUp();
- $this->existingUser = $this->createMock(IUser::class);
- $this->existingUser->expects($this->any())
- ->method('getEMailAddress')
- ->willReturn('test@example.com');
- $this->existingUser->expects($this->any())
- ->method('getUID')
- ->willReturn('ExistingUser');
- $this->existingUser->expects($this->any())
- ->method('getDisplayName')
- ->willReturn('Existing User');
- $this->existingUser->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
- $this->config = $this->createMock(IConfig::class);
- $this->config->expects($this->any())
- ->method('getSystemValue')
- ->willReturnMap([
- ['secret', null, 'SECRET'],
- ['secret', '', 'SECRET'],
- ['lost_password_link', '', ''],
- ]);
- $this->l10n = $this->createMock(IL10N::class);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnCallback(function ($text, $parameters = []) {
- return vsprintf($text, $parameters);
- });
- $this->defaults = $this->createMock(Defaults::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->mailer = $this->createMock(IMailer::class);
- $this->request = $this->createMock(IRequest::class);
- $this->encryptionManager = $this->createMock(IManager::class);
- $this->encryptionManager->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->twofactorManager = $this->createMock(Manager::class);
- $this->initialState = $this->createMock(IInitialState::class);
- $this->verificationToken = $this->createMock(IVerificationToken::class);
- $this->eventDispatcher = $this->createMock(IEventDispatcher::class);
- $this->limiter = $this->createMock(Limiter::class);
- $this->lostController = new LostController(
- 'Core',
- $this->request,
- $this->urlGenerator,
- $this->userManager,
- $this->defaults,
- $this->l10n,
- $this->config,
- 'lostpassword-noreply@localhost',
- $this->encryptionManager,
- $this->mailer,
- $this->logger,
- $this->twofactorManager,
- $this->initialState,
- $this->verificationToken,
- $this->eventDispatcher,
- $this->limiter
- );
- }
- public function testResetFormTokenError() {
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->once())
- ->method('check')
- ->with('12345:MySecretToken', $this->existingUser, 'lostpassword', 'test@example.com')
- ->willThrowException(new InvalidTokenException(InvalidTokenException::TOKEN_DECRYPTION_ERROR));
- $response = $this->lostController->resetform('12345:MySecretToken', 'ValidTokenUser');
- $expectedResponse = new TemplateResponse('core',
- 'error',
- [
- 'errors' => [
- ['error' => 'Could not reset password because the token is invalid'],
- ]
- ],
- 'guest');
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testResetFormValidToken() {
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->once())
- ->method('check')
- ->with('MySecretToken', $this->existingUser, 'lostpassword', 'test@example.com');
- $this->urlGenerator
- ->expects($this->once())
- ->method('linkToRouteAbsolute')
- ->with('core.lost.setPassword', ['userId' => 'ValidTokenUser', 'token' => 'MySecretToken'])
- ->willReturn('https://example.tld/index.php/lostpassword/set/sometoken/someuser');
- $this->initialState
- ->expects($this->exactly(2))
- ->method('provideInitialState')
- ->withConsecutive(
- ['resetPasswordUser', 'ValidTokenUser'],
- ['resetPasswordTarget', 'https://example.tld/index.php/lostpassword/set/sometoken/someuser']
- );
- $response = $this->lostController->resetform('MySecretToken', 'ValidTokenUser');
- $expectedResponse = new TemplateResponse('core',
- 'login',
- [],
- 'guest');
- $this->assertEquals($expectedResponse, $response);
- }
- public function testEmailUnsuccessful() {
- $existingUser = 'ExistingUser';
- $nonExistingUser = 'NonExistingUser';
- $this->userManager
- ->expects($this->any())
- ->method('userExists')
- ->willReturnMap([
- [true, $existingUser],
- [false, $nonExistingUser]
- ]);
- $this->logger->expects($this->exactly(0))
- ->method('error');
- $this->logger->expects($this->exactly(2))
- ->method('warning');
- $this->userManager
- ->method('getByEmail')
- ->willReturn([]);
- // With a non existing user
- $response = $this->lostController->email($nonExistingUser);
- $expectedResponse = new JSONResponse([
- 'status' => 'success',
- ]);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- // With no mail address
- $this->config
- ->expects($this->any())
- ->method('getUserValue')
- ->with($existingUser, 'settings', 'email')
- ->willReturn(null);
- $response = $this->lostController->email($existingUser);
- $expectedResponse = new JSONResponse([
- 'status' => 'success',
- ]);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testEmailSuccessful() {
- $this->userManager
- ->expects($this->any())
- ->method('get')
- ->with('ExistingUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->once())
- ->method('create')
- ->willReturn('ThisIsMaybeANotSoSecretToken!');
- $this->urlGenerator
- ->expects($this->once())
- ->method('linkToRouteAbsolute')
- ->with('core.lost.resetform', ['userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'])
- ->willReturn('https://example.tld/index.php/lostpassword/');
- $message = $this->getMockBuilder('\OC\Mail\Message')
- ->disableOriginalConstructor()->getMock();
- $message
- ->expects($this->once())
- ->method('setTo')
- ->with(['test@example.com' => 'Existing User']);
- $message
- ->expects($this->once())
- ->method('setFrom')
- ->with(['lostpassword-noreply@localhost' => null]);
- $emailTemplate = $this->createMock(IEMailTemplate::class);
- $emailTemplate->expects($this->any())
- ->method('renderHtml')
- ->willReturn('HTML body');
- $emailTemplate->expects($this->any())
- ->method('renderText')
- ->willReturn('text body');
- $message
- ->expects($this->once())
- ->method('useTemplate')
- ->with($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createEMailTemplate')
- ->willReturn($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createMessage')
- ->willReturn($message);
- $this->mailer
- ->expects($this->once())
- ->method('send')
- ->with($message);
- $response = $this->lostController->email('ExistingUser');
- $expectedResponse = new JSONResponse(['status' => 'success']);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testEmailWithMailSuccessful() {
- $this->userManager
- ->expects($this->any())
- ->method('get')
- ->with('test@example.com')
- ->willReturn(null);
- $this->userManager
- ->expects($this->any())
- ->method('getByEmail')
- ->with('test@example.com')
- ->willReturn([$this->existingUser]);
- $this->verificationToken->expects($this->once())
- ->method('create')
- ->willReturn('ThisIsMaybeANotSoSecretToken!');
- $this->urlGenerator
- ->expects($this->once())
- ->method('linkToRouteAbsolute')
- ->with('core.lost.resetform', ['userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'])
- ->willReturn('https://example.tld/index.php/lostpassword/');
- $message = $this->getMockBuilder('\OC\Mail\Message')
- ->disableOriginalConstructor()->getMock();
- $message
- ->expects($this->once())
- ->method('setTo')
- ->with(['test@example.com' => 'Existing User']);
- $message
- ->expects($this->once())
- ->method('setFrom')
- ->with(['lostpassword-noreply@localhost' => null]);
- $emailTemplate = $this->createMock(IEMailTemplate::class);
- $emailTemplate->expects($this->any())
- ->method('renderHtml')
- ->willReturn('HTML body');
- $emailTemplate->expects($this->any())
- ->method('renderText')
- ->willReturn('text body');
- $message
- ->expects($this->once())
- ->method('useTemplate')
- ->with($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createEMailTemplate')
- ->willReturn($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createMessage')
- ->willReturn($message);
- $this->mailer
- ->expects($this->once())
- ->method('send')
- ->with($message);
- $response = $this->lostController->email('test@example.com');
- $expectedResponse = new JSONResponse(['status' => 'success']);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testEmailCantSendException() {
- $this->userManager
- ->expects($this->any())
- ->method('get')
- ->with('ExistingUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->once())
- ->method('create')
- ->willReturn('ThisIsMaybeANotSoSecretToken!');
- $this->urlGenerator
- ->expects($this->once())
- ->method('linkToRouteAbsolute')
- ->with('core.lost.resetform', ['userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'])
- ->willReturn('https://example.tld/index.php/lostpassword/');
- $message = $this->createMock(Message::class);
- $message
- ->expects($this->once())
- ->method('setTo')
- ->with(['test@example.com' => 'Existing User']);
- $message
- ->expects($this->once())
- ->method('setFrom')
- ->with(['lostpassword-noreply@localhost' => null]);
- $emailTemplate = $this->createMock(IEMailTemplate::class);
- $emailTemplate->expects($this->any())
- ->method('renderHtml')
- ->willReturn('HTML body');
- $emailTemplate->expects($this->any())
- ->method('renderText')
- ->willReturn('text body');
- $message
- ->expects($this->once())
- ->method('useTemplate')
- ->with($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createEMailTemplate')
- ->willReturn($emailTemplate);
- $this->mailer
- ->expects($this->once())
- ->method('createMessage')
- ->willReturn($message);
- $this->mailer
- ->expects($this->once())
- ->method('send')
- ->with($message)
- ->will($this->throwException(new \Exception()));
- $this->logger->expects($this->exactly(1))
- ->method('error');
- $response = $this->lostController->email('ExistingUser');
- $expectedResponse = new JSONResponse(['status' => 'success']);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testSetPasswordUnsuccessful() {
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('encryptedData');
- $this->existingUser->method('getLastLogin')
- ->willReturn(12344);
- $this->existingUser->expects($this->once())
- ->method('setPassword')
- ->with('NewPassword')
- ->willReturn(false);
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $beforePasswordResetEvent = new BeforePasswordResetEvent($this->existingUser, 'NewPassword');
- $this->eventDispatcher
- ->expects($this->once())
- ->method('dispatchTyped')
- ->with($beforePasswordResetEvent);
- $this->config->expects($this->never())
- ->method('deleteUserValue');
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', true);
- $expectedResponse = ['status' => 'error', 'msg' => ''];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSetPasswordSuccessful() {
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('encryptedData');
- $this->existingUser->method('getLastLogin')
- ->willReturn(12344);
- $this->existingUser->expects($this->once())
- ->method('setPassword')
- ->with('NewPassword')
- ->willReturn(true);
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $beforePasswordResetEvent = new BeforePasswordResetEvent($this->existingUser, 'NewPassword');
- $passwordResetEvent = new PasswordResetEvent($this->existingUser, 'NewPassword');
- $this->eventDispatcher
- ->expects($this->exactly(2))
- ->method('dispatchTyped')
- ->withConsecutive([$beforePasswordResetEvent], [$passwordResetEvent]);
- $this->config->expects($this->once())
- ->method('deleteUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword');
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', true);
- $expectedResponse = ['user' => 'ValidTokenUser', 'status' => 'success'];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSetPasswordExpiredToken() {
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('encryptedData');
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->atLeastOnce())
- ->method('check')
- ->willThrowException(new InvalidTokenException(InvalidTokenException::TOKEN_EXPIRED));
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', true);
- $expectedResponse = [
- 'status' => 'error',
- 'msg' => 'Could not reset password because the token is expired',
- ];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSetPasswordInvalidDataInDb() {
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('invalidEncryptedData');
- $this->userManager
- ->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->atLeastOnce())
- ->method('check')
- ->willThrowException(new InvalidTokenException(InvalidTokenException::TOKEN_INVALID_FORMAT));
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', true);
- $expectedResponse = [
- 'status' => 'error',
- 'msg' => 'Could not reset password because the token is invalid',
- ];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testIsSetPasswordWithoutTokenFailing() {
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('aValidtoken');
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->verificationToken->expects($this->atLeastOnce())
- ->method('check')
- ->willThrowException(new InvalidTokenException(InvalidTokenException::TOKEN_MISMATCH));
- $response = $this->lostController->setPassword('', 'ValidTokenUser', 'NewPassword', true);
- $expectedResponse = [
- 'status' => 'error',
- 'msg' => 'Could not reset password because the token is invalid'
- ];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSetPasswordForDisabledUser() {
- $user = $this->createMock(IUser::class);
- $user->expects($this->any())
- ->method('isEnabled')
- ->willReturn(false);
- $user->expects($this->never())
- ->method('setPassword');
- $user->expects($this->any())
- ->method('getEMailAddress')
- ->willReturn('random@example.org');
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('encryptedData');
- $this->userManager->method('get')
- ->with('DisabledUser')
- ->willReturn($user);
- $this->verificationToken->expects($this->atLeastOnce())
- ->method('check')
- ->willThrowException(new InvalidTokenException(InvalidTokenException::USER_UNKNOWN));
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'DisabledUser', 'NewPassword', true);
- $expectedResponse = [
- 'status' => 'error',
- 'msg' => 'Could not reset password because the token is invalid'
- ];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSendEmailNoEmail() {
- $user = $this->createMock(IUser::class);
- $user->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
- $this->userManager->method('userExists')
- ->with('ExistingUser')
- ->willReturn(true);
- $this->userManager->method('get')
- ->with('ExistingUser')
- ->willReturn($user);
- $this->logger->expects($this->exactly(0))
- ->method('error');
- $this->logger->expects($this->once())
- ->method('warning');
- $response = $this->lostController->email('ExistingUser');
- $expectedResponse = new JSONResponse(['status' => 'success']);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- public function testSetPasswordEncryptionDontProceedPerUserKey() {
- /** @var IEncryptionModule|MockObject $encryptionModule */
- $encryptionModule = $this->createMock(IEncryptionModule::class);
- $encryptionModule->expects($this->once())->method('needDetailedAccessList')->willReturn(true);
- $this->encryptionManager->expects($this->once())->method('getEncryptionModules')
- ->willReturn([0 => ['callback' => function () use ($encryptionModule) {
- return $encryptionModule;
- }]]);
- $response = $this->lostController->setPassword('myToken', 'user', 'newpass', false);
- $expectedResponse = ['status' => 'error', 'msg' => '', 'encryption' => true];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testSetPasswordDontProceedMasterKey() {
- $encryptionModule = $this->createMock(IEncryptionModule::class);
- $encryptionModule->expects($this->once())->method('needDetailedAccessList')->willReturn(false);
- $this->encryptionManager->expects($this->once())->method('getEncryptionModules')
- ->willReturn([0 => ['callback' => function () use ($encryptionModule) {
- return $encryptionModule;
- }]]);
- $this->config->method('getUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword', null)
- ->willReturn('encryptedData');
- $this->existingUser->method('getLastLogin')
- ->willReturn(12344);
- $this->existingUser->expects($this->once())
- ->method('setPassword')
- ->with('NewPassword')
- ->willReturn(true);
- $this->userManager->method('get')
- ->with('ValidTokenUser')
- ->willReturn($this->existingUser);
- $this->config->expects($this->once())
- ->method('deleteUserValue')
- ->with('ValidTokenUser', 'core', 'lostpassword');
- $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', false);
- $expectedResponse = ['user' => 'ValidTokenUser', 'status' => 'success'];
- $this->assertSame($expectedResponse, $response->getData());
- }
- public function testTwoUsersWithSameEmail() {
- $user1 = $this->createMock(IUser::class);
- $user1->expects($this->any())
- ->method('getEMailAddress')
- ->willReturn('test@example.com');
- $user1->expects($this->any())
- ->method('getUID')
- ->willReturn('User1');
- $user1->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
- $user2 = $this->createMock(IUser::class);
- $user2->expects($this->any())
- ->method('getEMailAddress')
- ->willReturn('test@example.com');
- $user2->expects($this->any())
- ->method('getUID')
- ->willReturn('User2');
- $user2->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
- $this->userManager
- ->method('get')
- ->willReturn(null);
- $this->userManager
- ->method('getByEmail')
- ->willReturn([$user1, $user2]);
- $this->logger->expects($this->exactly(0))
- ->method('error');
- $this->logger->expects($this->once())
- ->method('warning');
- // request password reset for test@example.com
- $response = $this->lostController->email('test@example.com');
- $expectedResponse = new JSONResponse([
- 'status' => 'success'
- ]);
- $expectedResponse->throttle();
- $this->assertEquals($expectedResponse, $response);
- }
- /**
- * @return array
- */
- public function dataTwoUserswithSameEmailOneDisabled(): array {
- return [
- ['user1' => true, 'user2' => false],
- ['user1' => false, 'user2' => true]
- ];
- }
- /**
- * @dataProvider dataTwoUserswithSameEmailOneDisabled
- * @param bool $userEnabled1
- * @param bool $userEnabled2
- */
- public function testTwoUsersWithSameEmailOneDisabled(bool $userEnabled1, bool $userEnabled2): void {
- $user1 = $this->createMock(IUser::class);
- $user1->method('getEMailAddress')
- ->willReturn('test@example.com');
- $user1->method('getUID')
- ->willReturn('User1');
- $user1->method('isEnabled')
- ->willReturn($userEnabled1);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getEMailAddress')
- ->willReturn('test@example.com');
- $user2->method('getUID')
- ->willReturn('User2');
- $user2->method('isEnabled')
- ->willReturn($userEnabled2);
- $this->userManager
- ->method('get')
- ->willReturn(null);
- $this->userManager
- ->method('getByEmail')
- ->willReturn([$user1, $user2]);
- $result = self::invokePrivate($this->lostController, 'findUserByIdOrMail', ['test@example.com']);
- $this->assertInstanceOf(IUser::class, $result);
- }
- }
|