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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.7 KiB
JavaScript
Raw Normal View History

/* eslint-disable qunit/require-expect */
2019-03-13 00:08:16 +00:00
import { currentURL } from '@ember/test-helpers';
2019-03-13 00:04:16 +00:00
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
2019-09-26 18:47:07 +00:00
import { setupMirage } from 'ember-cli-mirage/test-support';
import a11yAudit from 'nomad-ui/tests/helpers/a11y-audit';
import Evaluations from 'nomad-ui/tests/pages/jobs/job/evaluations';
let job;
let evaluations;
2021-12-28 14:45:20 +00:00
module('Acceptance | job evaluations', function (hooks) {
2019-03-13 00:04:16 +00:00
setupApplicationTest(hooks);
2019-03-13 01:09:19 +00:00
setupMirage(hooks);
2019-03-13 00:04:16 +00:00
2021-12-28 14:45:20 +00:00
hooks.beforeEach(async function () {
2021-12-28 16:08:12 +00:00
job = server.create('job', {
noFailedPlacements: true,
createAllocations: false,
});
evaluations = server.db.evaluations.where({ jobId: job.id });
await Evaluations.visit({ id: job.id });
2019-03-13 00:04:16 +00:00
});
2021-12-28 14:45:20 +00:00
test('it passes an accessibility audit', async function (assert) {
await a11yAudit(assert);
});
2021-12-28 14:45:20 +00:00
test('lists all evaluations for the job', async function (assert) {
2021-12-28 16:08:12 +00:00
assert.equal(
Evaluations.evaluations.length,
evaluations.length,
'All evaluations are listed'
);
2019-03-13 00:04:16 +00:00
const sortedEvaluations = evaluations.sortBy('modifyIndex').reverse();
2019-03-13 00:04:16 +00:00
Evaluations.evaluations.forEach((evaluation, index) => {
const shortId = sortedEvaluations[index].id.split('-')[0];
assert.equal(evaluation.id, shortId, `Evaluation ${index} is ${shortId}`);
});
assert.equal(document.title, `Job ${job.name} evaluations - Nomad`);
});
2021-12-28 14:45:20 +00:00
test('evaluations table is sortable', async function (assert) {
await Evaluations.sortBy('priority');
assert.equal(
currentURL(),
`/jobs/${job.id}/evaluations?sort=priority`,
'the URL persists the sort parameter'
);
const sortedEvaluations = evaluations.sortBy('priority').reverse();
Evaluations.evaluations.forEach((evaluation, index) => {
const shortId = sortedEvaluations[index].id.split('-')[0];
assert.equal(
evaluation.id,
shortId,
`Evaluation ${index} is ${shortId} with priority ${sortedEvaluations[index].priority}`
);
});
});
2021-12-28 14:45:20 +00:00
test('when the job for the evaluations is not found, an error message is shown, but the URL persists', async function (assert) {
await Evaluations.visit({ id: 'not-a-real-job' });
assert.equal(
server.pretender.handledRequests
2021-12-28 14:45:20 +00:00
.filter((request) => !request.url.includes('policy'))
.findBy('status', 404).url,
'/v1/job/not-a-real-job',
'A request to the nonexistent job is made'
);
2021-12-28 16:08:12 +00:00
assert.equal(
currentURL(),
'/jobs/not-a-real-job/evaluations',
'The URL persists'
);
assert.ok(Evaluations.error.isPresent, 'Error message is shown');
2021-12-28 16:08:12 +00:00
assert.equal(
Evaluations.error.title,
'Not Found',
'Error message is for 404'
);
});
});