-
-
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
97 additions
and
10 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
use OCP\ICacheFactory; | ||
use OCP\IConfig; | ||
use OCP\IUser; | ||
use OCP\IUserManager; | ||
use Psr\Log\LoggerInterface; | ||
use Test\TestCase; | ||
|
||
|
@@ -579,7 +580,7 @@ public function testCountUsersTwoBackends() { | |
} | ||
|
||
public function testCountUsersOnlyDisabled() { | ||
$manager = \OC::$server->getUserManager(); | ||
$manager = \OCP\Server::get(IUserManager::class); | ||
// count other users in the db before adding our own | ||
$countBefore = $manager->countDisabledUsers(); | ||
|
||
|
@@ -604,7 +605,7 @@ public function testCountUsersOnlyDisabled() { | |
} | ||
|
||
public function testCountUsersOnlySeen() { | ||
$manager = \OC::$server->getUserManager(); | ||
$manager = \OCP\Server::get(IUserManager::class); | ||
// count other users in the db before adding our own | ||
$countBefore = $manager->countSeenUsers(); | ||
|
||
|
@@ -630,7 +631,7 @@ public function testCountUsersOnlySeen() { | |
} | ||
|
||
public function testCallForSeenUsers() { | ||
$manager = \OC::$server->getUserManager(); | ||
$manager = \OCP\Server::get(IUserManager::class); | ||
// count other users in the db before adding our own | ||
$count = 0; | ||
$function = function (IUser $user) use (&$count) { | ||
|
@@ -663,6 +664,66 @@ public function testCallForSeenUsers() { | |
$user4->delete(); | ||
} | ||
|
||
/** | ||
* @runInSeparateProcess | ||
* @preserveGlobalState disabled | ||
*/ | ||
public function testRecentlyActive(): void { | ||
$config = \OCP\Server::get(IConfig::class); | ||
$manager = \OCP\Server::get(IUserManager::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(['test_active_3', 'test_active_1', 'TEST_ACTIVE_2_FRED', 'test_active_4'], $users); | ||
// - Search, case-insensitive order | ||
$users = $manager->getLastLoggedInUsers(search: 'act'); | ||
$this->assertEquals(['test_active_3', 'test_active_1', 'TEST_ACTIVE_2_FRED', 'test_active_4'], $users); | ||
// - No search with offset | ||
$users = $manager->getLastLoggedInUsers(2, 2); | ||
$this->assertEquals(['TEST_ACTIVE_2_FRED', 'test_active_4'], $users); | ||
// - Case insensitive search (email) | ||
$users = $manager->getLastLoggedInUsers(search: 'active.com'); | ||
$this->assertEquals(['test_active_1', 'TEST_ACTIVE_2_FRED'], $users); | ||
// - Case insensitive search (display name) | ||
$users = $manager->getLastLoggedInUsers(search: 'upper'); | ||
$this->assertEquals(['TEST_ACTIVE_2_FRED'], $users); | ||
// - Case insensitive search (uid) | ||
$users = $manager->getLastLoggedInUsers(search: 'fred'); | ||
$this->assertEquals(['TEST_ACTIVE_2_FRED'], $users); | ||
|
||
// Delete users and config keys | ||
$user1->delete(); | ||
$user2->delete(); | ||
$user3->delete(); | ||
$user4->delete(); | ||
$user5->delete(); | ||
} | ||
|
||
public function testDeleteUser() { | ||
$config = $this->getMockBuilder(AllConfig::class) | ||
->disableOriginalConstructor() | ||
|