mirror of https://github.com/portainer/portainer
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import _ from 'lodash';
|
|
|
|
export function createMockUsers(count: number) {
|
|
return _.range(1, count + 1).map((value) => ({
|
|
Id: value,
|
|
Username: `user${value}`,
|
|
Role: _.random(1, 3),
|
|
UserTheme: '',
|
|
RoleName: '',
|
|
AuthenticationMethod: '',
|
|
Checked: false,
|
|
EndpointAuthorizations: {},
|
|
PortainerAuthorizations: {},
|
|
}));
|
|
}
|
|
|
|
export function createMockTeams(count: number) {
|
|
return _.range(1, count + 1).map((value) => ({
|
|
Id: value,
|
|
Name: `team${value}`,
|
|
}));
|
|
}
|
|
|
|
export function createMockSubscriptions(count: number) {
|
|
const subscriptions = _.range(1, count + 1).map((x) => ({
|
|
id: `/subscriptions/subscription-${x}`,
|
|
subscriptionId: `subscription-${x}`,
|
|
}));
|
|
|
|
return { value: subscriptions };
|
|
}
|
|
|
|
export function createMockResourceGroups(subscription: string, count: number) {
|
|
const resourceGroups = _.range(1, count + 1).map((x) => ({
|
|
id: `/subscriptions/${subscription}/resourceGroups/resourceGroup-${x}`,
|
|
name: `resourcegroup-${x}`,
|
|
}));
|
|
|
|
return { value: resourceGroups };
|
|
}
|