From 84ee79fe4378bbb10501e940bdcb80462fccb3a5 Mon Sep 17 00:00:00 2001 From: Artur Neumann Date: Fri, 19 May 2023 12:27:20 +0545 Subject: [PATCH] fix: expect invalidateTokensOfUser only be called for seen users Signed-off-by: Artur Neumann --- apps/oauth2/tests/Controller/SettingsControllerTest.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/oauth2/tests/Controller/SettingsControllerTest.php b/apps/oauth2/tests/Controller/SettingsControllerTest.php index f73703f1929..181cfbfa5b7 100644 --- a/apps/oauth2/tests/Controller/SettingsControllerTest.php +++ b/apps/oauth2/tests/Controller/SettingsControllerTest.php @@ -123,10 +123,13 @@ class SettingsControllerTest extends TestCase { // count other users in the db before adding our own $count = 0; $function = function (IUser $user) use (&$count) { - $count++; + if ($user->getLastLogin() > 0) { + $count++; + } }; $userManager->callForAllUsers($function); $user1 = $userManager->createUser('test101', 'test101'); + $user1->updateLastLoginTimestamp(); $tokenProviderMock = $this->getMockBuilder(IAuthTokenProvider::class)->getMock(); // expect one call per user and ensure the correct client name