open-nomad/ui/tests/acceptance/client-detail-test.js

303 lines
8.3 KiB
JavaScript
Raw Normal View History

import Ember from 'ember';
import { click, find, findAll, currentURL, visit } from 'ember-native-dom-helpers';
2017-09-19 14:47:10 +00:00
import { test } from 'qunit';
import moduleForAcceptance from 'nomad-ui/tests/helpers/module-for-acceptance';
2017-10-17 01:47:25 +00:00
import { formatBytes } from 'nomad-ui/helpers/format-bytes';
2017-09-19 14:47:10 +00:00
const { $ } = Ember;
2017-09-19 14:47:10 +00:00
let node;
moduleForAcceptance('Acceptance | client detail', {
beforeEach() {
server.create('node', 'forceIPv4');
node = server.db.nodes[0];
// Related models
server.create('agent');
server.create('job', { createAllocations: false });
server.createList('allocation', 3, { nodeId: node.id });
},
});
test('/nodes/:id should have a breadrcumb trail linking back to nodes', function(assert) {
visit(`/nodes/${node.id}`);
andThen(() => {
assert.equal(findAll('.breadcrumb')[0].textContent, 'Nodes', 'First breadcrumb says nodes');
assert.equal(
findAll('.breadcrumb')[1].textContent,
node.id.split('-')[0],
'Second breadcrumb says the node short id'
);
});
andThen(() => {
click(findAll('.breadcrumb')[0]);
});
2017-09-19 14:47:10 +00:00
andThen(() => {
assert.equal(currentURL(), '/nodes', 'First breadcrumb links back to nodes');
});
});
test('/nodes/:id should list immediate details for the node in the title', function(assert) {
visit(`/nodes/${node.id}`);
andThen(() => {
assert.ok(find('.title').textContent.includes(node.name), 'Title includes name');
assert.ok(find('.title').textContent.includes(node.id), 'Title includes id');
assert.ok(
findAll(`.title .node-status-light.${node.status}`).length,
'Title includes status light'
);
});
2017-09-19 14:47:10 +00:00
});
test('/nodes/:id should list additional detail for the node below the title', function(assert) {
visit(`/nodes/${node.id}`);
andThen(() => {
assert.equal(
findAll('.inline-definitions .pair')[0].textContent,
`Status ${node.status}`,
'Status is in additional details'
);
assert.ok(
$('.inline-definitions .pair:eq(0) .status-text').hasClass(`node-${node.status}`),
'Status is decorated with a status class'
);
assert.equal(
findAll('.inline-definitions .pair')[1].textContent,
`Address ${node.httpAddr}`,
'Address is in additional detals'
);
assert.equal(
findAll('.inline-definitions .pair')[2].textContent,
`Datacenter ${node.datacenter}`,
'Datacenter is in additional details'
);
});
2017-09-19 14:47:10 +00:00
});
test('/nodes/:id should list all allocations on the node', function(assert) {
const allocationsCount = server.db.allocations.where({ nodeId: node.id }).length;
visit(`/nodes/${node.id}`);
andThen(() => {
assert.equal(
findAll('.allocations tbody tr').length,
allocationsCount,
`Allocations table lists all ${allocationsCount} associated allocations`
);
});
2017-09-19 14:47:10 +00:00
});
test('each allocation should have high-level details for the allocation', function(assert) {
const allocation = server.db.allocations
.where({ nodeId: node.id })
.sortBy('modifyIndex')
.reverse()[0];
const allocStats = server.db.clientAllocationStats.find(allocation.id);
const taskGroup = server.db.taskGroups.findBy({
name: allocation.taskGroup,
jobId: allocation.jobId,
});
const tasks = taskGroup.taskIds.map(id => server.db.tasks.find(id));
2017-10-17 01:47:25 +00:00
const cpuUsed = tasks.reduce((sum, task) => sum + task.Resources.CPU, 0);
const memoryUsed = tasks.reduce((sum, task) => sum + task.Resources.MemoryMB, 0);
2017-09-19 14:47:10 +00:00
visit(`/nodes/${node.id}`);
andThen(() => {
const allocationRow = $(findAll('.allocations tbody tr')[0]);
assert.equal(
allocationRow
.find('td:eq(0)')
.text()
.trim(),
allocation.id.split('-')[0],
'Allocation short ID'
);
assert.equal(
allocationRow
.find('td:eq(1)')
.text()
.trim(),
allocation.modifyIndex,
'Allocation modify index'
);
assert.equal(
allocationRow
.find('td:eq(2)')
.text()
.trim(),
allocation.name,
'Allocation name'
);
assert.equal(
allocationRow
.find('td:eq(3)')
.text()
.trim(),
allocation.clientStatus,
'Client status'
);
assert.ok(
allocationRow
.find('td:eq(4)')
.text()
.includes(server.db.jobs.find(allocation.jobId).name),
'Job name'
);
assert.ok(
allocationRow
.find('td:eq(4) .is-faded')
.text()
.includes(allocation.taskGroup),
'Task group name'
);
assert.equal(
allocationRow
.find('td:eq(5)')
.text()
.trim(),
allocStats.resourceUsage.CpuStats.Percent,
'CPU %'
);
2017-10-17 01:47:25 +00:00
assert.equal(
allocationRow.find('td:eq(5) .tooltip').attr('aria-label'),
2017-10-17 01:47:25 +00:00
`${Math.floor(allocStats.resourceUsage.CpuStats.TotalTicks)} / ${cpuUsed} MHz`,
'Detailed CPU information is in a tooltip'
);
assert.equal(
allocationRow
.find('td:eq(6)')
.text()
.trim(),
2017-10-17 01:47:25 +00:00
allocStats.resourceUsage.MemoryStats.RSS / 1024 / 1024 / memoryUsed,
'Memory used'
);
2017-10-17 01:47:25 +00:00
assert.equal(
allocationRow.find('td:eq(6) .tooltip').attr('aria-label'),
2017-10-17 01:47:25 +00:00
`${formatBytes([allocStats.resourceUsage.MemoryStats.RSS])} / ${memoryUsed} MiB`,
'Detailed memory information is in a tooltip'
);
});
});
test('each allocation should show job information even if the job is incomplete and already in the store', function(
assert
) {
// First, visit nodes to load the allocations for each visible node.
// Don't load the job belongsTo of the allocation! Leave it unfulfilled.
visit('/nodes');
// Then, visit jobs to load all jobs, which should implicitly fulfill
// the job belongsTo of each allocation pointed at each job.
visit('/jobs');
// Finally, visit a node to assert that the job name and task group name are
// present. This will require reloading the job, since task groups aren't a
// part of the jobs list response.
visit(`/nodes/${node.id}`);
andThen(() => {
const allocationRow = $(findAll('.allocations tbody tr')[0]);
const allocation = server.db.allocations
.where({ nodeId: node.id })
.sortBy('modifyIndex')
.reverse()[0];
assert.ok(
allocationRow
.find('td:eq(4)')
.text()
.includes(server.db.jobs.find(allocation.jobId).name),
'Job name'
);
assert.ok(
allocationRow
.find('td:eq(4) .is-faded')
.text()
.includes(allocation.taskGroup),
'Task group name'
);
});
2017-09-19 14:47:10 +00:00
});
test('each allocation should link to the allocation detail page', function(assert) {
const allocation = server.db.allocations
.where({ nodeId: node.id })
.sortBy('modifyIndex')
.reverse()[0];
visit(`/nodes/${node.id}`);
andThen(() => {
click($('.allocations tbody tr:eq(0) td:eq(0) a').get(0));
});
2017-09-19 14:47:10 +00:00
andThen(() => {
assert.equal(
currentURL(),
`/allocations/${allocation.id}`,
'Allocation rows link to allocation detail pages'
);
});
});
test('each allocation should link to the job the allocation belongs to', function(assert) {
visit(`/nodes/${node.id}`);
2017-09-19 14:47:10 +00:00
const allocation = server.db.allocations.where({ nodeId: node.id })[0];
const job = server.db.jobs.find(allocation.jobId);
andThen(() => {
click($('.allocations tbody tr:eq(0) td:eq(4) a').get(0));
});
2017-09-19 14:47:10 +00:00
andThen(() => {
assert.equal(
currentURL(),
`/jobs/${job.id}`,
'Allocation rows link to the job detail page for the allocation'
);
});
});
test('/nodes/:id should list all attributes for the node', function(assert) {
visit(`/nodes/${node.id}`);
andThen(() => {
assert.ok(find('.attributes-table'), 'Attributes table is on the page');
});
2017-09-19 14:47:10 +00:00
});
2017-09-29 00:05:41 +00:00
test('when the node is not found, an error message is shown, but the URL persists', function(
assert
) {
visit('/nodes/not-a-real-node');
andThen(() => {
assert.equal(
server.pretender.handledRequests.findBy('status', 404).url,
'/v1/node/not-a-real-node',
'A request to the non-existent node is made'
);
assert.equal(currentURL(), '/nodes/not-a-real-node', 'The URL persists');
assert.ok(find('.error-message'), 'Error message is shown');
assert.equal(
find('.error-message .title').textContent,
'Not Found',
'Error message is for 404'
);
});
});