open-nomad/ui/tests/acceptance/job-deployments-test.js

260 lines
8.0 KiB
JavaScript
Raw Normal View History

import { get } from '@ember/object';
2017-09-19 14:47:10 +00:00
import { test } from 'qunit';
import moment from 'moment';
import moduleForAcceptance from 'nomad-ui/tests/helpers/module-for-acceptance';
2018-07-11 16:13:44 +00:00
import Deployments from 'nomad-ui/tests/pages/jobs/job/deployments';
2017-09-19 14:47:10 +00:00
const sum = (list, key, getter = a => a) =>
list.reduce((sum, item) => sum + getter(get(item, key)), 0);
2017-09-19 14:47:10 +00:00
let job;
let deployments;
let sortedDeployments;
moduleForAcceptance('Acceptance | job deployments', {
beforeEach() {
server.create('node');
job = server.create('job');
deployments = server.schema.deployments.where({ jobId: job.id });
sortedDeployments = deployments.sort((a, b) => {
const aVersion = server.db.jobVersions.findBy({ jobId: a.jobId, version: a.versionNumber });
const bVersion = server.db.jobVersions.findBy({ jobId: b.jobId, version: b.versionNumber });
if (aVersion.submitTime < bVersion.submitTime) {
return 1;
} else if (aVersion.submitTime > bVersion.submitTime) {
return -1;
}
return 0;
});
},
});
test('/jobs/:id/deployments should list all job deployments', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
assert.ok(
2018-07-11 16:13:44 +00:00
Deployments.deployments.length,
2017-09-19 14:47:10 +00:00
deployments.length,
'Each deployment gets a row in the timeline'
);
});
});
test('each deployment mentions the deployment shortId, status, version, and time since it was submitted', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
const deployment = sortedDeployments.models[0];
const version = server.db.jobVersions.findBy({
jobId: deployment.jobId,
version: deployment.versionNumber,
});
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
2017-09-19 14:47:10 +00:00
2018-07-11 16:13:44 +00:00
assert.ok(deploymentRow.text.includes(deployment.id.split('-')[0]), 'Short ID');
assert.equal(deploymentRow.status, deployment.status, 'Status');
2017-09-19 14:47:10 +00:00
assert.ok(
2018-07-11 16:13:44 +00:00
deploymentRow.statusClass.includes(classForStatus(deployment.status)),
2017-09-19 14:47:10 +00:00
'Status Class'
);
2018-07-11 16:13:44 +00:00
assert.ok(deploymentRow.version.includes(deployment.versionNumber), 'Version #');
2017-09-19 14:47:10 +00:00
assert.ok(
2018-07-11 16:13:44 +00:00
deploymentRow.submitTime.includes(moment(version.submitTime / 1000000).fromNow()),
2017-09-19 14:47:10 +00:00
'Submit time ago'
);
});
});
test('when the deployment is running and needs promotion, the deployment item says so', function(assert) {
2017-09-19 14:47:10 +00:00
// Ensure the deployment needs deployment
const deployment = sortedDeployments.models[0];
const taskGroupSummary = deployment.deploymentTaskGroupSummaryIds.map(id =>
server.schema.deploymentTaskGroupSummaries.find(id)
)[0];
deployment.update('status', 'running');
deployment.save();
taskGroupSummary.update({
desiredCanaries: 1,
placedCanaries: [],
2017-09-19 14:47:10 +00:00
promoted: false,
});
taskGroupSummary.save();
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
assert.ok(deploymentRow.promotionIsRequired, 'Requires Promotion badge found');
2017-09-19 14:47:10 +00:00
});
});
test('each deployment item can be opened to show details', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
2017-09-19 14:47:10 +00:00
2018-07-11 16:13:44 +00:00
assert.notOk(deploymentRow.hasDetails, 'No deployment body');
2017-09-19 14:47:10 +00:00
2018-07-11 16:13:44 +00:00
deploymentRow.toggle();
2017-09-19 14:47:10 +00:00
andThen(() => {
2018-07-11 16:13:44 +00:00
assert.ok(deploymentRow.hasDetails, 'Deployment body found');
2017-09-19 14:47:10 +00:00
});
});
});
test('when open, a deployment shows the deployment metrics', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
const deployment = sortedDeployments.models[0];
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
2017-09-19 14:47:10 +00:00
const taskGroupSummaries = deployment.deploymentTaskGroupSummaryIds.map(id =>
server.db.deploymentTaskGroupSummaries.find(id)
);
2018-07-11 16:13:44 +00:00
deploymentRow.toggle();
2017-09-19 14:47:10 +00:00
andThen(() => {
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.metricFor('canaries').text,
`${sum(taskGroupSummaries, 'placedCanaries', a => a.length)} / ${sum(
2017-09-19 14:47:10 +00:00
taskGroupSummaries,
'desiredCanaries'
)}`,
'Canaries, both places and desired, are in the metrics'
);
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.metricFor('placed').text,
2017-09-19 14:47:10 +00:00
sum(taskGroupSummaries, 'placedAllocs'),
'Placed allocs aggregates across task groups'
);
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.metricFor('desired').text,
2017-09-19 14:47:10 +00:00
sum(taskGroupSummaries, 'desiredTotal'),
'Desired allocs aggregates across task groups'
);
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.metricFor('healthy').text,
2017-09-19 14:47:10 +00:00
sum(taskGroupSummaries, 'healthyAllocs'),
'Healthy allocs aggregates across task groups'
);
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.metricFor('unhealthy').text,
2017-09-19 14:47:10 +00:00
sum(taskGroupSummaries, 'unhealthyAllocs'),
'Unhealthy allocs aggregates across task groups'
);
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.notification,
2017-09-19 14:47:10 +00:00
deployment.statusDescription,
'Status description is in the metrics block'
);
});
});
});
test('when open, a deployment shows a list of all task groups and their respective stats', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
const deployment = sortedDeployments.models[0];
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
2017-09-19 14:47:10 +00:00
const taskGroupSummaries = deployment.deploymentTaskGroupSummaryIds.map(id =>
server.db.deploymentTaskGroupSummaries.find(id)
);
2018-07-11 16:13:44 +00:00
deploymentRow.toggle();
2017-09-19 14:47:10 +00:00
andThen(() => {
2018-07-11 16:13:44 +00:00
assert.ok(deploymentRow.hasTaskGroups, 'Task groups found');
2017-09-19 14:47:10 +00:00
assert.equal(
2018-07-11 16:13:44 +00:00
deploymentRow.taskGroups.length,
2017-09-19 14:47:10 +00:00
taskGroupSummaries.length,
'One row per task group'
);
const taskGroup = taskGroupSummaries[0];
2018-07-11 16:13:44 +00:00
const taskGroupRow = deploymentRow.taskGroups.objectAt(0);
2017-09-19 14:47:10 +00:00
2018-07-11 16:13:44 +00:00
assert.equal(taskGroupRow.name, taskGroup.name, 'Name');
assert.equal(taskGroupRow.promotion, promotionTestForTaskGroup(taskGroup), 'Needs Promotion');
assert.equal(taskGroupRow.autoRevert, taskGroup.autoRevert ? 'Yes' : 'No', 'Auto Revert');
2017-09-19 14:47:10 +00:00
assert.equal(
2018-07-11 16:13:44 +00:00
taskGroupRow.canaries,
`${taskGroup.placedCanaries.length} / ${taskGroup.desiredCanaries}`,
2017-09-19 14:47:10 +00:00
'Canaries'
);
assert.equal(
2018-07-11 16:13:44 +00:00
taskGroupRow.allocs,
2017-09-19 14:47:10 +00:00
`${taskGroup.placedAllocs} / ${taskGroup.desiredTotal}`,
'Allocs'
);
2018-07-11 16:13:44 +00:00
assert.equal(taskGroupRow.healthy, taskGroup.healthyAllocs, 'Healthy Allocs');
assert.equal(taskGroupRow.unhealthy, taskGroup.unhealthyAllocs, 'Unhealthy Allocs');
assert.equal(
taskGroupRow.progress,
moment(taskGroup.requireProgressBy).format('MM/DD/YY HH:mm:ss'),
'Progress By'
);
2017-09-19 14:47:10 +00:00
});
});
});
test('when open, a deployment shows a list of all allocations for the deployment', function(assert) {
2018-07-11 16:13:44 +00:00
Deployments.visit({ id: job.id });
2017-09-19 14:47:10 +00:00
andThen(() => {
const deployment = sortedDeployments.models[0];
2018-07-11 16:13:44 +00:00
const deploymentRow = Deployments.deployments.objectAt(0);
2017-09-19 14:47:10 +00:00
// TODO: Make this less brittle. This logic is copied from the mirage config,
// since there is no reference to allocations on the deployment model.
const allocations = server.db.allocations.where({ jobId: deployment.jobId }).slice(0, 3);
2018-07-11 16:13:44 +00:00
deploymentRow.toggle();
2017-09-19 14:47:10 +00:00
andThen(() => {
2018-07-11 16:13:44 +00:00
assert.ok(deploymentRow.hasAllocations, 'Allocations found');
2017-09-19 14:47:10 +00:00
2018-07-11 16:13:44 +00:00
assert.equal(deploymentRow.allocations.length, allocations.length, 'One row per allocation');
2017-09-19 14:47:10 +00:00
const allocation = allocations[0];
2018-07-11 16:13:44 +00:00
const allocationRow = deploymentRow.allocations.objectAt(0);
2017-09-19 14:47:10 +00:00
assert.equal(allocationRow.shortId, allocation.id.split('-')[0], 'Allocation is as expected');
2017-09-19 14:47:10 +00:00
});
});
});
function classForStatus(status) {
const classMap = {
running: 'is-running',
successful: 'is-primary',
paused: 'is-light',
failed: 'is-error',
cancelled: 'is-cancelled',
};
return classMap[status] || 'is-dark';
}
function promotionTestForTaskGroup(taskGroup) {
if (taskGroup.desiredCanaries > 0 && taskGroup.promoted === false) {
return 'Yes';
} else if (taskGroup.desiredCanaries > 0) {
return 'No';
}
return 'N/A';
}