2019-05-21 00:19:24 +00:00
|
|
|
import { run } from '@ember/runloop';
|
2019-03-13 00:08:16 +00:00
|
|
|
import { currentURL } from '@ember/test-helpers';
|
2018-05-13 03:01:51 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
2019-09-26 16:50:01 +00:00
|
|
|
import { module, test } from 'qunit';
|
2019-03-13 00:04:16 +00:00
|
|
|
import { setupApplicationTest } from 'ember-qunit';
|
2019-09-26 18:47:07 +00:00
|
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
2020-07-28 17:59:14 +00:00
|
|
|
import a11yAudit from 'nomad-ui/tests/helpers/a11y-audit';
|
2018-07-11 18:27:23 +00:00
|
|
|
import Allocation from 'nomad-ui/tests/pages/allocations/detail';
|
2017-09-19 14:47:10 +00:00
|
|
|
import moment from 'moment';
|
2021-05-13 17:29:51 +00:00
|
|
|
import formatHost from 'nomad-ui/utils/format-host';
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
let job;
|
|
|
|
let node;
|
|
|
|
let allocation;
|
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
module('Acceptance | allocation detail', function(hooks) {
|
|
|
|
setupApplicationTest(hooks);
|
2019-03-13 01:09:19 +00:00
|
|
|
setupMirage(hooks);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
hooks.beforeEach(async function() {
|
2017-09-19 14:47:10 +00:00
|
|
|
server.create('agent');
|
|
|
|
|
|
|
|
node = server.create('node');
|
2019-09-04 14:39:56 +00:00
|
|
|
job = server.create('job', {
|
|
|
|
groupsCount: 1,
|
|
|
|
withGroupServices: true,
|
|
|
|
createAllocations: false,
|
|
|
|
});
|
2020-10-12 22:26:54 +00:00
|
|
|
allocation = server.create('allocation', 'withTaskWithPorts', {
|
2019-09-04 14:39:56 +00:00
|
|
|
clientStatus: 'running',
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2018-05-13 03:01:51 +00:00
|
|
|
// Make sure the node has an unhealthy driver
|
|
|
|
node.update({
|
|
|
|
driver: assign(node.drivers, {
|
|
|
|
docker: {
|
|
|
|
detected: true,
|
|
|
|
healthy: false,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
// Make sure a task for the allocation depends on the unhealthy driver
|
|
|
|
server.schema.tasks.first().update({
|
|
|
|
driver: 'docker',
|
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-07-28 17:59:14 +00:00
|
|
|
test('it passes an accessibility audit', async function(assert) {
|
2020-08-25 15:56:02 +00:00
|
|
|
await a11yAudit(assert);
|
2020-07-28 17:59:14 +00:00
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('/allocation/:id should name the allocation and link to the corresponding job and node', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.ok(Allocation.title.includes(allocation.name), 'Allocation name is in the heading');
|
|
|
|
assert.equal(Allocation.details.job, job.name, 'Job name is in the subheading');
|
|
|
|
assert.equal(
|
|
|
|
Allocation.details.client,
|
|
|
|
node.id.split('-')[0],
|
|
|
|
'Node short id is in the subheading'
|
|
|
|
);
|
2020-05-11 16:29:30 +00:00
|
|
|
assert.ok(Allocation.execButton.isPresent);
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2019-07-17 20:02:58 +00:00
|
|
|
assert.equal(document.title, `Allocation ${allocation.name} - Nomad`);
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.details.visitJob();
|
2017-09-19 14:47:10 +00:00
|
|
|
assert.equal(currentURL(), `/jobs/${job.id}`, 'Job link navigates to the job');
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
2017-09-26 07:47:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.details.visitClient();
|
2017-10-28 01:23:41 +00:00
|
|
|
assert.equal(currentURL(), `/clients/${node.id}`, 'Client link navigates to the client');
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
2018-09-19 23:33:51 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('/allocation/:id should include resource utilization graphs', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.equal(Allocation.resourceCharts.length, 2, 'Two resource utilization graphs');
|
|
|
|
assert.equal(Allocation.resourceCharts.objectAt(0).name, 'CPU', 'First chart is CPU');
|
|
|
|
assert.equal(Allocation.resourceCharts.objectAt(1).name, 'Memory', 'Second chart is Memory');
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2020-04-30 13:15:19 +00:00
|
|
|
test('/allocation/:id should present task lifecycles', async function(assert) {
|
|
|
|
const job = server.create('job', {
|
|
|
|
groupsCount: 1,
|
2020-08-25 17:17:18 +00:00
|
|
|
groupTaskCount: 6,
|
2020-04-30 13:15:19 +00:00
|
|
|
withGroupServices: true,
|
|
|
|
createAllocations: false,
|
|
|
|
});
|
|
|
|
|
2020-10-12 22:26:54 +00:00
|
|
|
const allocation = server.create('allocation', 'withTaskWithPorts', {
|
2020-04-30 13:15:19 +00:00
|
|
|
clientStatus: 'running',
|
|
|
|
jobId: job.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
|
|
|
|
assert.ok(Allocation.lifecycleChart.isPresent);
|
|
|
|
assert.equal(Allocation.lifecycleChart.title, 'Task Lifecycle Status');
|
2020-09-01 16:49:36 +00:00
|
|
|
assert.equal(Allocation.lifecycleChart.phases.length, 4);
|
2020-08-25 17:17:18 +00:00
|
|
|
assert.equal(Allocation.lifecycleChart.tasks.length, 6);
|
2020-04-30 13:15:19 +00:00
|
|
|
|
|
|
|
await Allocation.lifecycleChart.tasks[0].visit();
|
2020-08-25 17:17:18 +00:00
|
|
|
|
|
|
|
const prestartEphemeralTask = server.db.taskStates
|
|
|
|
.where({ allocationId: allocation.id })
|
2020-09-01 17:02:10 +00:00
|
|
|
.sortBy('name')
|
2020-08-25 17:17:18 +00:00
|
|
|
.find(taskState => {
|
|
|
|
const task = server.db.tasks.findBy({ name: taskState.name });
|
|
|
|
return task.Lifecycle && task.Lifecycle.Hook === 'prestart' && !task.Lifecycle.Sidecar;
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(currentURL(), `/allocations/${allocation.id}/${prestartEphemeralTask.name}`);
|
2020-04-30 13:15:19 +00:00
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('/allocation/:id should list all tasks for the allocation', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.equal(
|
|
|
|
Allocation.tasks.length,
|
|
|
|
server.db.taskStates.where({ allocationId: allocation.id }).length,
|
|
|
|
'Table lists all tasks'
|
|
|
|
);
|
|
|
|
assert.notOk(Allocation.isEmpty, 'Task table empty state is not shown');
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('each task row should list high-level information for the task', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const task = server.db.taskStates.where({ allocationId: allocation.id }).sortBy('name')[0];
|
|
|
|
const events = server.db.taskEvents.where({ taskStateId: task.id });
|
|
|
|
const event = events[events.length - 1];
|
|
|
|
|
2020-02-14 01:10:01 +00:00
|
|
|
const taskGroup = server.schema.taskGroups.where({
|
|
|
|
jobId: allocation.jobId,
|
|
|
|
name: allocation.taskGroup,
|
|
|
|
}).models[0];
|
|
|
|
|
|
|
|
const jobTask = taskGroup.tasks.models.find(m => m.name === task.name);
|
|
|
|
const volumes = jobTask.volumeMounts.map(volume => ({
|
|
|
|
name: volume.Volume,
|
|
|
|
source: taskGroup.volumes[volume.Volume].Source,
|
|
|
|
}));
|
|
|
|
|
2020-02-14 01:04:12 +00:00
|
|
|
Allocation.tasks[0].as(taskRow => {
|
|
|
|
assert.equal(taskRow.name, task.name, 'Name');
|
|
|
|
assert.equal(taskRow.state, task.state, 'State');
|
|
|
|
assert.equal(taskRow.message, event.displayMessage, 'Event Message');
|
|
|
|
assert.equal(
|
|
|
|
taskRow.time,
|
|
|
|
moment(event.time / 1000000).format("MMM DD, 'YY HH:mm:ss ZZ"),
|
|
|
|
'Event Time'
|
|
|
|
);
|
|
|
|
|
2020-02-14 01:10:01 +00:00
|
|
|
const volumesText = taskRow.volumes;
|
|
|
|
volumes.forEach(volume => {
|
|
|
|
assert.ok(volumesText.includes(volume.name), `Found label ${volume.name}`);
|
|
|
|
assert.ok(volumesText.includes(volume.source), `Found value ${volume.source}`);
|
|
|
|
});
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2017-10-31 04:02:40 +00:00
|
|
|
});
|
2017-09-29 00:05:41 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('each task row should link to the task detail page', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const task = server.db.taskStates.where({ allocationId: allocation.id }).sortBy('name')[0];
|
2018-06-06 21:25:48 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.tasks.objectAt(0).clickLink();
|
2018-06-06 21:25:48 +00:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/allocations/${allocation.id}/${task.name}`,
|
|
|
|
'Task name in task row links to task detail'
|
|
|
|
);
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
await Allocation.tasks.objectAt(0).clickRow();
|
2018-06-06 21:25:48 +00:00
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/allocations/${allocation.id}/${task.name}`,
|
|
|
|
'Task row links to task detail'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('tasks with an unhealthy driver have a warning icon', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.ok(Allocation.firstUnhealthyTask().hasUnhealthyDriver, 'Warning is shown');
|
|
|
|
});
|
2018-05-13 03:01:51 +00:00
|
|
|
|
2019-09-26 16:50:01 +00:00
|
|
|
test('proxy task has a proxy tag', async function(assert) {
|
2019-09-05 19:09:32 +00:00
|
|
|
// Must create a new job as existing one has loaded and it contains the tasks
|
|
|
|
job = server.create('job', {
|
|
|
|
groupsCount: 1,
|
|
|
|
withGroupServices: true,
|
|
|
|
createAllocations: false,
|
|
|
|
});
|
|
|
|
|
2020-10-12 22:26:54 +00:00
|
|
|
allocation = server.create('allocation', 'withTaskWithPorts', {
|
2019-09-04 14:39:56 +00:00
|
|
|
clientStatus: 'running',
|
2019-09-05 19:09:32 +00:00
|
|
|
jobId: job.id,
|
2019-09-04 14:39:56 +00:00
|
|
|
});
|
|
|
|
|
2020-08-28 00:58:24 +00:00
|
|
|
const taskState = allocation.taskStates.models.sortBy('name')[0];
|
2019-09-05 19:09:32 +00:00
|
|
|
const task = server.schema.tasks.findBy({ name: taskState.name });
|
|
|
|
task.update('kind', 'connect-proxy:task');
|
|
|
|
task.save();
|
2019-09-04 14:39:56 +00:00
|
|
|
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
|
|
|
|
assert.ok(Allocation.tasks[0].hasProxyTag);
|
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('when there are no tasks, an empty state is shown', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
// Make sure the allocation is pending in order to ensure there are no tasks
|
|
|
|
allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'pending' });
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
2018-11-10 01:13:08 +00:00
|
|
|
|
|
|
|
assert.ok(Allocation.isEmpty, 'Task table empty state is shown');
|
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('when the allocation has not been rescheduled, the reschedule events section is not rendered', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.notOk(Allocation.hasRescheduleEvents, 'Reschedule Events section exists');
|
|
|
|
});
|
2018-05-04 21:31:04 +00:00
|
|
|
|
2019-09-04 14:39:56 +00:00
|
|
|
test('ports are listed', async function(assert) {
|
2020-10-12 22:26:54 +00:00
|
|
|
const allServerPorts = allocation.taskResources.models[0].resources.Ports;
|
2019-09-04 14:39:56 +00:00
|
|
|
|
|
|
|
allServerPorts.sortBy('Label').forEach((serverPort, index) => {
|
|
|
|
const renderedPort = Allocation.ports[index];
|
|
|
|
|
|
|
|
assert.equal(renderedPort.name, serverPort.Label);
|
|
|
|
assert.equal(renderedPort.to, serverPort.To);
|
2021-05-13 17:29:51 +00:00
|
|
|
assert.equal(renderedPort.address, formatHost(serverPort.HostIP, serverPort.Value));
|
2019-09-04 14:39:56 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('services are listed', async function(assert) {
|
|
|
|
const taskGroup = server.schema.taskGroups.findBy({ name: allocation.taskGroup });
|
|
|
|
|
|
|
|
assert.equal(Allocation.services.length, taskGroup.services.length);
|
|
|
|
|
|
|
|
taskGroup.services.models.sortBy('name').forEach((serverService, index) => {
|
|
|
|
const renderedService = Allocation.services[index];
|
|
|
|
|
|
|
|
assert.equal(renderedService.name, serverService.name);
|
|
|
|
assert.equal(renderedService.port, serverService.portLabel);
|
2021-03-11 17:28:38 +00:00
|
|
|
assert.equal(renderedService.onUpdate, serverService.onUpdate);
|
2019-09-04 14:39:56 +00:00
|
|
|
assert.equal(renderedService.tags, (serverService.tags || []).join(', '));
|
|
|
|
|
|
|
|
assert.equal(renderedService.connect, serverService.Connect ? 'Yes' : 'No');
|
|
|
|
|
|
|
|
const upstreams = serverService.Connect.SidecarService.Proxy.Upstreams;
|
|
|
|
const serverUpstreamsString = upstreams
|
|
|
|
.map(upstream => `${upstream.DestinationName}:${upstream.LocalBindPort}`)
|
|
|
|
.join(' ');
|
|
|
|
|
|
|
|
assert.equal(renderedService.upstreams, serverUpstreamsString);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('when the allocation is not found, an error message is shown, but the URL persists', async function(assert) {
|
|
|
|
await Allocation.visit({ id: 'not-a-real-allocation' });
|
2017-09-29 00:05:41 +00:00
|
|
|
|
|
|
|
assert.equal(
|
2020-01-20 20:57:01 +00:00
|
|
|
server.pretender.handledRequests
|
|
|
|
.filter(request => !request.url.includes('policy'))
|
|
|
|
.findBy('status', 404).url,
|
2017-09-29 00:05:41 +00:00
|
|
|
'/v1/allocation/not-a-real-allocation',
|
2018-03-12 18:26:37 +00:00
|
|
|
'A request to the nonexistent allocation is made'
|
2017-09-29 00:05:41 +00:00
|
|
|
);
|
|
|
|
assert.equal(currentURL(), '/allocations/not-a-real-allocation', 'The URL persists');
|
2018-07-11 18:27:23 +00:00
|
|
|
assert.ok(Allocation.error.isShown, 'Error message is shown');
|
|
|
|
assert.equal(Allocation.error.title, 'Not Found', 'Error message is for 404');
|
2017-09-29 00:05:41 +00:00
|
|
|
});
|
2019-05-21 00:19:24 +00:00
|
|
|
|
|
|
|
test('allocation can be stopped', async function(assert) {
|
|
|
|
await Allocation.stop.idle();
|
|
|
|
await Allocation.stop.confirm();
|
|
|
|
|
|
|
|
assert.equal(
|
ui: Change global search to use fuzzy search API (#10412)
This updates the UI to use the new fuzzy search API. It’s a drop-in
replacement so the / shortcut to jump to search is preserved, and
results can be cycled through and chosen via arrow keys and the
enter key.
It doesn’t use everything returned by the API:
* deployments and evaluations: these match by id, doesn’t seem like
people would know those or benefit from quick navigation to them
* namespaces: doesn’t seem useful as they currently function
* scaling policies
* tasks: the response doesn’t include an allocation id, which means they
can’t be navigated to in the UI without an additional query
* CSI volumes: aren’t actually returned by the API
Since there’s no API to check the server configuration and know whether
the feature has been disabled, this adds another query in
route:application#beforeModel that acts as feature detection: if the
attempt to query fails (500), the global search field is hidden.
Upon having added another query on load, I realised that beforeModel was
being triggered any time service:router#transitionTo was being called,
which happens upon navigating to a search result, for instance, because
of refreshModel being present on the region query parameter. This PR
adds a check for transition.queryParamsOnly and skips rerunning the
onload queries (token permissions check, license check, fuzzy search
feature detection).
Implementation notes:
* there are changes to unrelated tests to ignore the on-load feature
detection query
* some lifecycle-related guards against undefined were required to
address failures when navigating to an allocation
* the minimum search length of 2 characters is hard-coded as there’s
currently no way to determine min_term_length in the UI
2021-04-28 18:31:05 +00:00
|
|
|
server.pretender.handledRequests.reject(request => request.url.includes('fuzzy')).findBy('method', 'POST').url,
|
2019-05-21 00:19:24 +00:00
|
|
|
`/v1/allocation/${allocation.id}/stop`,
|
|
|
|
'Stop request is made for the allocation'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('allocation can be restarted', async function(assert) {
|
|
|
|
await Allocation.restart.idle();
|
|
|
|
await Allocation.restart.confirm();
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
server.pretender.handledRequests.findBy('method', 'PUT').url,
|
|
|
|
`/v1/client/allocation/${allocation.id}/restart`,
|
|
|
|
'Restart request is made for the allocation'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('while an allocation is being restarted, the stop button is disabled', async function(assert) {
|
|
|
|
server.pretender.post('/v1/allocation/:id/stop', () => [204, {}, ''], true);
|
|
|
|
|
|
|
|
await Allocation.stop.idle();
|
|
|
|
|
|
|
|
run.later(() => {
|
|
|
|
assert.ok(Allocation.stop.isRunning, 'Stop is loading');
|
|
|
|
assert.ok(Allocation.restart.isDisabled, 'Restart is disabled');
|
|
|
|
server.pretender.resolve(server.pretender.requestReferences[0].request);
|
|
|
|
}, 500);
|
|
|
|
|
|
|
|
await Allocation.stop.confirm();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('if stopping or restarting fails, an error message is shown', async function(assert) {
|
|
|
|
server.pretender.post('/v1/allocation/:id/stop', () => [403, {}, '']);
|
|
|
|
|
|
|
|
await Allocation.stop.idle();
|
|
|
|
await Allocation.stop.confirm();
|
|
|
|
|
|
|
|
assert.ok(Allocation.inlineError.isShown, 'Inline error is shown');
|
|
|
|
assert.ok(
|
|
|
|
Allocation.inlineError.title.includes('Could Not Stop Allocation'),
|
|
|
|
'Title is descriptive'
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
/ACL token.+?allocation lifecycle/.test(Allocation.inlineError.message),
|
|
|
|
'Message mentions ACLs and the appropriate permission'
|
|
|
|
);
|
|
|
|
|
|
|
|
await Allocation.inlineError.dismiss();
|
|
|
|
|
|
|
|
assert.notOk(Allocation.inlineError.isShown, 'Inline error is no longer shown');
|
|
|
|
});
|
2017-09-29 00:05:41 +00:00
|
|
|
});
|
2018-04-10 01:40:53 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
module('Acceptance | allocation detail (rescheduled)', function(hooks) {
|
|
|
|
setupApplicationTest(hooks);
|
2019-03-14 06:44:53 +00:00
|
|
|
setupMirage(hooks);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
hooks.beforeEach(async function() {
|
2018-05-04 21:31:04 +00:00
|
|
|
server.create('agent');
|
|
|
|
|
|
|
|
node = server.create('node');
|
|
|
|
job = server.create('job', { createAllocations: false });
|
|
|
|
allocation = server.create('allocation', 'rescheduled');
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2018-05-04 21:31:04 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('when the allocation has been rescheduled, the reschedule events section is rendered', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.ok(Allocation.hasRescheduleEvents, 'Reschedule Events section exists');
|
|
|
|
});
|
2018-05-04 21:31:04 +00:00
|
|
|
});
|
2018-12-11 01:28:35 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
module('Acceptance | allocation detail (not running)', function(hooks) {
|
|
|
|
setupApplicationTest(hooks);
|
2019-03-14 06:44:53 +00:00
|
|
|
setupMirage(hooks);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
hooks.beforeEach(async function() {
|
2018-12-11 01:28:35 +00:00
|
|
|
server.create('agent');
|
|
|
|
|
|
|
|
node = server.create('node');
|
|
|
|
job = server.create('job', { createAllocations: false });
|
|
|
|
allocation = server.create('allocation', { clientStatus: 'pending' });
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
await Allocation.visit({ id: allocation.id });
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2018-12-11 01:28:35 +00:00
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('when the allocation is not running, the utilization graphs are replaced by an empty message', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.equal(Allocation.resourceCharts.length, 0, 'No resource charts');
|
|
|
|
assert.equal(
|
|
|
|
Allocation.resourceEmptyMessage,
|
|
|
|
"Allocation isn't running",
|
|
|
|
'Empty message is appropriate'
|
|
|
|
);
|
|
|
|
});
|
2020-05-11 16:29:30 +00:00
|
|
|
|
|
|
|
test('the exec and stop/restart buttons are absent', async function(assert) {
|
|
|
|
assert.notOk(Allocation.execButton.isPresent);
|
|
|
|
assert.notOk(Allocation.stop.isPresent);
|
|
|
|
assert.notOk(Allocation.restart.isPresent);
|
|
|
|
});
|
2018-12-11 01:28:35 +00:00
|
|
|
});
|
2019-04-22 23:10:21 +00:00
|
|
|
|
|
|
|
module('Acceptance | allocation detail (preemptions)', function(hooks) {
|
|
|
|
setupApplicationTest(hooks);
|
|
|
|
setupMirage(hooks);
|
|
|
|
|
|
|
|
hooks.beforeEach(async function() {
|
|
|
|
server.create('agent');
|
|
|
|
node = server.create('node');
|
|
|
|
job = server.create('job', { createAllocations: false });
|
|
|
|
});
|
|
|
|
|
|
|
|
test('shows a dedicated section to the allocation that preempted this allocation', async function(assert) {
|
|
|
|
allocation = server.create('allocation', 'preempted');
|
|
|
|
const preempter = server.schema.find('allocation', allocation.preemptedByAllocation);
|
|
|
|
const preempterJob = server.schema.find('job', preempter.jobId);
|
|
|
|
const preempterClient = server.schema.find('node', preempter.nodeId);
|
|
|
|
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
assert.ok(Allocation.wasPreempted, 'Preempted allocation section is shown');
|
|
|
|
assert.equal(Allocation.preempter.status, preempter.clientStatus, 'Preempter status matches');
|
|
|
|
assert.equal(Allocation.preempter.name, preempter.name, 'Preempter name matches');
|
|
|
|
assert.equal(
|
|
|
|
Allocation.preempter.priority,
|
|
|
|
preempterJob.priority,
|
|
|
|
'Preempter priority matches'
|
|
|
|
);
|
|
|
|
|
|
|
|
await Allocation.preempter.visit();
|
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/allocations/${preempter.id}`,
|
|
|
|
'Clicking the preempter id navigates to the preempter allocation detail page'
|
|
|
|
);
|
|
|
|
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
await Allocation.preempter.visitJob();
|
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/jobs/${preempterJob.id}`,
|
|
|
|
'Clicking the preempter job link navigates to the preempter job page'
|
|
|
|
);
|
|
|
|
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
await Allocation.preempter.visitClient();
|
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/clients/${preempterClient.id}`,
|
|
|
|
'Clicking the preempter client link navigates to the preempter client page'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('shows a dedicated section to the allocations this allocation preempted', async function(assert) {
|
|
|
|
allocation = server.create('allocation', 'preempter');
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
assert.ok(Allocation.preempted, 'The allocations this allocation preempted are shown');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('each preempted allocation in the table lists basic allocation information', async function(assert) {
|
|
|
|
allocation = server.create('allocation', 'preempter');
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
|
|
|
|
const preemption = allocation.preemptedAllocations
|
|
|
|
.map(id => server.schema.find('allocation', id))
|
|
|
|
.sortBy('modifyIndex')
|
|
|
|
.reverse()[0];
|
|
|
|
const preemptionRow = Allocation.preemptions.objectAt(0);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
Allocation.preemptions.length,
|
|
|
|
allocation.preemptedAllocations.length,
|
|
|
|
'The preemptions table has a row for each preempted allocation'
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.equal(preemptionRow.shortId, preemption.id.split('-')[0], 'Preemption short id');
|
|
|
|
assert.equal(
|
|
|
|
preemptionRow.createTime,
|
|
|
|
moment(preemption.createTime / 1000000).format('MMM DD HH:mm:ss ZZ'),
|
|
|
|
'Preemption create time'
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
preemptionRow.modifyTime,
|
|
|
|
moment(preemption.modifyTime / 1000000).fromNow(),
|
|
|
|
'Preemption modify time'
|
|
|
|
);
|
|
|
|
assert.equal(preemptionRow.status, preemption.clientStatus, 'Client status');
|
|
|
|
assert.equal(preemptionRow.jobVersion, preemption.jobVersion, 'Job Version');
|
|
|
|
assert.equal(
|
|
|
|
preemptionRow.client,
|
|
|
|
server.db.nodes.find(preemption.nodeId).id.split('-')[0],
|
|
|
|
'Node ID'
|
|
|
|
);
|
|
|
|
|
|
|
|
await preemptionRow.visitClient();
|
|
|
|
assert.equal(currentURL(), `/clients/${preemption.nodeId}`, 'Node links to node page');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('when an allocation both preempted allocations and was preempted itself, both preemptions sections are shown', async function(assert) {
|
|
|
|
allocation = server.create('allocation', 'preempter', 'preempted');
|
|
|
|
await Allocation.visit({ id: allocation.id });
|
|
|
|
assert.ok(Allocation.preempted, 'The allocations this allocation preempted are shown');
|
|
|
|
assert.ok(Allocation.wasPreempted, 'Preempted allocation section is shown');
|
|
|
|
});
|
|
|
|
});
|