import { currentURL } from '@ember/test-helpers'; import { assign } from '@ember/polyfills'; import { module, test } from 'qunit'; import { setupApplicationTest } from 'ember-qunit'; import setupMirage from 'ember-cli-mirage/test-support/setup-mirage'; import Allocation from 'nomad-ui/tests/pages/allocations/detail'; import moment from 'moment'; let job; let node; let allocation; module('Acceptance | allocation detail', function(hooks) { setupApplicationTest(hooks); setupMirage(hooks); hooks.beforeEach(async function() { server.create('agent'); node = server.create('node'); job = server.create('job', { groupsCount: 1, createAllocations: false }); allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'running' }); // 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', }); await Allocation.visit({ id: allocation.id }); }); test('/allocation/:id should name the allocation and link to the corresponding job and node', async function(assert) { 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' ); await Allocation.details.visitJob(); assert.equal(currentURL(), `/jobs/${job.id}`, 'Job link navigates to the job'); await Allocation.visit({ id: allocation.id }); await Allocation.details.visitClient(); assert.equal(currentURL(), `/clients/${node.id}`, 'Client link navigates to the client'); }); test('/allocation/:id should include resource utilization graphs', async function(assert) { 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'); }); test('/allocation/:id should list all tasks for the allocation', async function(assert) { 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'); }); test('each task row should list high-level information for the task', async function(assert) { const task = server.db.taskStates.where({ allocationId: allocation.id }).sortBy('name')[0]; const taskResources = allocation.taskResourceIds .map(id => server.db.taskResources.find(id)) .sortBy('name')[0]; const reservedPorts = taskResources.resources.Networks[0].ReservedPorts; const dynamicPorts = taskResources.resources.Networks[0].DynamicPorts; const taskRow = Allocation.tasks.objectAt(0); const events = server.db.taskEvents.where({ taskStateId: task.id }); const event = events[events.length - 1]; 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' ); assert.ok(reservedPorts.length, 'The task has reserved ports'); assert.ok(dynamicPorts.length, 'The task has dynamic ports'); const addressesText = taskRow.ports; reservedPorts.forEach(port => { assert.ok(addressesText.includes(port.Label), `Found label ${port.Label}`); assert.ok(addressesText.includes(port.Value), `Found value ${port.Value}`); }); dynamicPorts.forEach(port => { assert.ok(addressesText.includes(port.Label), `Found label ${port.Label}`); assert.ok(addressesText.includes(port.Value), `Found value ${port.Value}`); }); }); test('each task row should link to the task detail page', async function(assert) { const task = server.db.taskStates.where({ allocationId: allocation.id }).sortBy('name')[0]; await Allocation.tasks.objectAt(0).clickLink(); assert.equal( currentURL(), `/allocations/${allocation.id}/${task.name}`, 'Task name in task row links to task detail' ); await Allocation.visit({ id: allocation.id }); await Allocation.tasks.objectAt(0).clickRow(); assert.equal( currentURL(), `/allocations/${allocation.id}/${task.name}`, 'Task row links to task detail' ); }); test('tasks with an unhealthy driver have a warning icon', async function(assert) { assert.ok(Allocation.firstUnhealthyTask().hasUnhealthyDriver, 'Warning is shown'); }); test('when there are no tasks, an empty state is shown', async function(assert) { // Make sure the allocation is pending in order to ensure there are no tasks allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'pending' }); await Allocation.visit({ id: allocation.id }); assert.ok(Allocation.isEmpty, 'Task table empty state is shown'); }); test('when the allocation has not been rescheduled, the reschedule events section is not rendered', async function(assert) { assert.notOk(Allocation.hasRescheduleEvents, 'Reschedule Events section exists'); }); 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' }); assert.equal( server.pretender.handledRequests.findBy('status', 404).url, '/v1/allocation/not-a-real-allocation', 'A request to the nonexistent allocation is made' ); assert.equal(currentURL(), '/allocations/not-a-real-allocation', 'The URL persists'); assert.ok(Allocation.error.isShown, 'Error message is shown'); assert.equal(Allocation.error.title, 'Not Found', 'Error message is for 404'); }); }); module('Acceptance | allocation detail (rescheduled)', function(hooks) { setupApplicationTest(hooks); setupMirage(hooks); hooks.beforeEach(async function() { server.create('agent'); node = server.create('node'); job = server.create('job', { createAllocations: false }); allocation = server.create('allocation', 'rescheduled'); await Allocation.visit({ id: allocation.id }); }); test('when the allocation has been rescheduled, the reschedule events section is rendered', async function(assert) { assert.ok(Allocation.hasRescheduleEvents, 'Reschedule Events section exists'); }); }); module('Acceptance | allocation detail (not running)', function(hooks) { setupApplicationTest(hooks); setupMirage(hooks); hooks.beforeEach(async function() { server.create('agent'); node = server.create('node'); job = server.create('job', { createAllocations: false }); allocation = server.create('allocation', { clientStatus: 'pending' }); await Allocation.visit({ id: allocation.id }); }); test('when the allocation is not running, the utilization graphs are replaced by an empty message', async function(assert) { assert.equal(Allocation.resourceCharts.length, 0, 'No resource charts'); assert.equal( Allocation.resourceEmptyMessage, "Allocation isn't running", 'Empty message is appropriate' ); }); }); 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'); }); });