2017-09-19 14:47:10 +00:00
|
|
|
import Ember from 'ember';
|
|
|
|
import { Factory, faker, trait } from 'ember-cli-mirage';
|
|
|
|
import { provide, pickOne } from '../utils';
|
|
|
|
|
|
|
|
const UUIDS = provide(100, faker.random.uuid.bind(faker.random));
|
|
|
|
const CLIENT_STATUSES = ['pending', 'running', 'complete', 'failed', 'lost'];
|
|
|
|
const DESIRED_STATUSES = ['run', 'stop', 'evict'];
|
2017-11-30 23:08:31 +00:00
|
|
|
const REF_TIME = new Date();
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
export default Factory.extend({
|
|
|
|
id: i => (i >= 100 ? `${UUIDS[i % 100]}-${i}` : UUIDS[i]),
|
|
|
|
|
2017-10-18 00:51:00 +00:00
|
|
|
modifyIndex: () => faker.random.number({ min: 10, max: 2000 }),
|
2017-10-18 19:29:33 +00:00
|
|
|
jobVersion: () => faker.random.number(10),
|
2017-10-18 00:51:00 +00:00
|
|
|
|
2017-11-30 23:08:31 +00:00
|
|
|
modifyTime: () => faker.date.past(2 / 365, REF_TIME) * 1000000,
|
|
|
|
|
2018-02-16 02:55:59 +00:00
|
|
|
namespace: null,
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
clientStatus: faker.list.random(...CLIENT_STATUSES),
|
|
|
|
desiredStatus: faker.list.random(...DESIRED_STATUSES),
|
|
|
|
|
|
|
|
withTaskWithPorts: trait({
|
|
|
|
afterCreate(allocation, server) {
|
|
|
|
const taskGroup = server.db.taskGroups.findBy({ name: allocation.taskGroup });
|
|
|
|
const resources = taskGroup.taskIds.map(id =>
|
|
|
|
server.create(
|
|
|
|
'task-resources',
|
|
|
|
{
|
|
|
|
allocation,
|
|
|
|
name: server.db.tasks.find(id).name,
|
|
|
|
},
|
|
|
|
'withReservedPorts'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
allocation.update({ taskResourcesIds: resources.mapBy('id') });
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
|
2017-10-31 04:02:40 +00:00
|
|
|
withoutTaskWithPorts: trait({
|
|
|
|
afterCreate(allocation, server) {
|
|
|
|
const taskGroup = server.db.taskGroups.findBy({ name: allocation.taskGroup });
|
|
|
|
const resources = taskGroup.taskIds.map(id =>
|
|
|
|
server.create(
|
|
|
|
'task-resources',
|
|
|
|
{
|
|
|
|
allocation,
|
|
|
|
name: server.db.tasks.find(id).name,
|
|
|
|
},
|
|
|
|
'withoutReservedPorts'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
allocation.update({ taskResourcesIds: resources.mapBy('id') });
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
afterCreate(allocation, server) {
|
|
|
|
Ember.assert(
|
|
|
|
'[Mirage] No jobs! make sure jobs are created before allocations',
|
|
|
|
server.db.jobs.length
|
|
|
|
);
|
|
|
|
Ember.assert(
|
|
|
|
'[Mirage] No nodes! make sure nodes are created before allocations',
|
|
|
|
server.db.nodes.length
|
|
|
|
);
|
|
|
|
|
|
|
|
const job = allocation.jobId ? server.db.jobs.find(allocation.jobId) : pickOne(server.db.jobs);
|
|
|
|
const node = allocation.nodeId
|
|
|
|
? server.db.nodes.find(allocation.nodeId)
|
|
|
|
: pickOne(server.db.nodes);
|
|
|
|
const taskGroup = allocation.taskGroup
|
|
|
|
? server.db.taskGroups.findBy({ name: allocation.taskGroup })
|
|
|
|
: pickOne(server.db.taskGroups.where({ jobId: job.id }));
|
|
|
|
|
|
|
|
const states = taskGroup.taskIds.map(id =>
|
|
|
|
server.create('task-state', {
|
|
|
|
allocation,
|
|
|
|
name: server.db.tasks.find(id).name,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
const resources = taskGroup.taskIds.map(id =>
|
|
|
|
server.create('task-resources', {
|
|
|
|
allocation,
|
|
|
|
name: server.db.tasks.find(id).name,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
allocation.update({
|
|
|
|
jobId: job.id,
|
|
|
|
nodeId: node.id,
|
|
|
|
taskStateIds: states.mapBy('id'),
|
|
|
|
task_state_ids: states.mapBy('id'),
|
|
|
|
taskResourcesIds: resources.mapBy('id'),
|
|
|
|
taskGroup: taskGroup.name,
|
|
|
|
name: allocation.name || `${taskGroup.name}.[${faker.random.number(10)}]`,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Each allocation has a corresponding allocation stats running on some client.
|
|
|
|
// Create that record, even though it's not a relationship.
|
|
|
|
server.create('client-allocation-stats', {
|
|
|
|
id: allocation.id,
|
|
|
|
_tasks: states.mapBy('name'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|