open-nomad/ui/mirage/factories/deployment-task-group-summa...

39 lines
962 B
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
import { Factory, faker } from 'ember-cli-mirage';
2018-06-07 00:34:50 +00:00
const REF_TIME = new Date();
2017-09-19 14:47:10 +00:00
export default Factory.extend({
name: '',
autoRevert: () => Math.random() > 0.5,
promoted: () => Math.random() > 0.5,
2018-06-07 00:34:50 +00:00
requireProgressBy: () => faker.date.past(0.5 / 365, REF_TIME),
2017-09-19 14:47:10 +00:00
desiredTotal: faker.random.number({ min: 1, max: 10 }),
desiredCanaries() {
return faker.random.number(Math.floor(this.desiredTotal / 2));
},
// PlacedCanaries is an array of allocation IDs. Since the IDs aren't currently
// used for associating allocations, any random value will do for now.
2017-09-19 14:47:10 +00:00
placedCanaries() {
return Array(faker.random.number(this.desiredCanaries))
.fill(null)
.map(() => faker.random.uuid());
2017-09-19 14:47:10 +00:00
},
placedAllocs() {
return faker.random.number(this.desiredTotal);
},
healthyAllocs() {
return faker.random.number(this.placedAllocs);
},
unhealthyAllocs() {
return this.placedAllocs - this.healthyAllocs;
},
});