summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-07-09 11:58:14 +0200
committerDaniel Kesselberg <mail@danielkesselberg.de>2019-07-09 19:29:14 +0200
commitd57540ac8460c746baf65323fa8af6db07a58db7 (patch)
treec7478a0e5a485c1c254f00f1fa05a2df86fc121b
parenteb092bbdc74fd10253e7a75850d5725df27daa25 (diff)
downloadnextcloud-server-d57540ac8460c746baf65323fa8af6db07a58db7.tar.gz
nextcloud-server-d57540ac8460c746baf65323fa8af6db07a58db7.zip
Return first value from $users
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
-rw-r--r--core/Controller/LostController.php9
-rw-r--r--tests/Core/Controller/LostControllerTest.php51
2 files changed, 33 insertions, 27 deletions
diff --git a/core/Controller/LostController.php b/core/Controller/LostController.php
index 96018555ec3..5ac0557e5d6 100644
--- a/core/Controller/LostController.php
+++ b/core/Controller/LostController.php
@@ -50,6 +50,9 @@ use OCP\IUserManager;
use OCP\Mail\IMailer;
use OCP\Security\ICrypto;
use OCP\Security\ISecureRandom;
+use function array_filter;
+use function count;
+use function reset;
/**
* Class LostController
@@ -389,12 +392,12 @@ class LostController extends Controller {
return $user;
}
- $users = \array_filter($this->userManager->getByEmail($input), function (IUser $user) {
+ $users = array_filter($this->userManager->getByEmail($input), function (IUser $user) {
return $user->isEnabled();
});
- if (\count($users) === 1) {
- return $users[0];
+ if (count($users) === 1) {
+ return reset($users);
}
throw $userNotFound;
diff --git a/tests/Core/Controller/LostControllerTest.php b/tests/Core/Controller/LostControllerTest.php
index 8635616a9d5..8500819a9ca 100644
--- a/tests/Core/Controller/LostControllerTest.php
+++ b/tests/Core/Controller/LostControllerTest.php
@@ -821,28 +821,38 @@ class LostControllerTest extends \Test\TestCase {
$this->assertEquals($expectedResponse, $response);
}
- public function testTwoUsersWithSameEmailOneDisabled() {
+
+ /**
+ * @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->expects($this->any())
- ->method('getEMailAddress')
+ $user1->method('getEMailAddress')
->willReturn('test@example.com');
- $user1->expects($this->any())
- ->method('getUID')
+ $user1->method('getUID')
->willReturn('User1');
- $user1->expects($this->any())
- ->method('isEnabled')
- ->willReturn(true);
+ $user1->method('isEnabled')
+ ->willReturn($userEnabled1);
$user2 = $this->createMock(IUser::class);
- $user2->expects($this->any())
- ->method('getEMailAddress')
+ $user2->method('getEMailAddress')
->willReturn('test@example.com');
- $user2->expects($this->any())
- ->method('getUID')
+ $user2->method('getUID')
->willReturn('User2');
- $user2->expects($this->any())
- ->method('isEnabled')
- ->willReturn(false);
+ $user2->method('isEnabled')
+ ->willReturn($userEnabled2);
$this->userManager
->method('get')
@@ -852,14 +862,7 @@ class LostControllerTest extends \Test\TestCase {
->method('getByEmail')
->willReturn([$user1, $user2]);
- // 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);
+ $result = self::invokePrivate($this->lostController, 'findUserByIdOrMail', ['test@example.com']);
+ $this->assertInstanceOf(IUser::class, $result);
}
}