2020-02-12 19:49:28 +00:00
|
|
|
import { Factory, trait } from 'ember-cli-mirage';
|
2019-10-03 14:13:08 +00:00
|
|
|
import faker from 'nomad-ui/mirage/faker';
|
2020-02-12 19:49:28 +00:00
|
|
|
import { provide } from '../utils';
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
const DISK_RESERVATIONS = [200, 500, 1000, 2000, 5000, 10000, 100000];
|
|
|
|
|
|
|
|
export default Factory.extend({
|
2018-04-12 17:47:12 +00:00
|
|
|
name: id => `${faker.hacker.noun().dasherize()}-g-${id}`,
|
2019-04-12 03:08:09 +00:00
|
|
|
count: () => faker.random.number({ min: 1, max: 2 }),
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
ephemeralDisk: () => ({
|
|
|
|
Sticky: faker.random.boolean(),
|
2019-09-26 18:47:07 +00:00
|
|
|
SizeMB: faker.helpers.randomize(DISK_RESERVATIONS),
|
2017-09-19 14:47:10 +00:00
|
|
|
Migrate: faker.random.boolean(),
|
|
|
|
}),
|
|
|
|
|
2020-02-12 19:49:28 +00:00
|
|
|
noHostVolumes: trait({
|
2020-02-13 23:47:01 +00:00
|
|
|
volumes: () => ({}),
|
2020-02-12 19:49:28 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
volumes: makeHostVolumes(),
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
// Directive used to control whether or not allocations are automatically
|
|
|
|
// created.
|
|
|
|
createAllocations: true,
|
|
|
|
|
2018-05-04 20:08:30 +00:00
|
|
|
// Directived used to control whether or not the allocation should fail
|
|
|
|
// and reschedule, creating reschedule events.
|
|
|
|
withRescheduling: false,
|
|
|
|
|
2019-09-04 14:39:56 +00:00
|
|
|
// Directive used to control whether the task group should have services.
|
|
|
|
withServices: false,
|
|
|
|
|
2019-04-12 03:08:09 +00:00
|
|
|
// When true, only creates allocations
|
|
|
|
shallow: false,
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
afterCreate(group, server) {
|
2019-04-12 03:08:09 +00:00
|
|
|
let taskIds = [];
|
2020-02-12 19:49:28 +00:00
|
|
|
let volumes = Object.keys(group.volumes);
|
2019-04-12 03:08:09 +00:00
|
|
|
|
|
|
|
if (!group.shallow) {
|
2020-02-12 19:49:28 +00:00
|
|
|
const tasks = provide(group.count, () => {
|
2020-02-13 23:47:01 +00:00
|
|
|
const mounts = faker.helpers
|
|
|
|
.shuffle(volumes)
|
|
|
|
.slice(0, faker.random.number({ min: 1, max: 3 }));
|
2020-02-12 19:49:28 +00:00
|
|
|
return server.create('task', {
|
|
|
|
taskGroup: group,
|
|
|
|
volumeMounts: mounts.map(mount => ({
|
|
|
|
Volume: mount,
|
|
|
|
Destination: `/${faker.internet.userName()}/${faker.internet.domainWord()}/${faker.internet.color()}`,
|
|
|
|
PropagationMode: '',
|
|
|
|
ReadOnly: faker.random.boolean(),
|
|
|
|
})),
|
|
|
|
});
|
2019-04-12 03:08:09 +00:00
|
|
|
});
|
|
|
|
taskIds = tasks.mapBy('id');
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
group.update({
|
2019-04-12 03:08:09 +00:00
|
|
|
taskIds: taskIds,
|
|
|
|
task_ids: taskIds,
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (group.createAllocations) {
|
|
|
|
Array(group.count)
|
|
|
|
.fill(null)
|
|
|
|
.forEach((_, i) => {
|
2018-05-04 20:08:30 +00:00
|
|
|
const props = {
|
2017-09-19 14:47:10 +00:00
|
|
|
jobId: group.job.id,
|
2018-02-16 02:55:59 +00:00
|
|
|
namespace: group.job.namespace,
|
2017-09-19 14:47:10 +00:00
|
|
|
taskGroup: group.name,
|
|
|
|
name: `${group.name}.[${i}]`,
|
2018-05-04 20:08:30 +00:00
|
|
|
rescheduleSuccess: group.withRescheduling ? faker.random.boolean() : null,
|
|
|
|
rescheduleAttempts: group.withRescheduling
|
|
|
|
? faker.random.number({ min: 1, max: 5 })
|
|
|
|
: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (group.withRescheduling) {
|
|
|
|
server.create('allocation', 'rescheduled', props);
|
|
|
|
} else {
|
|
|
|
server.create('allocation', props);
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
}
|
2019-09-04 14:39:56 +00:00
|
|
|
|
|
|
|
if (group.withServices) {
|
|
|
|
Array(faker.random.number({ min: 1, max: 3 }))
|
|
|
|
.fill(null)
|
|
|
|
.forEach(() => {
|
|
|
|
server.create('service', {
|
|
|
|
task_group: group,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
},
|
|
|
|
});
|
2020-02-12 19:49:28 +00:00
|
|
|
|
|
|
|
function makeHostVolumes() {
|
|
|
|
const generate = () => ({
|
|
|
|
Name: faker.internet.domainWord(),
|
|
|
|
Type: 'host',
|
2020-02-13 23:47:01 +00:00
|
|
|
Source: faker.internet.domainWord(),
|
2020-02-12 19:49:28 +00:00
|
|
|
ReadOnly: faker.random.boolean(),
|
|
|
|
});
|
|
|
|
|
|
|
|
const volumes = provide(faker.random.number({ min: 1, max: 5 }), generate);
|
|
|
|
return volumes.reduce((hash, volume) => {
|
|
|
|
hash[volume.Name] = volume;
|
|
|
|
return hash;
|
|
|
|
}, {});
|
|
|
|
}
|