From 1d90cea869f07f73f27eab8eec1956f08c5533fe Mon Sep 17 00:00:00 2001 From: fflorent Date: Sat, 7 Sep 2024 11:59:12 +0200 Subject: [PATCH] Add tests for the new UsersManager methods --- app/gen-server/lib/homedb/UsersManager.ts | 9 ++-- test/gen-server/lib/homedb/UsersManager.ts | 63 ++++++++++++++++++++++ 2 files changed, 68 insertions(+), 4 deletions(-) diff --git a/app/gen-server/lib/homedb/UsersManager.ts b/app/gen-server/lib/homedb/UsersManager.ts index 6993d72e..f2800bf9 100644 --- a/app/gen-server/lib/homedb/UsersManager.ts +++ b/app/gen-server/lib/homedb/UsersManager.ts @@ -582,6 +582,11 @@ export class UsersManager { }); } + public async getUsers() { + return await User.find({relations: ["logins"]}); + } + + /** * ================================== * @@ -678,10 +683,6 @@ export class UsersManager { return [this.getSupportUserId(), this.getAnonymousUserId(), this.getEveryoneUserId()]; } - public async getUsers() { - return await User.find({relations: ["logins"]}); - } - /** * Returns a Promise for an array of User entites for the given userIds. */ diff --git a/test/gen-server/lib/homedb/UsersManager.ts b/test/gen-server/lib/homedb/UsersManager.ts index d2306ead..b0af8f26 100644 --- a/test/gen-server/lib/homedb/UsersManager.ts +++ b/test/gen-server/lib/homedb/UsersManager.ts @@ -20,6 +20,7 @@ import { assert } from 'chai'; import Sinon, { SinonSandbox, SinonSpy } from 'sinon'; import { EntityManager } from 'typeorm'; import winston from 'winston'; +import omit from 'lodash/omit'; import {delay} from 'app/common/delay'; @@ -948,6 +949,68 @@ describe('UsersManager', function () { } }); }); + + describe('overrideUser()', function () { + it('should reject when user is not found', async function () { + disableLoggingLevel('debug'); + + const promise = db.overrideUser(NON_EXISTING_USER_ID, { + email: 'whatever@getgrist.com', + name: 'whatever', + }); + + await assert.isRejected(promise, 'unable to find user to update'); + }); + + it('should update user information', async function () { + const localPart = 'overrideuser-updates-user-info'; + const newLocalPart = 'overrideuser-updates-user-info-new'; + const user = await createUniqueUser(localPart); + const newInfo: UserProfile = { + name: 'new name', + email: makeEmail(newLocalPart).toUpperCase(), + picture: 'https://mypic.com/me.png', + locale: 'fr-FR', + }; + + await db.overrideUser(user.id, newInfo); + + const updatedUser = await getOrCreateUser(newLocalPart); + assert.deepInclude(updatedUser, { + id: user.id, + name: newInfo.name, + picture: newInfo.picture, + options: {locale: newInfo.locale}, + }); + assert.deepInclude(updatedUser.logins[0], { + email: newInfo.email.toLowerCase(), + displayEmail: newInfo.email, + }); + }); + }); + + describe('getUsers()', function () { + it('should return all users with their logins', async function () { + const localPart = 'getUsers-user'; + const existingUser = await createUniqueUser(localPart); + const users = await db.getUsers(); + assert.isAbove(users.length, 2); + const mapUsersById = new Map(users.map(user => [user.id, user])); + + // Check that we retrieve the existing user in the result with all their property + // except the personalOrg + const existingUserInResult = mapUsersById.get(existingUser.id); + assertExists(existingUserInResult); + assertExists(existingUserInResult.logins); + assert.lengthOf(existingUserInResult.logins, 1); + assert.deepEqual(existingUserInResult, omit(existingUser, 'personalOrg')); + + // Check that we retrieve special accounts among the result + assert.exists(mapUsersById.get(db.getSupportUserId())); + assert.exists(mapUsersById.get(db.getEveryoneUserId())); + assert.exists(mapUsersById.get(db.getAnonymousUserId())); + }); + }); }); describe('class method without db setup', function () {