34 строки
947 B
TypeScript
34 строки
947 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {UserProfile} from '@mattermost/types/users';
|
|
import {getRandomId} from '@e2e-support/util';
|
|
import testConfig from '@e2e-test.config';
|
|
|
|
export function createRandomUser(prefix = 'user') {
|
|
const randomId = getRandomId();
|
|
|
|
const user = {
|
|
email: `${prefix}${randomId}@sample.mattermost.com`,
|
|
username: `${prefix}${randomId}`,
|
|
password: 'passwd',
|
|
first_name: `First${randomId}`,
|
|
last_name: `Last${randomId}`,
|
|
nickname: `Nickname${randomId}`,
|
|
};
|
|
|
|
return user as UserProfile;
|
|
}
|
|
|
|
export function getDefaultAdminUser() {
|
|
const admin = {
|
|
username: testConfig.adminUsername,
|
|
password: testConfig.adminPassword,
|
|
first_name: 'Kenneth',
|
|
last_name: 'Moreno',
|
|
email: testConfig.adminEmail,
|
|
};
|
|
|
|
return admin as UserProfile;
|
|
}
|