open-nomad/ui/mirage/factories/job.js

202 lines
5.5 KiB
JavaScript
Raw Normal View History

2018-02-16 02:55:59 +00:00
import { assign } from '@ember/polyfills';
import { Factory, faker, trait } from 'ember-cli-mirage';
2017-10-10 16:36:36 +00:00
import { provide, provider, pickOne } from '../utils';
2017-09-19 14:47:10 +00:00
import { DATACENTERS } from '../common';
const JOB_PREFIXES = provide(5, faker.hacker.abbreviation);
const JOB_TYPES = ['service', 'batch', 'system'];
const JOB_STATUSES = ['pending', 'running', 'dead'];
export default Factory.extend({
id: i =>
`${faker.list.random(...JOB_PREFIXES)()}-${faker.hacker.noun().dasherize()}-${i}`.toLowerCase(),
name() {
return this.id;
},
2017-09-19 14:47:10 +00:00
groupsCount: () => faker.random.number({ min: 1, max: 5 }),
region: () => 'global',
type: faker.list.random(...JOB_TYPES),
2017-11-29 23:36:34 +00:00
priority: () => faker.random.number(100),
2017-09-19 14:47:10 +00:00
all_at_once: faker.random.boolean,
status: faker.list.random(...JOB_STATUSES),
datacenters: provider(
() => faker.random.number({ min: 1, max: 4 }),
faker.list.random(...DATACENTERS)
),
childrenCount: () => faker.random.number({ min: 1, max: 5 }),
periodic: trait({
type: 'batch',
periodic: true,
// periodic details object
// serializer update for bool vs details object
periodicDetails: () => ({
Enabled: true,
ProhibitOverlap: true,
Spec: '*/5 * * * * *',
SpecType: 'cron',
TimeZone: 'UTC',
}),
}),
parameterized: trait({
type: 'batch',
parameterized: true,
// parameterized details object
// serializer update for bool vs details object
parameterizedDetails: () => ({
MetaOptional: null,
MetaRequired: null,
Payload: Math.random() > 0.5 ? 'required' : null,
}),
}),
periodicChild: trait({
// Periodic children need a parent job,
// It is the Periodic job's responsibility to create
// periodicChild jobs and provide a parent job.
type: 'batch',
}),
parameterizedChild: trait({
// Parameterized children need a parent job,
// It is the Parameterized job's responsibility to create
// parameterizedChild jobs and provide a parent job.
type: 'batch',
parameterized: true,
dispatched: true,
payload: window.btoa(faker.lorem.sentence()),
}),
2017-09-19 14:47:10 +00:00
createIndex: i => i,
modifyIndex: () => faker.random.number({ min: 10, max: 2000 }),
// Directive used to control sub-resources
// When false, no allocations are made
createAllocations: true,
// When true, deployments for the job will never have a 'running' status
noActiveDeployment: false,
// When true, deployments for the job will always have a 'running' status
activeDeployment: false,
// When true, the job will have no versions or deployments (and in turn no latest deployment)
noDeployments: false,
2017-11-29 23:36:34 +00:00
// When true, an evaluation with a high modify index and placement failures is created
failedPlacements: false,
2017-11-30 00:29:32 +00:00
// When true, no evaluations have failed placements
noFailedPlacements: false,
2018-05-04 20:08:30 +00:00
// When true, allocations for this job will fail and reschedule, randomly succeeding or not
withRescheduling: false,
2017-09-19 14:47:10 +00:00
afterCreate(job, server) {
if (!job.namespaceId) {
const namespace = server.db.namespaces.length ? pickOne(server.db.namespaces).id : null;
job.update({
namespace,
namespaceId: namespace,
});
} else {
job.update({
namespace: job.namespaceId,
});
}
2018-02-16 02:55:59 +00:00
const groups = server.createList('task-group', job.groupsCount, {
job,
createAllocations: job.createAllocations,
2018-05-04 20:08:30 +00:00
withRescheduling: job.withRescheduling,
2018-02-16 02:55:59 +00:00
});
job.update({
taskGroupIds: groups.mapBy('id'),
task_group_ids: groups.mapBy('id'),
});
const hasChildren = job.periodic || (job.parameterized && !job.parentId);
const jobSummary = server.create('job-summary', hasChildren ? 'withChildren' : 'withSummary', {
2017-09-19 14:47:10 +00:00
groupNames: groups.mapBy('name'),
job,
2018-03-06 22:15:42 +00:00
job_id: job.id,
2018-03-13 21:41:54 +00:00
JobID: job.id,
2018-02-16 02:55:59 +00:00
namespace: job.namespace,
2017-09-19 14:47:10 +00:00
});
job.update({
jobSummaryId: jobSummary.id,
job_summary_id: jobSummary.id,
});
if (!job.noDeployments) {
Array(faker.random.number({ min: 1, max: 10 }))
.fill(null)
.map((_, index) => {
return server.create('job-version', {
job,
namespace: job.namespace,
version: index,
noActiveDeployment: job.noActiveDeployment,
activeDeployment: job.activeDeployment,
});
2017-09-19 14:47:10 +00:00
});
}
2017-11-29 23:36:34 +00:00
2018-02-16 02:55:59 +00:00
const knownEvaluationProperties = {
job,
namespace: job.namespace,
};
server.createList(
'evaluation',
faker.random.number({ min: 1, max: 5 }),
knownEvaluationProperties
);
2017-11-30 00:29:32 +00:00
if (!job.noFailedPlacements) {
2018-02-16 02:55:59 +00:00
server.createList(
'evaluation',
faker.random.number(3),
'withPlacementFailures',
knownEvaluationProperties
);
2017-11-30 00:29:32 +00:00
}
2017-11-29 23:36:34 +00:00
if (job.failedPlacements) {
2018-02-16 02:55:59 +00:00
server.create(
'evaluation',
'withPlacementFailures',
assign(knownEvaluationProperties, {
modifyIndex: 4000,
})
);
2017-11-29 23:36:34 +00:00
}
if (job.periodic) {
// Create periodicChild jobs
server.createList('job', job.childrenCount, 'periodicChild', {
parentId: job.id,
namespaceId: job.namespaceId,
namespace: job.namespace,
2018-01-31 22:01:13 +00:00
createAllocations: job.createAllocations,
});
}
if (job.parameterized && !job.parentId) {
// Create parameterizedChild jobs
server.createList('job', job.childrenCount, 'parameterizedChild', {
parentId: job.id,
namespaceId: job.namespaceId,
namespace: job.namespace,
2018-01-31 22:01:13 +00:00
createAllocations: job.createAllocations,
});
}
2017-09-19 14:47:10 +00:00
},
});