-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PB-33236 - Ensure performance creating users collection with large da…
…taset remains effective Signed-off-by: Cedric Alfonsi <cedric@passbolt.com>
- Loading branch information
1 parent
b7a5876
commit 8f598d6
Showing
4 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
35 changes: 35 additions & 0 deletions
35
src/shared/models/entity/user/usersCollection.test.data.js
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Passbolt ~ Open source password manager for teams | ||
* Copyright (c) Passbolt SA (https://www.passbolt.com) | ||
* | ||
* Licensed under GNU Affero General Public License version 3 of the or any later version. | ||
* For full copyright and license information, please see the LICENSE.txt | ||
* Redistributions of files must retain the above copyright notice. | ||
* | ||
* @copyright Copyright (c) Passbolt SA (https://www.passbolt.com) | ||
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License | ||
* @link https://www.passbolt.com Passbolt(tm) | ||
* @since 4.8.0 | ||
*/ | ||
|
||
import {defaultUserDto} from "./userEntity.test.data"; | ||
|
||
/** | ||
* Build groups dtos. | ||
* @param {number} [groupsCount=10] The number of groups. | ||
* @param {Object} [options] | ||
* @param {Object} [options.withRole=false] Add role default dto. | ||
* @param {Object} [options.withGpgkey=false] Add gpg key default dto. | ||
* @param {Object} [options.withAccountRecoveryUserSetting=false] Add account recover user settings default dto. | ||
* @param {Object} [options.withPendingAccountRecoveryUserRequest=false] Add pending account recover user request default dto. | ||
* @param {Object} [options.withGroupsUsers=0] Add groups users default dto. | ||
* @returns {object} | ||
*/ | ||
export const defaultUsersDtos = (groupsCount = 10, options = {}) => { | ||
const dtos = []; | ||
for (let i = 0; i < groupsCount; i++) { | ||
const dto = defaultUserDto({username: `user${i}@domain.test`}, options); | ||
dtos.push(dto); | ||
} | ||
return dtos; | ||
}; |