-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(users): improve recently active search
- Remove DISTINCT clause to fix PgSQL - Join user table only if necessary - Don't show people who never connected in active list - Add test Signed-off-by: Benjamin Gaussorgues <[email protected]>
- Loading branch information
Showing
2 changed files
with
78 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -663,6 +663,62 @@ public function testCallForSeenUsers(): void { | |
$user4->delete(); | ||
} | ||
|
||
public function testRecentlyActive(): void { | ||
$manager = \OC::$server->getUserManager(); | ||
$config = \OC::$server->get(IConfig::class); | ||
|
||
// Create some users | ||
$now = (string)time(); | ||
$user1 = $manager->createUser('test_active_1', 'test_active_1'); | ||
$config->setUserValue('test_active_1', 'login', 'lastLogin', $now); | ||
$user1->setDisplayName('test active 1'); | ||
$user1->setSystemEMailAddress('[email protected]'); | ||
|
||
$user2 = $manager->createUser('TEST_ACTIVE_2_FRED', 'TEST_ACTIVE_2'); | ||
$config->setUserValue('TEST_ACTIVE_2_FRED', 'login', 'lastLogin', $now); | ||
$user2->setDisplayName('TEST ACTIVE 2 UPPER'); | ||
$user2->setSystemEMailAddress('[email protected]'); | ||
|
||
$user3 = $manager->createUser('test_active_3', 'test_active_3'); | ||
$config->setUserValue('test_active_3', 'login', 'lastLogin', $now + 1); | ||
$user3->setDisplayName('test active 3'); | ||
|
||
$user4 = $manager->createUser('test_active_4', 'test_active_4'); | ||
$config->setUserValue('test_active_4', 'login', 'lastLogin', $now); | ||
$user4->setDisplayName('Test Active 4'); | ||
|
||
$user5 = $manager->createUser('test_inactive_1', 'test_inactive_1'); | ||
$user5->setDisplayName('Test Inactive 1'); | ||
$user2->setSystemEMailAddress('[email protected]'); | ||
|
||
// Search recently active | ||
// - No search, case-insensitive order | ||
$users = $manager->getLastLoggedInUsers(4); | ||
$this->assertEquals($users, ['test_active_3', 'test_active_1', 'TEST_ACTIVE_2_FRED', 'test_active_4']); | ||
// - Search, case-insensitive order | ||
$users = $manager->getLastLoggedInUsers(search: 'act'); | ||
$this->assertEquals($users, ['test_active_3', 'test_active_1', 'TEST_ACTIVE_2_FRED', 'test_active_4']); | ||
// - No search with offset | ||
$users = $manager->getLastLoggedInUsers(2, 2); | ||
$this->assertEquals($users, ['TEST_ACTIVE_2_FRED', 'test_active_4']); | ||
// - Case insensitive search (email) | ||
$users = $manager->getLastLoggedInUsers(search: 'active.com'); | ||
$this->assertEquals($users, ['test_active_1', 'TEST_ACTIVE_2_FRED']); | ||
// - Case insensitive search (display name) | ||
$users = $manager->getLastLoggedInUsers(search: 'upper'); | ||
$this->assertEquals($users, ['TEST_ACTIVE_2_FRED']); | ||
// - Case insensitive search (uid) | ||
$users = $manager->getLastLoggedInUsers(search: 'fred'); | ||
$this->assertEquals($users, ['TEST_ACTIVE_2_FRED']); | ||
|
||
// Delete users and config keys | ||
$user1->delete(); | ||
$user2->delete(); | ||
$user3->delete(); | ||
$user4->delete(); | ||
$user5->delete(); | ||
} | ||
|
||
public function testDeleteUser(): void { | ||
$config = $this->getMockBuilder(AllConfig::class) | ||
->disableOriginalConstructor() | ||
|